From 3cffe6d0008256acfc699caaf9ffa0811a248d85 Mon Sep 17 00:00:00 2001 From: Stephan Seitz Date: Mon, 19 Apr 2021 16:55:59 +0200 Subject: [PATCH] Restructure numbers and self_referentials --- grammar.js | 42 +- src/grammar.json | 884 +- src/node-types.json | 116 + src/parser.c | 166457 +++++++++++++++++++-------------------- test/corpus/basic.txt | 79 +- 5 files changed, 83324 insertions(+), 84254 deletions(-) diff --git a/grammar.js b/grammar.js index 4c4e0d803..49cd2c16a 100644 --- a/grammar.js +++ b/grammar.js @@ -58,21 +58,24 @@ const HEX_DIGIT = const OCTAL_DIGIT = /[0-7]/; +const BINARY_DIGIT = + /[0-1]/; + const HEX_NUMBER = - seq("0", - /[xX]/, - repeat1(HEX_DIGIT), - optional("N")); + seq(choice('#x', '#X'), optional(/[+-]/), + repeat1(HEX_DIGIT)); const OCTAL_NUMBER = - seq("0", - repeat1(OCTAL_DIGIT), - optional("N")); + seq(choice('#o', '#O'), optional(/[+-]/), + repeat1(OCTAL_DIGIT)); + +const BINARY_NUMBER = + seq(choice('#b', '#B'), optional(/[+-]/), + repeat1(BINARY_DIGIT)); -// XXX: not constraining number before r/R -// XXX: not constraining portion after r/R const RADIX_NUMBER = - seq(repeat1(DIGIT), + seq('#', + repeat1(DIGIT), /[rR]/, repeat1(ALPHANUMERIC)); @@ -96,13 +99,15 @@ const INTEGER = optional(/[MN]/)); const NUMBER = - token(prec(0, seq(optional(/[+-]/), - choice(HEX_NUMBER, - //OCTAL_NUMBER, + token(seq(optional(/[+-]/), + choice( + HEX_NUMBER, + OCTAL_NUMBER, RADIX_NUMBER, + BINARY_NUMBER, RATIO, DOUBLE, - INTEGER)))); + INTEGER))); function clSymbol(symbol) { @@ -273,8 +278,8 @@ module.exports = grammar(clojure, { seq('#', choice(original, /\\[nN]ewline/, /\\[lL]inefeed/, /\\[Ss]pace/, /\\[nN]ull/, /\\[rR]ull/)), vec_lit: $ => - prec(PREC.SPECIAL, - choice( + prec(PREC.SPECIAL, + choice( seq(field('open', choice('#0A', '#0a')), $.num_lit), seq(field('open', '#'), optional($.array_dimension), $.list_lit))), @@ -315,6 +320,8 @@ module.exports = grammar(clojure, { kwd_symbol: _ => seq(SYMBOL), + self_referential_reader_macro: _ => /#\d+[=#]/, + _form: $ => seq(optional('#'), choice( @@ -322,9 +329,10 @@ module.exports = grammar(clojure, { $.fancy_literal, $.vec_lit, $.kwd_lit, - // No idea why this is necessary... + // No idea why this is necessary...It is never used but triggers some background magic alias(seq(field('open', '#'), optional(/\d+[aA]/), $.list_lit), $.vec_lit), $.str_lit, + $.self_referential_reader_macro, $.char_lit, $.nil_lit, $.path_lit, diff --git a/src/grammar.json b/src/grammar.json index dee756729..6a7b134d9 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -151,6 +151,10 @@ "type": "SYMBOL", "name": "str_lit" }, + { + "type": "SYMBOL", + "name": "self_referential_reader_macro" + }, { "type": "SYMBOL", "name": "char_lit" @@ -229,204 +233,283 @@ { "type": "TOKEN", "content": { - "type": "PREC", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[+-]" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "0" - }, - { - "type": "PATTERN", - "value": "[xX]" - }, - { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "[0-9a-fA-F]" + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[+-]" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "#x" + }, + { + "type": "STRING", + "value": "#X" } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "N" - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "REPEAT1", - "content": { + ] + }, + { + "type": "CHOICE", + "members": [ + { "type": "PATTERN", - "value": "[0-9]" + "value": "[+-]" + }, + { + "type": "BLANK" } - }, - { + ] + }, + { + "type": "REPEAT1", + "content": { "type": "PATTERN", - "value": "[rR]" - }, - { - "type": "REPEAT1", - "content": { + "value": "[0-9a-fA-F]" + } + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "#o" + }, + { + "type": "STRING", + "value": "#O" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { "type": "PATTERN", - "value": "[0-9a-zA-Z]" + "value": "[+-]" + }, + { + "type": "BLANK" } + ] + }, + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[0-7]" } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "[0-9]" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "#" + }, + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[0-9]" + } + }, + { + "type": "PATTERN", + "value": "[rR]" + }, + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[0-9a-zA-Z]" + } + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "#b" + }, + { + "type": "STRING", + "value": "#B" } - }, - { - "type": "STRING", - "value": "/" - }, - { - "type": "REPEAT1", - "content": { + ] + }, + { + "type": "CHOICE", + "members": [ + { "type": "PATTERN", - "value": "[0-9]" + "value": "[+-]" + }, + { + "type": "BLANK" } + ] + }, + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[0-1]" } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "[0-9]" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[0-9]" + } + }, + { + "type": "STRING", + "value": "/" + }, + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[0-9]" + } + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[0-9]" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "." + }, + { + "type": "REPEAT", + "content": { + "type": "PATTERN", + "value": "[0-9]" + } + } + ] + }, + { + "type": "BLANK" } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "." - }, - { - "type": "REPEAT", - "content": { + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "PATTERN", + "value": "[eEsSfFdDlL]" + }, + { + "type": "CHOICE", + "members": [ + { "type": "PATTERN", - "value": "[0-9]" + "value": "[+-]" + }, + { + "type": "BLANK" } - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { + ] + }, + { + "type": "REPEAT1", + "content": { "type": "PATTERN", - "value": "[eEsSfFdDlL]" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[+-]" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "[0-9]" - } + "value": "[0-9]" } - ] - }, - { - "type": "BLANK" - } - ] + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[0-9]" } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "REPEAT1", - "content": { + }, + { + "type": "CHOICE", + "members": [ + { "type": "PATTERN", - "value": "[0-9]" + "value": "[MN]" + }, + { + "type": "BLANK" } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[MN]" - }, - { - "type": "BLANK" - } - ] - } - ] - } - ] - } - ] - } + ] + } + ] + } + ] + } + ] } }, { @@ -1849,204 +1932,283 @@ "content": { "type": "TOKEN", "content": { - "type": "PREC", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[+-]" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "0" - }, - { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[+-]" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "#x" + }, + { + "type": "STRING", + "value": "#X" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[+-]" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "REPEAT1", + "content": { "type": "PATTERN", - "value": "[xX]" - }, - { - "type": "REPEAT1", - "content": { + "value": "[0-9a-fA-F]" + } + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "#o" + }, + { + "type": "STRING", + "value": "#O" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { "type": "PATTERN", - "value": "[0-9a-fA-F]" + "value": "[+-]" + }, + { + "type": "BLANK" } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "N" - }, - { - "type": "BLANK" - } - ] + ] + }, + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[0-7]" + } + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "#" + }, + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[0-9]" } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "[0-9]" - } - }, - { + }, + { + "type": "PATTERN", + "value": "[rR]" + }, + { + "type": "REPEAT1", + "content": { "type": "PATTERN", - "value": "[rR]" - }, - { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "[0-9a-zA-Z]" - } + "value": "[0-9a-zA-Z]" } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "[0-9]" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "#b" + }, + { + "type": "STRING", + "value": "#B" } - }, - { - "type": "STRING", - "value": "/" - }, - { - "type": "REPEAT1", - "content": { + ] + }, + { + "type": "CHOICE", + "members": [ + { "type": "PATTERN", - "value": "[0-9]" + "value": "[+-]" + }, + { + "type": "BLANK" } + ] + }, + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[0-1]" } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "[0-9]" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[0-9]" + } + }, + { + "type": "STRING", + "value": "/" + }, + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[0-9]" + } + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[0-9]" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "." + }, + { + "type": "REPEAT", + "content": { + "type": "PATTERN", + "value": "[0-9]" + } + } + ] + }, + { + "type": "BLANK" } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "." - }, - { - "type": "REPEAT", - "content": { + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "PATTERN", + "value": "[eEsSfFdDlL]" + }, + { + "type": "CHOICE", + "members": [ + { "type": "PATTERN", - "value": "[0-9]" + "value": "[+-]" + }, + { + "type": "BLANK" } - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { + ] + }, + { + "type": "REPEAT1", + "content": { "type": "PATTERN", - "value": "[eEsSfFdDlL]" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[+-]" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "[0-9]" - } + "value": "[0-9]" } - ] - }, - { - "type": "BLANK" - } - ] + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[0-9]" } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "REPEAT1", - "content": { + }, + { + "type": "CHOICE", + "members": [ + { "type": "PATTERN", - "value": "[0-9]" + "value": "[MN]" + }, + { + "type": "BLANK" } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[MN]" - }, - { - "type": "BLANK" - } - ] - } - ] - } - ] - } - ] - } + ] + } + ] + } + ] + } + ] } }, "named": true, @@ -3999,6 +4161,10 @@ } ] }, + "self_referential_reader_macro": { + "type": "PATTERN", + "value": "#\\d+[=#]" + }, "include_reader_macro": { "type": "SEQ", "members": [ diff --git a/src/node-types.json b/src/node-types.json index 4b662875e..97210cc3b 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -78,6 +78,10 @@ "type": "read_cond_lit", "named": true }, + { + "type": "self_referential_reader_macro", + "named": true + }, { "type": "set_lit", "named": true @@ -286,6 +290,10 @@ "type": "read_cond_lit", "named": true }, + { + "type": "self_referential_reader_macro", + "named": true + }, { "type": "set_lit", "named": true @@ -413,6 +421,10 @@ "type": "read_cond_lit", "named": true }, + { + "type": "self_referential_reader_macro", + "named": true + }, { "type": "set_lit", "named": true @@ -535,6 +547,10 @@ "type": "read_cond_lit", "named": true }, + { + "type": "self_referential_reader_macro", + "named": true + }, { "type": "set_lit", "named": true @@ -734,6 +750,10 @@ "type": "read_cond_lit", "named": true }, + { + "type": "self_referential_reader_macro", + "named": true + }, { "type": "set_lit", "named": true @@ -863,6 +883,10 @@ "type": "read_cond_lit", "named": true }, + { + "type": "self_referential_reader_macro", + "named": true + }, { "type": "set_lit", "named": true @@ -984,6 +1008,10 @@ "type": "read_cond_lit", "named": true }, + { + "type": "self_referential_reader_macro", + "named": true + }, { "type": "set_lit", "named": true @@ -1082,6 +1110,10 @@ "type": "read_cond_lit", "named": true }, + { + "type": "self_referential_reader_macro", + "named": true + }, { "type": "set_lit", "named": true @@ -1185,6 +1217,10 @@ "type": "read_cond_lit", "named": true }, + { + "type": "self_referential_reader_macro", + "named": true + }, { "type": "set_lit", "named": true @@ -1404,6 +1440,10 @@ "type": "read_cond_lit", "named": true }, + { + "type": "self_referential_reader_macro", + "named": true + }, { "type": "set_lit", "named": true @@ -1546,6 +1586,10 @@ "type": "read_cond_lit", "named": true }, + { + "type": "self_referential_reader_macro", + "named": true + }, { "type": "set_lit", "named": true @@ -1728,6 +1772,10 @@ "type": "read_cond_lit", "named": true }, + { + "type": "self_referential_reader_macro", + "named": true + }, { "type": "set_lit", "named": true @@ -1989,6 +2037,10 @@ "type": "read_cond_lit", "named": true }, + { + "type": "self_referential_reader_macro", + "named": true + }, { "type": "set_lit", "named": true @@ -2324,6 +2376,10 @@ "type": "read_cond_lit", "named": true }, + { + "type": "self_referential_reader_macro", + "named": true + }, { "type": "set_lit", "named": true @@ -2496,6 +2552,10 @@ "type": "read_cond_lit", "named": true }, + { + "type": "self_referential_reader_macro", + "named": true + }, { "type": "set_lit", "named": true @@ -2633,6 +2693,10 @@ "type": "read_cond_lit", "named": true }, + { + "type": "self_referential_reader_macro", + "named": true + }, { "type": "set_lit", "named": true @@ -2790,6 +2854,10 @@ "type": "read_cond_lit", "named": true }, + { + "type": "self_referential_reader_macro", + "named": true + }, { "type": "set_lit", "named": true @@ -2919,6 +2987,10 @@ "type": "read_cond_lit", "named": true }, + { + "type": "self_referential_reader_macro", + "named": true + }, { "type": "set_lit", "named": true @@ -3076,6 +3148,10 @@ "type": "read_cond_lit", "named": true }, + { + "type": "self_referential_reader_macro", + "named": true + }, { "type": "set_lit", "named": true @@ -3242,6 +3318,10 @@ "type": "read_cond_lit", "named": true }, + { + "type": "self_referential_reader_macro", + "named": true + }, { "type": "set_lit", "named": true @@ -3371,6 +3451,10 @@ "type": "read_cond_lit", "named": true }, + { + "type": "self_referential_reader_macro", + "named": true + }, { "type": "set_lit", "named": true @@ -3514,6 +3598,10 @@ "type": "read_cond_lit", "named": true }, + { + "type": "self_referential_reader_macro", + "named": true + }, { "type": "set_lit", "named": true @@ -3652,6 +3740,10 @@ "type": "read_cond_lit", "named": true }, + { + "type": "self_referential_reader_macro", + "named": true + }, { "type": "set_lit", "named": true @@ -3810,6 +3902,10 @@ "type": "read_cond_lit", "named": true }, + { + "type": "self_referential_reader_macro", + "named": true + }, { "type": "set_lit", "named": true @@ -3984,6 +4080,10 @@ "type": "read_cond_lit", "named": true }, + { + "type": "self_referential_reader_macro", + "named": true + }, { "type": "set_lit", "named": true @@ -4133,6 +4233,10 @@ "type": "read_cond_lit", "named": true }, + { + "type": "self_referential_reader_macro", + "named": true + }, { "type": "set_lit", "named": true @@ -4254,6 +4358,10 @@ "type": "read_cond_lit", "named": true }, + { + "type": "self_referential_reader_macro", + "named": true + }, { "type": "set_lit", "named": true @@ -4353,6 +4461,10 @@ "type": "read_cond_lit", "named": true }, + { + "type": "self_referential_reader_macro", + "named": true + }, { "type": "set_lit", "named": true @@ -4700,6 +4812,10 @@ "type": "return", "named": false }, + { + "type": "self_referential_reader_macro", + "named": true + }, { "type": "then", "named": false diff --git a/src/parser.c b/src/parser.c index b23524e37..299654f26 100644 --- a/src/parser.c +++ b/src/parser.c @@ -14,11 +14,11 @@ #endif #define LANGUAGE_VERSION 13 -#define STATE_COUNT 3498 -#define LARGE_STATE_COUNT 44 -#define SYMBOL_COUNT 187 +#define STATE_COUNT 3500 +#define LARGE_STATE_COUNT 166 +#define SYMBOL_COUNT 188 #define ALIAS_COUNT 0 -#define TOKEN_COUNT 121 +#define TOKEN_COUNT 122 #define EXTERNAL_TOKEN_COUNT 0 #define FIELD_COUNT 20 #define MAX_ALIAS_SEQUENCE_LENGTH 13 @@ -141,76 +141,77 @@ enum { anon_sym_POUNDP = 114, anon_sym_POUNDp = 115, aux_sym__sym_lit_without_slash_token1 = 116, - anon_sym_POUND_PLUS = 117, - anon_sym_POUND_DASH = 118, - anon_sym_POUNDC = 119, - anon_sym_POUNDc = 120, - sym_source = 121, - sym__gap = 122, - sym_dis_expr = 123, - sym__form = 124, - sym_num_lit = 125, - sym_kwd_lit = 126, - sym_str_lit = 127, - sym_char_lit = 128, - sym_sym_lit = 129, - sym__metadata_lit = 130, - sym_meta_lit = 131, - sym_old_meta_lit = 132, - sym_list_lit = 133, - sym__bare_list_lit = 134, - sym_map_lit = 135, - sym__bare_map_lit = 136, - sym_vec_lit = 137, - sym_set_lit = 138, - sym__bare_set_lit = 139, - sym_read_cond_lit = 140, - sym_splicing_read_cond_lit = 141, - sym_var_quoting_lit = 142, - sym_quoting_lit = 143, - sym_syn_quoting_lit = 144, - sym_unquote_splicing_lit = 145, - sym_unquoting_lit = 146, - sym_defun = 147, - sym__format_token = 148, - sym_format_prefix_parameters = 149, - sym_format_modifiers = 150, - sym_format_directive_type = 151, - sym_format_specifier = 152, - sym_for_clause_word = 153, - sym__for_part = 154, - sym_accumulation_verb = 155, - sym_for_clause = 156, - sym_with_clause = 157, - sym_do_clause = 158, - sym_while_clause = 159, - sym_repeat_clause = 160, - sym_condition_clause = 161, - sym_accumulation_clause = 162, - sym_termination_clause = 163, - sym_loop_clause = 164, - sym_loop_macro = 165, - sym_defun_keyword = 166, - sym_defun_header = 167, - sym_array_dimension = 168, - sym_path_lit = 169, - sym_package_lit = 170, - sym__package_lit_without_slash = 171, - sym__sym_lit_without_slash = 172, - sym_kwd_symbol = 173, - sym_include_reader_macro = 174, - sym_complex_num_lit = 175, - aux_sym_source_repeat1 = 176, - aux_sym_dis_expr_repeat1 = 177, - aux_sym_str_lit_repeat1 = 178, - aux_sym_list_lit_repeat1 = 179, - aux_sym__bare_list_lit_repeat1 = 180, - aux_sym_read_cond_lit_repeat1 = 181, - aux_sym_format_modifiers_repeat1 = 182, - aux_sym_for_clause_repeat1 = 183, - aux_sym_do_clause_repeat1 = 184, - aux_sym_loop_macro_repeat1 = 185, - aux_sym__sym_lit_without_slash_repeat1 = 186, + sym_self_referential_reader_macro = 117, + anon_sym_POUND_PLUS = 118, + anon_sym_POUND_DASH = 119, + anon_sym_POUNDC = 120, + anon_sym_POUNDc = 121, + sym_source = 122, + sym__gap = 123, + sym_dis_expr = 124, + sym__form = 125, + sym_num_lit = 126, + sym_kwd_lit = 127, + sym_str_lit = 128, + sym_char_lit = 129, + sym_sym_lit = 130, + sym__metadata_lit = 131, + sym_meta_lit = 132, + sym_old_meta_lit = 133, + sym_list_lit = 134, + sym__bare_list_lit = 135, + sym_map_lit = 136, + sym__bare_map_lit = 137, + sym_vec_lit = 138, + sym_set_lit = 139, + sym__bare_set_lit = 140, + sym_read_cond_lit = 141, + sym_splicing_read_cond_lit = 142, + sym_var_quoting_lit = 143, + sym_quoting_lit = 144, + sym_syn_quoting_lit = 145, + sym_unquote_splicing_lit = 146, + sym_unquoting_lit = 147, + sym_defun = 148, + sym__format_token = 149, + sym_format_prefix_parameters = 150, + sym_format_modifiers = 151, + sym_format_directive_type = 152, + sym_format_specifier = 153, + sym_for_clause_word = 154, + sym__for_part = 155, + sym_accumulation_verb = 156, + sym_for_clause = 157, + sym_with_clause = 158, + sym_do_clause = 159, + sym_while_clause = 160, + sym_repeat_clause = 161, + sym_condition_clause = 162, + sym_accumulation_clause = 163, + sym_termination_clause = 164, + sym_loop_clause = 165, + sym_loop_macro = 166, + sym_defun_keyword = 167, + sym_defun_header = 168, + sym_array_dimension = 169, + sym_path_lit = 170, + sym_package_lit = 171, + sym__package_lit_without_slash = 172, + sym__sym_lit_without_slash = 173, + sym_kwd_symbol = 174, + sym_include_reader_macro = 175, + sym_complex_num_lit = 176, + aux_sym_source_repeat1 = 177, + aux_sym_dis_expr_repeat1 = 178, + aux_sym_str_lit_repeat1 = 179, + aux_sym_list_lit_repeat1 = 180, + aux_sym__bare_list_lit_repeat1 = 181, + aux_sym_read_cond_lit_repeat1 = 182, + aux_sym_format_modifiers_repeat1 = 183, + aux_sym_for_clause_repeat1 = 184, + aux_sym_do_clause_repeat1 = 185, + aux_sym_loop_macro_repeat1 = 186, + aux_sym__sym_lit_without_slash_repeat1 = 187, }; static const char *ts_symbol_names[] = { @@ -331,6 +332,7 @@ static const char *ts_symbol_names[] = { [anon_sym_POUNDP] = "#P", [anon_sym_POUNDp] = "#p", [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] = "#+", [anon_sym_POUND_DASH] = "#-", [anon_sym_POUNDC] = "#C", @@ -521,6 +523,7 @@ static TSSymbol ts_symbol_map[] = { [anon_sym_POUNDP] = anon_sym_POUNDP, [anon_sym_POUNDp] = anon_sym_POUNDp, [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, [anon_sym_POUND_DASH] = anon_sym_POUND_DASH, [anon_sym_POUNDC] = anon_sym_POUNDC, @@ -1062,6 +1065,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [sym_self_referential_reader_macro] = { + .visible = true, + .named = true, + }, [anon_sym_POUND_PLUS] = { .visible = true, .named = false, @@ -2416,40 +2423,6 @@ static inline bool aux_sym_sym_lit_token1_character_set_4(int32_t c) { } 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 < 'R' - ? (c < 'D' - ? (c >= '@' && c <= 'A') - : (c <= 'F' || (c >= 'L' && c <= 'N'))) - : (c <= 'S' || (c < '[' - ? c == 'X' - : c <= '^'))))) - : (c <= 'a' || (c < 5760 - ? (c < 'x' - ? (c < 'l' - ? (c >= 'd' && c <= 'f') - : (c <= 'l' || (c >= 'r' && c <= 's'))) - : (c <= 'x' || (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 < '0' ? (c < '"' @@ -2464,10 +2437,10 @@ static inline bool aux_sym_sym_lit_token1_character_set_6(int32_t c) { ? (c >= '@' && c <= 'A') : c <= 'F') : (c <= 'N' || (c < '[' - ? (c >= 'R' && c <= 'S') + ? c == 'S' : c <= '^'))))) : (c <= 'a' || (c < 5760 - ? (c < 'r' + ? (c < 's' ? (c < 'l' ? (c >= 'd' && c <= 'f') : c <= 'l') @@ -2483,41 +2456,7 @@ static inline bool aux_sym_sym_lit_token1_character_set_6(int32_t c) { : c <= 12288))))))); } -static inline bool aux_sym_sym_lit_token1_character_set_7(int32_t c) { - return (c < '`' - ? (c < '0' - ? (c < '"' - ? (c < '\t' - ? c == 0 - : (c <= '\r' || (c >= 28 && c <= ' '))) - : (c <= '"' || (c < ',' - ? (c >= '(' && c <= ')') - : c <= ','))) - : (c <= ';' || (c < 'R' - ? (c < 'D' - ? c == '@' - : (c <= 'F' || (c >= 'L' && c <= 'N'))) - : (c <= 'S' || (c < '[' - ? c == 'X' - : c <= '^'))))) - : (c <= '`' || (c < 5760 - ? (c < 'x' - ? (c < 'l' - ? (c >= 'd' && c <= 'f') - : (c <= 'l' || (c >= 'r' && c <= 's'))) - : (c <= 'x' || (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_8(int32_t c) { +static inline bool aux_sym_sym_lit_token1_character_set_6(int32_t c) { return (c < '`' ? (c < '0' ? (c < '"' @@ -2532,10 +2471,10 @@ static inline bool aux_sym_sym_lit_token1_character_set_8(int32_t c) { ? c == '@' : c <= 'F') : (c <= 'N' || (c < '[' - ? (c >= 'R' && c <= 'S') + ? c == 'S' : c <= '^'))))) : (c <= '`' || (c < 5760 - ? (c < 'r' + ? (c < 's' ? (c < 'l' ? (c >= 'd' && c <= 'f') : c <= 'l') @@ -2551,7 +2490,7 @@ static inline bool aux_sym_sym_lit_token1_character_set_8(int32_t c) { : c <= 12288))))))); } -static inline bool aux_sym_sym_lit_token1_character_set_9(int32_t c) { +static inline bool aux_sym_sym_lit_token1_character_set_7(int32_t c) { return (c < '`' ? (c < '(' ? (c < 28 @@ -2559,23 +2498,19 @@ static inline bool aux_sym_sym_lit_token1_character_set_9(int32_t c) { ? c == 0 : c <= '\r') : (c <= ' ' || c == '"')) - : (c <= ')' || (c < '@' - ? (c < '0' - ? c == ',' - : c <= ';') - : (c <= 'F' || (c >= '[' && c <= '^'))))) - : (c <= 'f' || (c < 8200 + : (c <= ')' || (c < '0' + ? c == ',' + : (c <= ';' || (c >= '@' && c <= '^'))))) + : (c <= '{' || (c < 8200 ? (c < 5760 - ? (c < '}' - ? 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_10(int32_t c) { +static inline bool aux_sym_sym_lit_token1_character_set_8(int32_t c) { return (c < '`' ? (c < '(' ? (c < 28 @@ -2583,19 +2518,23 @@ static inline bool aux_sym_sym_lit_token1_character_set_10(int32_t c) { ? c == 0 : c <= '\r') : (c <= ' ' || c == '"')) - : (c <= ')' || (c < '0' - ? c == ',' - : (c <= ';' || (c >= '@' && c <= '^'))))) - : (c <= '{' || (c < 8200 + : (c <= ')' || (c < '@' + ? (c < '0' + ? c == ',' + : c <= ';') + : (c <= 'F' || (c >= '[' && c <= '^'))))) + : (c <= 'f' || (c < 8200 ? (c < 5760 - ? c == '}' + ? (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) { +static inline bool aux_sym_sym_lit_token1_character_set_9(int32_t c) { return (c < '`' ? (c < '0' ? (c < '"' @@ -2629,7 +2568,7 @@ static inline bool aux_sym_sym_lit_token1_character_set_11(int32_t c) { : c <= 12288))))))); } -static inline bool aux_sym_sym_lit_token1_character_set_12(int32_t c) { +static inline bool aux_sym_sym_lit_token1_character_set_10(int32_t c) { return (c < '`' ? (c < '(' ? (c < 28 @@ -2653,31 +2592,59 @@ static inline bool aux_sym_sym_lit_token1_character_set_12(int32_t c) { : (c <= 8287 || c == 12288)))))); } -static inline bool aux_sym_sym_lit_token1_character_set_13(int32_t c) { - return (c < '`' +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 < '1' + : (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 <= '7') + : (c <= ';' || c == '@')))) + : (c <= '^' || (c < 8192 + ? (c < '}' + ? (c < '{' + ? c == '`' + : 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_14(int32_t c) { +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 < 8192 + ? (c < '}' + ? (c < '{' + ? c == '`' + : 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_13(int32_t c) { return (c < '[' ? (c < '(' ? (c < 28 @@ -2699,6 +2666,30 @@ static inline bool aux_sym_sym_lit_token1_character_set_14(int32_t c) { : (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 < '@' + ? (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 < '(' @@ -2724,6 +2715,86 @@ static inline bool aux_sym_sym_lit_token1_character_set_15(int32_t c) { } 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 <= ')'))) + : (c <= ',' || (c < 'R' + ? (c < '@' + ? (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 < 8192 + ? (c < '}' + ? (c < '{' + ? c == '`' + : 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_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 < 8192 + ? (c < '}' + ? (c < '{' + ? c == '`' + : 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_19(int32_t c) { return (c < '`' ? (c < '(' ? (c < 28 @@ -2822,57 +2893,57 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(284); - if (lookahead == '\n') ADVANCE(338); - if (lookahead == '\r') ADVANCE(338); - if (lookahead == '"') ADVANCE(332); - if (lookahead == '#') ADVANCE(334); - if (lookahead == '%') ADVANCE(338); - if (lookahead == '&') ADVANCE(338); - if (lookahead == '\'') ADVANCE(338); - if (lookahead == '(') ADVANCE(338); - if (lookahead == ')') ADVANCE(338); - if (lookahead == '*') ADVANCE(338); - if (lookahead == ',') ADVANCE(338); - if (lookahead == '.') ADVANCE(338); - if (lookahead == '/') ADVANCE(338); - if (lookahead == ':') ADVANCE(338); - if (lookahead == ';') ADVANCE(338); - if (lookahead == '=') ADVANCE(338); - if (lookahead == '?') ADVANCE(338); - if (lookahead == '@') ADVANCE(338); - if (lookahead == 'V') ADVANCE(338); - if (lookahead == '[') ADVANCE(338); - if (lookahead == '\\') ADVANCE(541); - if (lookahead == ']') ADVANCE(338); - if (lookahead == '^') ADVANCE(338); - if (lookahead == '_') ADVANCE(338); - if (lookahead == '`') ADVANCE(338); - if (lookahead == 'v') ADVANCE(338); - if (lookahead == '{') ADVANCE(338); - if (lookahead == '|') ADVANCE(338); - if (lookahead == '}') ADVANCE(338); - if (lookahead == '~') ADVANCE(340); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(338); + if (eof) ADVANCE(290); + if (lookahead == '\n') ADVANCE(345); + if (lookahead == '\r') ADVANCE(345); + if (lookahead == '"') ADVANCE(339); + if (lookahead == '#') ADVANCE(341); + if (lookahead == '%') ADVANCE(345); + if (lookahead == '&') ADVANCE(345); + if (lookahead == '\'') ADVANCE(345); + if (lookahead == '(') ADVANCE(345); + if (lookahead == ')') ADVANCE(345); + if (lookahead == '*') ADVANCE(345); + if (lookahead == ',') ADVANCE(345); + if (lookahead == '.') ADVANCE(345); + if (lookahead == '/') ADVANCE(345); + if (lookahead == ':') ADVANCE(345); + if (lookahead == ';') ADVANCE(345); + if (lookahead == '=') ADVANCE(345); + if (lookahead == '?') ADVANCE(345); + if (lookahead == '@') ADVANCE(345); + if (lookahead == 'V') ADVANCE(345); + if (lookahead == '[') ADVANCE(345); + if (lookahead == '\\') ADVANCE(555); + if (lookahead == ']') ADVANCE(345); + if (lookahead == '^') ADVANCE(345); + if (lookahead == '_') ADVANCE(345); + if (lookahead == '`') ADVANCE(345); + if (lookahead == 'v') ADVANCE(345); + if (lookahead == '{') ADVANCE(345); + if (lookahead == '|') ADVANCE(345); + if (lookahead == '}') ADVANCE(345); + if (lookahead == '~') ADVANCE(347); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(345); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(338); + lookahead == 'a') ADVANCE(345); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(338); + lookahead == 'c') ADVANCE(345); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(338); + lookahead == 'i') ADVANCE(345); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(338); + lookahead == 'l') ADVANCE(345); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(338); + lookahead == 'p') ADVANCE(345); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(338); + lookahead == 'w') ADVANCE(345); if (lookahead == 'D' || lookahead == 'F' || lookahead == 'S' || lookahead == 'd' || lookahead == 'f' || - lookahead == 's') ADVANCE(338); - if (aux_sym_str_lit_token1_character_set_1(lookahead)) ADVANCE(338); + lookahead == 's') ADVANCE(345); + if (aux_sym_str_lit_token1_character_set_1(lookahead)) ADVANCE(345); if (('\t' <= lookahead && lookahead <= '\f') || (28 <= lookahead && lookahead <= ' ') || lookahead == 5760 || @@ -2881,52 +2952,51 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8232 || lookahead == 8233 || lookahead == 8287 || - lookahead == 12288) ADVANCE(338); - if (lookahead != 0) ADVANCE(338); + lookahead == 12288) ADVANCE(345); + if (lookahead != 0) ADVANCE(345); END_STATE(); case 1: - if (lookahead == '\n') ADVANCE(552); - if (lookahead == '\r') ADVANCE(553); - if (lookahead == '"') ADVANCE(332); - if (lookahead == '#') ADVANCE(293); - if (lookahead == '%') ADVANCE(547); - if (lookahead == '&') ADVANCE(548); - if (lookahead == '\'') ADVANCE(533); - if (lookahead == '*') ADVANCE(564); - if (lookahead == ',') ADVANCE(536); - if (lookahead == '/') ADVANCE(565); - if (lookahead == '0') ADVANCE(302); - if (lookahead == ':') ADVANCE(330); - if (lookahead == ';') ADVANCE(563); - if (lookahead == '?') ADVANCE(566); - if (lookahead == '@') ADVANCE(532); + if (lookahead == '\n') ADVANCE(566); + if (lookahead == '\r') ADVANCE(567); + if (lookahead == '"') ADVANCE(339); + if (lookahead == '#') ADVANCE(299); + if (lookahead == '%') ADVANCE(561); + if (lookahead == '&') ADVANCE(562); + if (lookahead == '\'') ADVANCE(547); + if (lookahead == '*') ADVANCE(578); + if (lookahead == ',') ADVANCE(550); + if (lookahead == '/') ADVANCE(579); + if (lookahead == ':') ADVANCE(337); + if (lookahead == ';') ADVANCE(577); + if (lookahead == '?') ADVANCE(580); + if (lookahead == '@') ADVANCE(546); if (lookahead == 'N') ADVANCE(105); - if (lookahead == 'V') ADVANCE(544); - if (lookahead == '^') ADVANCE(551); - if (lookahead == '_') ADVANCE(558); - if (lookahead == 'v') ADVANCE(543); - if (lookahead == '|') ADVANCE(549); - if (lookahead == '~') ADVANCE(340); - if (('+' <= lookahead && lookahead <= '-')) ADVANCE(38); + if (lookahead == 'V') ADVANCE(558); + if (lookahead == '^') ADVANCE(565); + if (lookahead == '_') ADVANCE(572); + if (lookahead == 'v') ADVANCE(557); + if (lookahead == '|') ADVANCE(563); + if (lookahead == '~') ADVANCE(347); + if (('+' <= lookahead && lookahead <= '-')) ADVANCE(27); if (lookahead == '<' || - lookahead == '>') ADVANCE(562); + lookahead == '>') ADVANCE(576); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(557); + lookahead == 'a') ADVANCE(571); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(550); + lookahead == 'c') ADVANCE(564); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(555); + lookahead == 'i') ADVANCE(569); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(554); + lookahead == 'p') ADVANCE(568); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(556); + lookahead == 'w') ADVANCE(570); if (lookahead == '[' || - lookahead == ']') ADVANCE(561); - if (('{' <= lookahead && lookahead <= '}')) ADVANCE(560); + lookahead == ']') ADVANCE(575); + if (('{' <= lookahead && lookahead <= '}')) ADVANCE(574); if (lookahead == '(' || - lookahead == ')') ADVANCE(559); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(303); - if (aux_sym_str_lit_token1_character_set_1(lookahead)) ADVANCE(568); + lookahead == ')') ADVANCE(573); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(306); + if (aux_sym_str_lit_token1_character_set_1(lookahead)) ADVANCE(582); END_STATE(); case 2: if (lookahead == ' ') ADVANCE(121); @@ -2939,52 +3009,59 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 's') ADVANCE(3); END_STATE(); case 5: - if (lookahead == '!') ADVANCE(287); - if (lookahead == '?') ADVANCE(528); - if (lookahead == '^') ADVANCE(520); - if (lookahead == '_') ADVANCE(288); - if (lookahead == '|') ADVANCE(270); + if (lookahead == '!') ADVANCE(293); + if (lookahead == '?') ADVANCE(542); + if (lookahead == '^') ADVANCE(534); + if (lookahead == '_') ADVANCE(294); + if (lookahead == '|') ADVANCE(268); END_STATE(); case 6: - if (lookahead == '!') ADVANCE(287); - if (lookahead == '^') ADVANCE(520); - if (lookahead == '_') ADVANCE(288); - if (lookahead == '|') ADVANCE(270); + if (lookahead == '!') ADVANCE(293); + if (lookahead == '^') ADVANCE(534); + if (lookahead == '_') ADVANCE(294); + if (lookahead == '|') ADVANCE(268); END_STATE(); case 7: - if (lookahead == '!') ADVANCE(287); - if (lookahead == '_') ADVANCE(288); - if (lookahead == '|') ADVANCE(270); + if (lookahead == '!') ADVANCE(293); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(271); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(272); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(273); + if (lookahead == '^') ADVANCE(534); + if (lookahead == '_') ADVANCE(294); + if (lookahead == '|') ADVANCE(268); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(277); END_STATE(); case 8: - if (lookahead == '"') ADVANCE(332); - if (lookahead == '#') ADVANCE(289); - if (lookahead == '\'') ADVANCE(533); - if (lookahead == '(') ADVANCE(521); - if (lookahead == ')') ADVANCE(522); - if (lookahead == ',') ADVANCE(537); - if (lookahead == '.') ADVANCE(296); - if (lookahead == '0') ADVANCE(300); - if (lookahead == ':') ADVANCE(329); - if (lookahead == ';') ADVANCE(287); - if (lookahead == '^') ADVANCE(519); - if (lookahead == '`') ADVANCE(534); - if (lookahead == 'a') ADVANCE(427); - if (lookahead == 'c') ADVANCE(424); - if (lookahead == 'd') ADVANCE(461); - if (lookahead == 'e') ADVANCE(428); - if (lookahead == 'f') ADVANCE(414); - if (lookahead == 'i') ADVANCE(400); - if (lookahead == 'm') ADVANCE(363); - if (lookahead == 'n') ADVANCE(374); - if (lookahead == 'r') ADVANCE(382); - if (lookahead == 's') ADVANCE(501); - if (lookahead == 't') ADVANCE(409); - if (lookahead == 'u') ADVANCE(444); - if (lookahead == 'w') ADVANCE(407); - if (lookahead == '|') ADVANCE(513); - if (('+' <= lookahead && lookahead <= '-')) ADVANCE(362); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(301); + if (lookahead == '"') ADVANCE(339); + if (lookahead == '#') ADVANCE(295); + if (lookahead == '\'') ADVANCE(547); + if (lookahead == '(') ADVANCE(535); + if (lookahead == ')') ADVANCE(536); + if (lookahead == ',') ADVANCE(551); + if (lookahead == '.') ADVANCE(302); + if (lookahead == ':') ADVANCE(336); + if (lookahead == ';') ADVANCE(293); + if (lookahead == '^') ADVANCE(533); + if (lookahead == '`') ADVANCE(548); + if (lookahead == 'a') ADVANCE(434); + if (lookahead == 'c') ADVANCE(431); + if (lookahead == 'd') ADVANCE(468); + if (lookahead == 'e') ADVANCE(435); + if (lookahead == 'f') ADVANCE(421); + if (lookahead == 'i') ADVANCE(407); + if (lookahead == 'm') ADVANCE(370); + if (lookahead == 'n') ADVANCE(381); + if (lookahead == 'r') ADVANCE(389); + if (lookahead == 's') ADVANCE(508); + if (lookahead == 't') ADVANCE(416); + if (lookahead == 'u') ADVANCE(451); + if (lookahead == 'w') ADVANCE(414); + if (lookahead == '|') ADVANCE(520); + if (('+' <= lookahead && lookahead <= '-')) ADVANCE(369); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(305); if (('\t' <= lookahead && lookahead <= '\r') || (28 <= lookahead && lookahead <= ' ') || lookahead == 5760 || @@ -2993,46 +3070,45 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8232 || lookahead == 8233 || lookahead == 8287 || - lookahead == 12288) ADVANCE(285); + lookahead == 12288) ADVANCE(291); if (lookahead != 0 && lookahead != '@' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(518); + (lookahead < '{' || '}' < lookahead)) ADVANCE(532); END_STATE(); case 9: - if (lookahead == '"') ADVANCE(332); - if (lookahead == '#') ADVANCE(289); - if (lookahead == '\'') ADVANCE(533); - if (lookahead == '(') ADVANCE(521); - if (lookahead == ')') ADVANCE(522); - if (lookahead == ',') ADVANCE(537); - if (lookahead == '.') ADVANCE(296); - if (lookahead == '0') ADVANCE(300); - if (lookahead == ':') ADVANCE(329); - if (lookahead == ';') ADVANCE(287); - if (lookahead == '^') ADVANCE(519); - if (lookahead == '`') ADVANCE(534); - if (lookahead == 'a') ADVANCE(427); - if (lookahead == 'c') ADVANCE(424); - if (lookahead == 'd') ADVANCE(319); - if (lookahead == 'e') ADVANCE(428); - if (lookahead == 'f') ADVANCE(316); - if (lookahead == 'i') ADVANCE(400); - if (lookahead == 'm') ADVANCE(363); - if (lookahead == 'n') ADVANCE(374); - if (lookahead == 'r') ADVANCE(382); - if (lookahead == 's') ADVANCE(326); - if (lookahead == 't') ADVANCE(409); - if (lookahead == 'u') ADVANCE(444); - if (lookahead == 'w') ADVANCE(407); - if (lookahead == '|') ADVANCE(513); - if (('+' <= lookahead && lookahead <= '-')) ADVANCE(362); + if (lookahead == '"') ADVANCE(339); + if (lookahead == '#') ADVANCE(295); + if (lookahead == '\'') ADVANCE(547); + if (lookahead == '(') ADVANCE(535); + if (lookahead == ')') ADVANCE(536); + if (lookahead == ',') ADVANCE(551); + if (lookahead == '.') ADVANCE(302); + if (lookahead == ':') ADVANCE(336); + if (lookahead == ';') ADVANCE(293); + if (lookahead == '^') ADVANCE(533); + if (lookahead == '`') ADVANCE(548); + if (lookahead == 'a') ADVANCE(434); + if (lookahead == 'c') ADVANCE(431); + if (lookahead == 'd') ADVANCE(326); + if (lookahead == 'e') ADVANCE(435); + if (lookahead == 'f') ADVANCE(323); + if (lookahead == 'i') ADVANCE(407); + if (lookahead == 'm') ADVANCE(370); + if (lookahead == 'n') ADVANCE(381); + if (lookahead == 'r') ADVANCE(389); + if (lookahead == 's') ADVANCE(333); + if (lookahead == 't') ADVANCE(416); + if (lookahead == 'u') ADVANCE(451); + if (lookahead == 'w') ADVANCE(414); + if (lookahead == '|') ADVANCE(520); + if (('+' <= lookahead && lookahead <= '-')) ADVANCE(369); if (lookahead == 'D' || lookahead == 'F' || lookahead == 'L' || lookahead == 'S' || - lookahead == 'l') ADVANCE(328); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(301); + lookahead == 'l') ADVANCE(335); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(305); if (('\t' <= lookahead && lookahead <= '\r') || (28 <= lookahead && lookahead <= ' ') || lookahead == 5760 || @@ -3041,38 +3117,37 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8232 || lookahead == 8233 || lookahead == 8287 || - lookahead == 12288) ADVANCE(285); + lookahead == 12288) ADVANCE(291); if (lookahead != 0 && lookahead != '@' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(518); + (lookahead < '{' || '}' < lookahead)) ADVANCE(532); END_STATE(); case 10: - if (lookahead == '"') ADVANCE(332); - if (lookahead == '#') ADVANCE(289); - if (lookahead == '\'') ADVANCE(533); - if (lookahead == '(') ADVANCE(521); - if (lookahead == ')') ADVANCE(522); - if (lookahead == ',') ADVANCE(537); - if (lookahead == '.') ADVANCE(296); - if (lookahead == '0') ADVANCE(300); - if (lookahead == ':') ADVANCE(329); - if (lookahead == ';') ADVANCE(287); - if (lookahead == '^') ADVANCE(519); - if (lookahead == '`') ADVANCE(534); - if (lookahead == 'c') ADVANCE(425); - if (lookahead == 'd') ADVANCE(315); - if (lookahead == 'l') ADVANCE(314); - if (lookahead == 'n') ADVANCE(413); - if (lookahead == '|') ADVANCE(513); - if (('+' <= lookahead && lookahead <= '-')) ADVANCE(362); + if (lookahead == '"') ADVANCE(339); + if (lookahead == '#') ADVANCE(295); + if (lookahead == '\'') ADVANCE(547); + if (lookahead == '(') ADVANCE(535); + if (lookahead == ')') ADVANCE(536); + if (lookahead == ',') ADVANCE(551); + if (lookahead == '.') ADVANCE(302); + if (lookahead == ':') ADVANCE(336); + if (lookahead == ';') ADVANCE(293); + if (lookahead == '^') ADVANCE(533); + if (lookahead == '`') ADVANCE(548); + if (lookahead == 'c') ADVANCE(432); + if (lookahead == 'd') ADVANCE(322); + if (lookahead == 'l') ADVANCE(321); + if (lookahead == 'n') ADVANCE(420); + if (lookahead == '|') ADVANCE(520); + if (('+' <= lookahead && lookahead <= '-')) ADVANCE(369); if (lookahead == 'D' || lookahead == 'F' || lookahead == 'L' || lookahead == 'S' || lookahead == 'f' || - lookahead == 's') ADVANCE(328); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(301); + lookahead == 's') ADVANCE(335); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(305); if (('\t' <= lookahead && lookahead <= '\r') || (28 <= lookahead && lookahead <= ' ') || lookahead == 5760 || @@ -3081,32 +3156,31 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8232 || lookahead == 8233 || lookahead == 8287 || - lookahead == 12288) ADVANCE(285); + lookahead == 12288) ADVANCE(291); if (lookahead != 0 && lookahead != '@' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(518); + (lookahead < '{' || '}' < lookahead)) ADVANCE(532); END_STATE(); case 11: - if (lookahead == '"') ADVANCE(332); - if (lookahead == '#') ADVANCE(289); - if (lookahead == '\'') ADVANCE(533); - if (lookahead == '(') ADVANCE(521); - if (lookahead == ')') ADVANCE(522); - if (lookahead == ',') ADVANCE(537); - if (lookahead == '.') ADVANCE(296); - if (lookahead == '0') ADVANCE(300); - if (lookahead == ':') ADVANCE(329); - if (lookahead == ';') ADVANCE(287); - if (lookahead == '^') ADVANCE(519); - if (lookahead == '`') ADVANCE(534); - if (lookahead == 'c') ADVANCE(425); - if (lookahead == 'd') ADVANCE(387); - if (lookahead == 'l') ADVANCE(369); - if (lookahead == 'n') ADVANCE(413); - if (lookahead == '|') ADVANCE(513); - if (('+' <= lookahead && lookahead <= '-')) ADVANCE(362); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(301); + if (lookahead == '"') ADVANCE(339); + if (lookahead == '#') ADVANCE(295); + if (lookahead == '\'') ADVANCE(547); + if (lookahead == '(') ADVANCE(535); + if (lookahead == ')') ADVANCE(536); + if (lookahead == ',') ADVANCE(551); + if (lookahead == '.') ADVANCE(302); + if (lookahead == ':') ADVANCE(336); + if (lookahead == ';') ADVANCE(293); + if (lookahead == '^') ADVANCE(533); + if (lookahead == '`') ADVANCE(548); + if (lookahead == 'c') ADVANCE(432); + if (lookahead == 'd') ADVANCE(394); + if (lookahead == 'l') ADVANCE(376); + if (lookahead == 'n') ADVANCE(420); + if (lookahead == '|') ADVANCE(520); + if (('+' <= lookahead && lookahead <= '-')) ADVANCE(369); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(305); if (('\t' <= lookahead && lookahead <= '\r') || (28 <= lookahead && lookahead <= ' ') || lookahead == 5760 || @@ -3115,44 +3189,43 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8232 || lookahead == 8233 || lookahead == 8287 || - lookahead == 12288) ADVANCE(285); + lookahead == 12288) ADVANCE(291); if (lookahead != 0 && lookahead != '@' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(518); + (lookahead < '{' || '}' < lookahead)) ADVANCE(532); END_STATE(); case 12: - if (lookahead == '"') ADVANCE(332); - if (lookahead == '#') ADVANCE(289); - if (lookahead == '\'') ADVANCE(533); - if (lookahead == '(') ADVANCE(521); - if (lookahead == ',') ADVANCE(537); - if (lookahead == '.') ADVANCE(296); - if (lookahead == '0') ADVANCE(300); - if (lookahead == ':') ADVANCE(329); - if (lookahead == ';') ADVANCE(287); - if (lookahead == '=') ADVANCE(602); - if (lookahead == '^') ADVANCE(519); - if (lookahead == '`') ADVANCE(534); - if (lookahead == 'a') ADVANCE(372); - if (lookahead == 'b') ADVANCE(385); - if (lookahead == 'c') ADVANCE(425); - if (lookahead == 'd') ADVANCE(322); - if (lookahead == 'f') ADVANCE(325); - if (lookahead == 'i') ADVANCE(449); - if (lookahead == 'n') ADVANCE(413); - if (lookahead == 'o') ADVANCE(450); - if (lookahead == 't') ADVANCE(411); - if (lookahead == 'u') ADVANCE(477); - if (lookahead == '|') ADVANCE(513); - if (('+' <= lookahead && lookahead <= '-')) ADVANCE(362); + if (lookahead == '"') ADVANCE(339); + if (lookahead == '#') ADVANCE(295); + if (lookahead == '\'') ADVANCE(547); + if (lookahead == '(') ADVANCE(535); + if (lookahead == ',') ADVANCE(551); + if (lookahead == '.') ADVANCE(302); + if (lookahead == ':') ADVANCE(336); + if (lookahead == ';') ADVANCE(293); + if (lookahead == '=') ADVANCE(616); + if (lookahead == '^') ADVANCE(533); + if (lookahead == '`') ADVANCE(548); + if (lookahead == 'a') ADVANCE(379); + if (lookahead == 'b') ADVANCE(392); + if (lookahead == 'c') ADVANCE(432); + if (lookahead == 'd') ADVANCE(329); + if (lookahead == 'f') ADVANCE(332); + if (lookahead == 'i') ADVANCE(456); + if (lookahead == 'n') ADVANCE(420); + if (lookahead == 'o') ADVANCE(457); + if (lookahead == 't') ADVANCE(418); + if (lookahead == 'u') ADVANCE(484); + if (lookahead == '|') ADVANCE(520); + if (('+' <= lookahead && lookahead <= '-')) ADVANCE(369); if (lookahead == 'D' || lookahead == 'F' || lookahead == 'L' || lookahead == 'S' || lookahead == 'l' || - lookahead == 's') ADVANCE(328); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(301); + lookahead == 's') ADVANCE(335); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(305); if (('\t' <= lookahead && lookahead <= '\r') || (28 <= lookahead && lookahead <= ' ') || lookahead == 5760 || @@ -3161,39 +3234,38 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8232 || lookahead == 8233 || lookahead == 8287 || - lookahead == 12288) ADVANCE(285); + lookahead == 12288) ADVANCE(291); if (lookahead != 0 && lookahead != ')' && lookahead != '@' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(518); + (lookahead < '{' || '}' < lookahead)) ADVANCE(532); END_STATE(); case 13: - if (lookahead == '"') ADVANCE(332); - if (lookahead == '#') ADVANCE(289); - if (lookahead == '\'') ADVANCE(533); - if (lookahead == '(') ADVANCE(521); - if (lookahead == ',') ADVANCE(537); - if (lookahead == '.') ADVANCE(296); - if (lookahead == '0') ADVANCE(300); - if (lookahead == ':') ADVANCE(329); - if (lookahead == ';') ADVANCE(287); - if (lookahead == '=') ADVANCE(602); - if (lookahead == '^') ADVANCE(519); - if (lookahead == '`') ADVANCE(534); - if (lookahead == 'a') ADVANCE(372); - if (lookahead == 'b') ADVANCE(385); - if (lookahead == 'c') ADVANCE(425); - if (lookahead == 'd') ADVANCE(465); - if (lookahead == 'f') ADVANCE(481); - if (lookahead == 'i') ADVANCE(449); - if (lookahead == 'n') ADVANCE(413); - if (lookahead == 'o') ADVANCE(450); - if (lookahead == 't') ADVANCE(411); - if (lookahead == 'u') ADVANCE(477); - if (lookahead == '|') ADVANCE(513); - if (('+' <= lookahead && lookahead <= '-')) ADVANCE(362); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(301); + if (lookahead == '"') ADVANCE(339); + if (lookahead == '#') ADVANCE(295); + if (lookahead == '\'') ADVANCE(547); + if (lookahead == '(') ADVANCE(535); + if (lookahead == ',') ADVANCE(551); + if (lookahead == '.') ADVANCE(302); + if (lookahead == ':') ADVANCE(336); + if (lookahead == ';') ADVANCE(293); + if (lookahead == '=') ADVANCE(616); + if (lookahead == '^') ADVANCE(533); + if (lookahead == '`') ADVANCE(548); + if (lookahead == 'a') ADVANCE(379); + if (lookahead == 'b') ADVANCE(392); + if (lookahead == 'c') ADVANCE(432); + if (lookahead == 'd') ADVANCE(472); + if (lookahead == 'f') ADVANCE(488); + if (lookahead == 'i') ADVANCE(456); + if (lookahead == 'n') ADVANCE(420); + if (lookahead == 'o') ADVANCE(457); + if (lookahead == 't') ADVANCE(418); + if (lookahead == 'u') ADVANCE(484); + if (lookahead == '|') ADVANCE(520); + if (('+' <= lookahead && lookahead <= '-')) ADVANCE(369); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(305); if (('\t' <= lookahead && lookahead <= '\r') || (28 <= lookahead && lookahead <= ' ') || lookahead == 5760 || @@ -3202,30 +3274,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8232 || lookahead == 8233 || lookahead == 8287 || - lookahead == 12288) ADVANCE(285); + lookahead == 12288) ADVANCE(291); if (lookahead != 0 && lookahead != ')' && lookahead != '@' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(518); + (lookahead < '{' || '}' < lookahead)) ADVANCE(532); END_STATE(); case 14: - if (lookahead == '"') ADVANCE(332); - if (lookahead == '#') ADVANCE(289); - if (lookahead == '\'') ADVANCE(533); - if (lookahead == '(') ADVANCE(521); - if (lookahead == ',') ADVANCE(537); - if (lookahead == '.') ADVANCE(296); - if (lookahead == '0') ADVANCE(300); - if (lookahead == ':') ADVANCE(329); - if (lookahead == ';') ADVANCE(287); - if (lookahead == '=') ADVANCE(602); - if (lookahead == '^') ADVANCE(519); - if (lookahead == '`') ADVANCE(534); - if (lookahead == 'c') ADVANCE(425); - if (lookahead == 'n') ADVANCE(413); - if (lookahead == '|') ADVANCE(513); - if (('+' <= lookahead && lookahead <= '-')) ADVANCE(362); + if (lookahead == '"') ADVANCE(339); + if (lookahead == '#') ADVANCE(295); + if (lookahead == '\'') ADVANCE(547); + if (lookahead == '(') ADVANCE(535); + if (lookahead == ',') ADVANCE(551); + if (lookahead == '.') ADVANCE(302); + if (lookahead == ':') ADVANCE(336); + if (lookahead == ';') ADVANCE(293); + if (lookahead == '=') ADVANCE(616); + if (lookahead == '^') ADVANCE(533); + if (lookahead == '`') ADVANCE(548); + if (lookahead == 'c') ADVANCE(432); + if (lookahead == 'n') ADVANCE(420); + if (lookahead == '|') ADVANCE(520); + if (('+' <= lookahead && lookahead <= '-')) ADVANCE(369); if (lookahead == 'D' || lookahead == 'F' || lookahead == 'L' || @@ -3233,8 +3304,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 'd' || lookahead == 'f' || lookahead == 'l' || - lookahead == 's') ADVANCE(328); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(301); + lookahead == 's') ADVANCE(335); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(305); if (('\t' <= lookahead && lookahead <= '\r') || (28 <= lookahead && lookahead <= ' ') || lookahead == 5760 || @@ -3243,31 +3314,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8232 || lookahead == 8233 || lookahead == 8287 || - lookahead == 12288) ADVANCE(285); + lookahead == 12288) ADVANCE(291); if (lookahead != 0 && lookahead != ')' && lookahead != '@' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(518); + (lookahead < '{' || '}' < lookahead)) ADVANCE(532); END_STATE(); case 15: - if (lookahead == '"') ADVANCE(332); - if (lookahead == '#') ADVANCE(289); - if (lookahead == '\'') ADVANCE(533); - if (lookahead == '(') ADVANCE(521); - if (lookahead == ',') ADVANCE(537); - if (lookahead == '.') ADVANCE(296); - if (lookahead == '0') ADVANCE(300); - if (lookahead == ':') ADVANCE(329); - if (lookahead == ';') ADVANCE(287); - if (lookahead == '=') ADVANCE(602); - if (lookahead == '^') ADVANCE(519); - if (lookahead == '`') ADVANCE(534); - if (lookahead == 'c') ADVANCE(425); - if (lookahead == 'n') ADVANCE(413); - if (lookahead == '|') ADVANCE(513); - if (('+' <= lookahead && lookahead <= '-')) ADVANCE(362); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(301); + if (lookahead == '"') ADVANCE(339); + if (lookahead == '#') ADVANCE(295); + if (lookahead == '\'') ADVANCE(547); + if (lookahead == '(') ADVANCE(535); + if (lookahead == ',') ADVANCE(551); + if (lookahead == '.') ADVANCE(302); + if (lookahead == ':') ADVANCE(336); + if (lookahead == ';') ADVANCE(293); + if (lookahead == '=') ADVANCE(616); + if (lookahead == '^') ADVANCE(533); + if (lookahead == '`') ADVANCE(548); + if (lookahead == 'c') ADVANCE(432); + if (lookahead == 'n') ADVANCE(420); + if (lookahead == '|') ADVANCE(520); + if (('+' <= lookahead && lookahead <= '-')) ADVANCE(369); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(305); if (('\t' <= lookahead && lookahead <= '\r') || (28 <= lookahead && lookahead <= ' ') || lookahead == 5760 || @@ -3276,43 +3346,42 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8232 || lookahead == 8233 || lookahead == 8287 || - lookahead == 12288) ADVANCE(285); + lookahead == 12288) ADVANCE(291); if (lookahead != 0 && lookahead != ')' && lookahead != '@' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(518); + (lookahead < '{' || '}' < lookahead)) ADVANCE(532); END_STATE(); case 16: - if (lookahead == '"') ADVANCE(332); - if (lookahead == '#') ADVANCE(291); - if (lookahead == '\'') ADVANCE(533); - if (lookahead == '(') ADVANCE(521); - if (lookahead == ',') ADVANCE(537); - if (lookahead == '.') ADVANCE(296); - if (lookahead == '0') ADVANCE(298); - if (lookahead == ':') ADVANCE(329); - if (lookahead == '\\') ADVANCE(280); - if (lookahead == '^') ADVANCE(519); - if (lookahead == '`') ADVANCE(534); - if (lookahead == 'c') ADVANCE(425); - if (lookahead == 'n') ADVANCE(413); - if (lookahead == '{') ADVANCE(523); - if (lookahead == '|') ADVANCE(513); - if (('+' <= lookahead && lookahead <= '-')) ADVANCE(362); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(299); - if (!aux_sym_sym_lit_token1_character_set_1(lookahead)) ADVANCE(518); + if (lookahead == '"') ADVANCE(339); + if (lookahead == '#') ADVANCE(297); + if (lookahead == '\'') ADVANCE(547); + if (lookahead == '(') ADVANCE(535); + if (lookahead == ',') ADVANCE(551); + if (lookahead == '.') ADVANCE(302); + if (lookahead == ':') ADVANCE(336); + if (lookahead == '\\') ADVANCE(286); + if (lookahead == '^') ADVANCE(533); + if (lookahead == '`') ADVANCE(548); + if (lookahead == 'c') ADVANCE(432); + if (lookahead == 'n') ADVANCE(420); + if (lookahead == '{') ADVANCE(537); + if (lookahead == '|') ADVANCE(520); + if (('+' <= lookahead && lookahead <= '-')) ADVANCE(369); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(304); + if (!aux_sym_sym_lit_token1_character_set_1(lookahead)) ADVANCE(532); END_STATE(); case 17: - if (lookahead == '"') ADVANCE(332); - if (lookahead == '#') ADVANCE(290); - if (lookahead == '\'') ADVANCE(533); - if (lookahead == '(') ADVANCE(521); + if (lookahead == '"') ADVANCE(339); + if (lookahead == '#') ADVANCE(296); + if (lookahead == '\'') ADVANCE(547); + if (lookahead == '(') ADVANCE(535); if (lookahead == ',') ADVANCE(39); - if (lookahead == ':') ADVANCE(329); - if (lookahead == ';') ADVANCE(287); - if (lookahead == '^') ADVANCE(519); - if (lookahead == '{') ADVANCE(523); + if (lookahead == ':') ADVANCE(336); + if (lookahead == ';') ADVANCE(293); + if (lookahead == '^') ADVANCE(533); + if (lookahead == '{') ADVANCE(537); if (('\t' <= lookahead && lookahead <= '\r') || (28 <= lookahead && lookahead <= ' ') || lookahead == 5760 || @@ -3321,23 +3390,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8232 || lookahead == 8233 || lookahead == 8287 || - lookahead == 12288) ADVANCE(285); + lookahead == 12288) ADVANCE(291); if (lookahead != 0 && lookahead != ')' && lookahead != '@' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - lookahead != '}') ADVANCE(518); + lookahead != '}') ADVANCE(532); END_STATE(); case 18: - if (lookahead == '"') ADVANCE(332); + if (lookahead == '"') ADVANCE(339); if (lookahead == '#') ADVANCE(5); - if (lookahead == '(') ADVANCE(521); - if (lookahead == ',') ADVANCE(536); - if (lookahead == ':') ADVANCE(329); - if (lookahead == ';') ADVANCE(287); - if (lookahead == '^') ADVANCE(519); - if (lookahead == '{') ADVANCE(523); + if (lookahead == '(') ADVANCE(535); + if (lookahead == ',') ADVANCE(550); + if (lookahead == ':') ADVANCE(336); + if (lookahead == ';') ADVANCE(293); + if (lookahead == '^') ADVANCE(533); + if (lookahead == '{') ADVANCE(537); if (lookahead == 'D' || lookahead == 'F' || lookahead == 'L' || @@ -3345,7 +3414,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 'd' || lookahead == 'f' || lookahead == 'l' || - lookahead == 's') ADVANCE(328); + lookahead == 's') ADVANCE(335); if (('\t' <= lookahead && lookahead <= '\r') || (28 <= lookahead && lookahead <= ' ') || lookahead == 5760 || @@ -3354,23 +3423,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8232 || lookahead == 8233 || lookahead == 8287 || - lookahead == 12288) ADVANCE(285); + lookahead == 12288) ADVANCE(291); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != '@' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - lookahead != '}') ADVANCE(518); + lookahead != '}') ADVANCE(532); END_STATE(); case 19: - if (lookahead == '"') ADVANCE(332); + if (lookahead == '"') ADVANCE(339); if (lookahead == '#') ADVANCE(5); - if (lookahead == '(') ADVANCE(521); - if (lookahead == ',') ADVANCE(536); - if (lookahead == ':') ADVANCE(329); - if (lookahead == ';') ADVANCE(287); - if (lookahead == '^') ADVANCE(519); - if (lookahead == '{') ADVANCE(523); + if (lookahead == '(') ADVANCE(535); + if (lookahead == ',') ADVANCE(550); + if (lookahead == ':') ADVANCE(336); + if (lookahead == ';') ADVANCE(293); + if (lookahead == '^') ADVANCE(533); + if (lookahead == '{') ADVANCE(537); if (('\t' <= lookahead && lookahead <= '\r') || (28 <= lookahead && lookahead <= ' ') || lookahead == 5760 || @@ -3379,58 +3448,58 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8232 || lookahead == 8233 || lookahead == 8287 || - lookahead == 12288) ADVANCE(285); + lookahead == 12288) ADVANCE(291); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != '@' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - lookahead != '}') ADVANCE(518); + lookahead != '}') ADVANCE(532); END_STATE(); case 20: - if (lookahead == '"') ADVANCE(332); - if (lookahead == '#') ADVANCE(336); + if (lookahead == '"') ADVANCE(339); + if (lookahead == '#') ADVANCE(343); if (lookahead == '\\') ADVANCE(21); - if (lookahead == '~') ADVANCE(340); - if (lookahead != 0) ADVANCE(338); + if (lookahead == '~') ADVANCE(347); + if (lookahead != 0) ADVANCE(345); END_STATE(); case 21: - if (lookahead == '"') ADVANCE(339); + if (lookahead == '"') ADVANCE(346); END_STATE(); case 22: if (lookahead == '"') ADVANCE(23); if (lookahead == '#') ADVANCE(6); - if (lookahead == '(') ADVANCE(521); - if (lookahead == ')') ADVANCE(522); - if (lookahead == ',') ADVANCE(536); - if (lookahead == '/') ADVANCE(565); - if (lookahead == ':') ADVANCE(329); - if (lookahead == ';') ADVANCE(287); - if (lookahead == '=') ADVANCE(601); - if (lookahead == '\\') ADVANCE(280); - if (lookahead == '^') ADVANCE(519); + if (lookahead == '(') ADVANCE(535); + if (lookahead == ')') ADVANCE(536); + if (lookahead == ',') ADVANCE(550); + if (lookahead == '/') ADVANCE(579); + if (lookahead == ':') ADVANCE(336); + if (lookahead == ';') ADVANCE(293); + if (lookahead == '=') ADVANCE(615); + if (lookahead == '\\') ADVANCE(286); + if (lookahead == '^') ADVANCE(533); if (lookahead == 'a') ADVANCE(55); if (lookahead == 'b') ADVANCE(80); - if (lookahead == 'c') ADVANCE(150); - if (lookahead == 'd') ADVANCE(320); - if (lookahead == 'e') ADVANCE(163); - if (lookahead == 'f') ADVANCE(318); + if (lookahead == 'c') ADVANCE(149); + if (lookahead == 'd') ADVANCE(327); + if (lookahead == 'e') ADVANCE(162); + if (lookahead == 'f') ADVANCE(325); if (lookahead == 'i') ADVANCE(107); if (lookahead == 'm') ADVANCE(43); if (lookahead == 'n') ADVANCE(60); - if (lookahead == 'o') ADVANCE(177); + if (lookahead == 'o') ADVANCE(176); if (lookahead == 'r') ADVANCE(81); - if (lookahead == 's') ADVANCE(327); + if (lookahead == 's') ADVANCE(334); if (lookahead == 't') ADVANCE(124); - if (lookahead == 'u') ADVANCE(179); + if (lookahead == 'u') ADVANCE(178); if (lookahead == 'w') ADVANCE(119); - if (lookahead == '{') ADVANCE(523); + if (lookahead == '{') ADVANCE(537); if (lookahead == 'D' || lookahead == 'F' || lookahead == 'L' || lookahead == 'S' || - lookahead == 'l') ADVANCE(313); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(273); + lookahead == 'l') ADVANCE(320); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(275); if (('\t' <= lookahead && lookahead <= '\r') || (28 <= lookahead && lookahead <= ' ') || lookahead == 5760 || @@ -3439,42 +3508,46 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8232 || lookahead == 8233 || lookahead == 8287 || - lookahead == 12288) ADVANCE(285); + lookahead == 12288) ADVANCE(291); END_STATE(); case 23: - if (lookahead == '"') ADVANCE(527); - if (lookahead == '\\') ADVANCE(281); + if (lookahead == '"') ADVANCE(541); + if (lookahead == '\\') ADVANCE(287); if (lookahead != 0) ADVANCE(23); END_STATE(); case 24: - if (lookahead == '#') ADVANCE(538); - if (lookahead != 0) ADVANCE(270); + if (lookahead == '#') ADVANCE(552); + if (lookahead != 0) ADVANCE(268); END_STATE(); case 25: - if (lookahead == '#') ADVANCE(6); - if (lookahead == '(') ADVANCE(521); - if (lookahead == ')') ADVANCE(522); - if (lookahead == ',') ADVANCE(536); - if (lookahead == '0') ADVANCE(302); - if (lookahead == ';') ADVANCE(287); - if (lookahead == '=') ADVANCE(601); - if (lookahead == '^') ADVANCE(519); - if (lookahead == 'a') ADVANCE(152); - if (lookahead == 'c') ADVANCE(150); - if (lookahead == 'd') ADVANCE(92); - if (lookahead == 'e') ADVANCE(163); - if (lookahead == 'f') ADVANCE(132); + if (lookahead == '#') ADVANCE(7); + if (lookahead == '(') ADVANCE(535); + if (lookahead == ')') ADVANCE(536); + if (lookahead == ',') ADVANCE(550); + if (lookahead == ':') ADVANCE(336); + if (lookahead == ';') ADVANCE(293); + if (lookahead == '=') ADVANCE(615); + if (lookahead == '^') ADVANCE(533); + if (lookahead == 'a') ADVANCE(151); + if (lookahead == 'c') ADVANCE(149); + if (lookahead == 'd') ADVANCE(328); + if (lookahead == 'e') ADVANCE(162); + if (lookahead == 'f') ADVANCE(324); if (lookahead == 'i') ADVANCE(108); - if (lookahead == 'l') ADVANCE(212); if (lookahead == 'm') ADVANCE(43); if (lookahead == 'n') ADVANCE(60); if (lookahead == 'r') ADVANCE(81); - if (lookahead == 's') ADVANCE(251); + if (lookahead == 's') ADVANCE(334); if (lookahead == 't') ADVANCE(125); - if (lookahead == 'u') ADVANCE(178); + if (lookahead == 'u') ADVANCE(177); if (lookahead == 'w') ADVANCE(119); - if (('+' <= lookahead && lookahead <= '-')) ADVANCE(38); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(303); + if (('+' <= lookahead && lookahead <= '-')) ADVANCE(27); + if (lookahead == 'D' || + lookahead == 'F' || + lookahead == 'L' || + lookahead == 'S' || + lookahead == 'l') ADVANCE(320); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(306); if (('\t' <= lookahead && lookahead <= '\r') || (28 <= lookahead && lookahead <= ' ') || lookahead == 5760 || @@ -3483,14 +3556,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8232 || lookahead == 8233 || lookahead == 8287 || - lookahead == 12288) ADVANCE(285); + lookahead == 12288) ADVANCE(291); END_STATE(); case 26: - if (lookahead == '#') ADVANCE(6); - if (lookahead == '(') ADVANCE(521); - if (lookahead == ',') ADVANCE(536); - if (lookahead == ';') ADVANCE(287); - if (lookahead == '^') ADVANCE(519); + if (lookahead == '#') ADVANCE(7); + if (lookahead == '(') ADVANCE(535); + if (lookahead == ',') ADVANCE(550); + if (lookahead == ';') ADVANCE(293); + if (lookahead == '=') ADVANCE(615); + if (lookahead == '^') ADVANCE(533); + if (lookahead == 'c') ADVANCE(148); + if (lookahead == 'i') ADVANCE(198); + if (('+' <= lookahead && lookahead <= '-')) ADVANCE(27); if (lookahead == 'D' || lookahead == 'F' || lookahead == 'L' || @@ -3498,7 +3575,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 'd' || lookahead == 'f' || lookahead == 'l' || - lookahead == 's') ADVANCE(313); + lookahead == 's') ADVANCE(320); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(306); if (('\t' <= lookahead && lookahead <= '\r') || (28 <= lookahead && lookahead <= ' ') || lookahead == 5760 || @@ -3507,64 +3585,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8232 || lookahead == 8233 || lookahead == 8287 || - lookahead == 12288) ADVANCE(285); + lookahead == 12288) ADVANCE(291); END_STATE(); case 27: - if (lookahead == '#') ADVANCE(290); - if (lookahead == '\'') ADVANCE(533); - if (lookahead == '(') ADVANCE(521); - if (lookahead == ')') ADVANCE(522); - if (lookahead == ',') ADVANCE(39); - if (lookahead == '0') ADVANCE(302); - if (lookahead == ':') ADVANCE(329); - if (lookahead == ';') ADVANCE(287); - if (lookahead == '=') ADVANCE(601); - if (lookahead == '^') ADVANCE(519); - if (lookahead == 'a') ADVANCE(152); - if (lookahead == 'c') ADVANCE(150); - if (lookahead == 'd') ADVANCE(321); - if (lookahead == 'e') ADVANCE(163); - if (lookahead == 'f') ADVANCE(317); - if (lookahead == 'i') ADVANCE(108); - if (lookahead == 'm') ADVANCE(43); - if (lookahead == 'n') ADVANCE(60); - if (lookahead == 'r') ADVANCE(81); - if (lookahead == 's') ADVANCE(327); - if (lookahead == 't') ADVANCE(125); - if (lookahead == 'u') ADVANCE(178); - if (lookahead == 'w') ADVANCE(119); - if (lookahead == '{') ADVANCE(523); - if (('+' <= lookahead && lookahead <= '-')) ADVANCE(38); - if (lookahead == 'D' || - lookahead == 'F' || - lookahead == 'L' || - lookahead == 'S' || - lookahead == 'l') ADVANCE(313); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(303); - 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(285); + if (lookahead == '#') ADVANCE(276); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(306); END_STATE(); case 28: - if (lookahead == '#') ADVANCE(290); - if (lookahead == '\'') ADVANCE(533); - if (lookahead == '(') ADVANCE(521); - if (lookahead == ')') ADVANCE(522); + if (lookahead == '#') ADVANCE(296); + if (lookahead == '\'') ADVANCE(547); + if (lookahead == '(') ADVANCE(535); + if (lookahead == ')') ADVANCE(536); if (lookahead == ',') ADVANCE(39); - if (lookahead == '0') ADVANCE(302); - if (lookahead == ';') ADVANCE(287); - if (lookahead == '=') ADVANCE(601); - if (lookahead == '^') ADVANCE(519); - if (lookahead == 'c') ADVANCE(149); - if (lookahead == 'i') ADVANCE(199); - if (lookahead == '{') ADVANCE(523); - if (('+' <= lookahead && lookahead <= '-')) ADVANCE(38); + if (lookahead == ';') ADVANCE(293); + if (lookahead == '^') ADVANCE(533); + if (lookahead == '{') ADVANCE(537); if (lookahead == 'D' || lookahead == 'F' || lookahead == 'L' || @@ -3572,8 +3607,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 'd' || lookahead == 'f' || lookahead == 'l' || - lookahead == 's') ADVANCE(313); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(303); + lookahead == 's') ADVANCE(320); if (('\t' <= lookahead && lookahead <= '\r') || (28 <= lookahead && lookahead <= ' ') || lookahead == 5760 || @@ -3582,28 +3616,33 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8232 || lookahead == 8233 || lookahead == 8287 || - lookahead == 12288) ADVANCE(285); + lookahead == 12288) ADVANCE(291); END_STATE(); case 29: - if (lookahead == '#') ADVANCE(7); - if (lookahead == ':') ADVANCE(329); - if (lookahead == ';') ADVANCE(287); - if (lookahead == '=') ADVANCE(601); + if (lookahead == '#') ADVANCE(296); + if (lookahead == '\'') ADVANCE(547); + if (lookahead == '(') ADVANCE(535); + if (lookahead == ',') ADVANCE(39); + if (lookahead == ':') ADVANCE(336); + if (lookahead == ';') ADVANCE(293); + if (lookahead == '=') ADVANCE(615); + if (lookahead == '^') ADVANCE(533); if (lookahead == 'a') ADVANCE(54); if (lookahead == 'b') ADVANCE(80); - if (lookahead == 'c') ADVANCE(149); - if (lookahead == 'd') ADVANCE(323); - if (lookahead == 'f') ADVANCE(324); - if (lookahead == 'i') ADVANCE(187); - if (lookahead == 'o') ADVANCE(177); + if (lookahead == 'c') ADVANCE(148); + if (lookahead == 'd') ADVANCE(330); + if (lookahead == 'f') ADVANCE(331); + if (lookahead == 'i') ADVANCE(185); + if (lookahead == 'o') ADVANCE(176); if (lookahead == 't') ADVANCE(126); - if (lookahead == 'u') ADVANCE(215); + if (lookahead == 'u') ADVANCE(214); + if (lookahead == '{') ADVANCE(537); if (lookahead == 'D' || lookahead == 'F' || lookahead == 'L' || lookahead == 'S' || lookahead == 'l' || - lookahead == 's') ADVANCE(313); + lookahead == 's') ADVANCE(320); if (('\t' <= lookahead && lookahead <= '\r') || (28 <= lookahead && lookahead <= ' ') || lookahead == 5760 || @@ -3612,141 +3651,147 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8232 || lookahead == 8233 || lookahead == 8287 || - lookahead == 12288) ADVANCE(285); + lookahead == 12288) ADVANCE(291); END_STATE(); case 30: - if (lookahead == '#') ADVANCE(292); - if (lookahead == '\'') ADVANCE(533); - if (lookahead == '(') ADVANCE(521); + if (lookahead == '#') ADVANCE(298); + if (lookahead == '\'') ADVANCE(547); + if (lookahead == '(') ADVANCE(535); if (lookahead == ',') ADVANCE(39); - if (lookahead == '=') ADVANCE(602); - if (lookahead == '^') ADVANCE(519); - if (lookahead == 'a') ADVANCE(372); - if (lookahead == 'b') ADVANCE(385); - if (lookahead == 'd') ADVANCE(465); - if (lookahead == 'f') ADVANCE(481); - if (lookahead == 'i') ADVANCE(449); - if (lookahead == 'o') ADVANCE(450); - if (lookahead == 't') ADVANCE(411); - if (lookahead == 'u') ADVANCE(477); - if (lookahead == '{') ADVANCE(523); - if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(518); + if (lookahead == '=') ADVANCE(616); + if (lookahead == '^') ADVANCE(533); + if (lookahead == 'a') ADVANCE(379); + if (lookahead == 'b') ADVANCE(392); + if (lookahead == 'd') ADVANCE(472); + if (lookahead == 'f') ADVANCE(488); + if (lookahead == 'i') ADVANCE(456); + if (lookahead == 'o') ADVANCE(457); + if (lookahead == 't') ADVANCE(418); + if (lookahead == 'u') ADVANCE(484); + if (lookahead == '{') ADVANCE(537); + if (!aux_sym_sym_lit_token1_character_set_2(lookahead)) ADVANCE(532); END_STATE(); case 31: - if (lookahead == '#') ADVANCE(269); - if (lookahead == '/') ADVANCE(565); - if (lookahead == ':') ADVANCE(329); - if (!aux_sym__sym_lit_without_slash_token1_character_set_1(lookahead)) ADVANCE(657); + if (lookahead == '#') ADVANCE(267); + if (lookahead == '/') ADVANCE(579); + if (lookahead == ':') ADVANCE(336); + if (!aux_sym__sym_lit_without_slash_token1_character_set_1(lookahead)) ADVANCE(671); END_STATE(); case 32: - if (lookahead == '#') ADVANCE(269); - if (lookahead == '=') ADVANCE(602); - if (!aux_sym_sym_lit_token1_character_set_3(lookahead)) ADVANCE(518); + if (lookahead == '#') ADVANCE(267); + if (lookahead == '=') ADVANCE(616); + if (!aux_sym_sym_lit_token1_character_set_3(lookahead)) ADVANCE(532); END_STATE(); case 33: - if (lookahead == '#') ADVANCE(269); - if (lookahead == 'c') ADVANCE(658); - if (!aux_sym__sym_lit_without_slash_token1_character_set_2(lookahead)) ADVANCE(657); + if (lookahead == '#') ADVANCE(267); + if (lookahead == 'c') ADVANCE(672); + if (!aux_sym__sym_lit_without_slash_token1_character_set_2(lookahead)) ADVANCE(671); END_STATE(); case 34: - if (lookahead == '#') ADVANCE(269); - if (lookahead == 'd') ADVANCE(387); - if (lookahead == 'l') ADVANCE(472); - if (!aux_sym_sym_lit_token1_character_set_3(lookahead)) ADVANCE(518); + if (lookahead == '#') ADVANCE(267); + if (lookahead == 'd') ADVANCE(394); + if (lookahead == 'l') ADVANCE(479); + if (!aux_sym_sym_lit_token1_character_set_3(lookahead)) ADVANCE(532); END_STATE(); case 35: - if (lookahead == '#') ADVANCE(542); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(540); + if (lookahead == '#') ADVANCE(267); + if (lookahead == 'd') ADVANCE(92); + if (lookahead == 'l') ADVANCE(211); END_STATE(); case 36: - if (lookahead == '-') ADVANCE(144); + if (lookahead == '#') ADVANCE(556); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(554); END_STATE(); case 37: - if (lookahead == '-') ADVANCE(235); + if (lookahead == '-') ADVANCE(143); END_STATE(); case 38: - if (lookahead == '0') ADVANCE(302); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(303); + if (lookahead == '-') ADVANCE(234); END_STATE(); case 39: - if (lookahead == '@') ADVANCE(535); + if (lookahead == '@') ADVANCE(549); END_STATE(); case 40: - if (lookahead == 'A') ADVANCE(525); - if (lookahead == 'a') ADVANCE(526); + if (lookahead == 'A') ADVANCE(539); + if (lookahead == 'a') ADVANCE(540); + if (lookahead == '#' || + lookahead == '=') ADVANCE(673); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(285); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(270); END_STATE(); case 41: if (lookahead == 'a') ADVANCE(59); END_STATE(); case 42: - if (lookahead == 'a') ADVANCE(236); + if (lookahead == 'a') ADVANCE(235); END_STATE(); case 43: - if (lookahead == 'a') ADVANCE(262); - if (lookahead == 'i') ADVANCE(188); + if (lookahead == 'a') ADVANCE(260); + if (lookahead == 'i') ADVANCE(187); END_STATE(); case 44: if (lookahead == 'a') ADVANCE(62); END_STATE(); case 45: - if (lookahead == 'a') ADVANCE(267); + if (lookahead == 'a') ADVANCE(265); END_STATE(); case 46: - if (lookahead == 'a') ADVANCE(147); + if (lookahead == 'a') ADVANCE(146); END_STATE(); case 47: if (lookahead == 'a') ADVANCE(64); - if (lookahead == 'e') ADVANCE(247); + if (lookahead == 'e') ADVANCE(246); END_STATE(); case 48: - if (lookahead == 'a') ADVANCE(242); + if (lookahead == 'a') ADVANCE(241); END_STATE(); case 49: if (lookahead == 'a') ADVANCE(63); END_STATE(); case 50: - if (lookahead == 'a') ADVANCE(158); + if (lookahead == 'a') ADVANCE(157); END_STATE(); case 51: - if (lookahead == 'a') ADVANCE(159); + if (lookahead == 'a') ADVANCE(158); END_STATE(); case 52: - if (lookahead == 'b') ADVANCE(207); + if (lookahead == 'b') ADVANCE(206); END_STATE(); case 53: - if (lookahead == 'b') ADVANCE(341); + if (lookahead == 'b') ADVANCE(348); END_STATE(); case 54: - if (lookahead == 'b') ADVANCE(213); - if (lookahead == 'c') ADVANCE(223); + if (lookahead == 'b') ADVANCE(212); + if (lookahead == 'c') ADVANCE(222); END_STATE(); case 55: - if (lookahead == 'b') ADVANCE(213); - if (lookahead == 'c') ADVANCE(223); - if (lookahead == 'l') ADVANCE(258); + if (lookahead == 'b') ADVANCE(212); + if (lookahead == 'c') ADVANCE(222); + if (lookahead == 'l') ADVANCE(256); if (lookahead == 'n') ADVANCE(67); - if (lookahead == 'p') ADVANCE(216); - if (lookahead == 's') ADVANCE(610); + if (lookahead == 'p') ADVANCE(215); + if (lookahead == 's') ADVANCE(624); END_STATE(); case 56: - if (lookahead == 'c') ADVANCE(143); + if (lookahead == 'c') ADVANCE(142); END_STATE(); case 57: - if (lookahead == 'c') ADVANCE(604); + if (lookahead == 'c') ADVANCE(618); END_STATE(); case 58: - if (lookahead == 'c') ADVANCE(650); + if (lookahead == 'c') ADVANCE(664); END_STATE(); case 59: if (lookahead == 'c') ADVANCE(117); END_STATE(); case 60: - if (lookahead == 'c') ADVANCE(211); - if (lookahead == 'e') ADVANCE(254); + if (lookahead == 'c') ADVANCE(210); + if (lookahead == 'e') ADVANCE(252); END_STATE(); case 61: - if (lookahead == 'c') ADVANCE(241); + if (lookahead == 'c') ADVANCE(240); END_STATE(); case 62: if (lookahead == 'c') ADVANCE(79); @@ -3755,26 +3800,26 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'c') ADVANCE(78); END_STATE(); case 64: - if (lookahead == 'c') ADVANCE(226); + if (lookahead == 'c') ADVANCE(225); END_STATE(); case 65: - if (lookahead == 'd') ADVANCE(357); + if (lookahead == 'd') ADVANCE(364); END_STATE(); case 66: - if (lookahead == 'd') ADVANCE(341); + if (lookahead == 'd') ADVANCE(348); END_STATE(); case 67: - if (lookahead == 'd') ADVANCE(608); + if (lookahead == 'd') ADVANCE(622); END_STATE(); case 68: - if (lookahead == 'd') ADVANCE(604); + if (lookahead == 'd') ADVANCE(618); END_STATE(); case 69: - if (lookahead == 'd') ADVANCE(652); + if (lookahead == 'd') ADVANCE(666); END_STATE(); case 70: - if (lookahead == 'e') ADVANCE(257); - if (lookahead == 'u') ADVANCE(153); + if (lookahead == 'e') ADVANCE(255); + if (lookahead == 'u') ADVANCE(152); END_STATE(); case 71: if (lookahead == 'e') ADVANCE(110); @@ -3783,7 +3828,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'e') ADVANCE(65); END_STATE(); case 73: - if (lookahead == 'e') ADVANCE(356); + if (lookahead == 'e') ADVANCE(363); END_STATE(); case 74: if (lookahead == 'e') ADVANCE(41); @@ -3793,107 +3838,106 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'e') ADVANCE(2); END_STATE(); case 76: - if (lookahead == 'e') ADVANCE(263); + if (lookahead == 'e') ADVANCE(261); END_STATE(); case 77: if (lookahead == 'e') ADVANCE(4); END_STATE(); case 78: - if (lookahead == 'e') ADVANCE(341); + if (lookahead == 'e') ADVANCE(348); END_STATE(); case 79: - if (lookahead == 'e') ADVANCE(358); + if (lookahead == 'e') ADVANCE(365); END_STATE(); case 80: - if (lookahead == 'e') ADVANCE(134); - if (lookahead == 'y') ADVANCE(597); + if (lookahead == 'e') ADVANCE(133); + if (lookahead == 'y') ADVANCE(611); END_STATE(); case 81: - if (lookahead == 'e') ADVANCE(217); + if (lookahead == 'e') ADVANCE(216); END_STATE(); case 82: - if (lookahead == 'e') ADVANCE(183); + if (lookahead == 'e') ADVANCE(182); END_STATE(); case 83: - if (lookahead == 'e') ADVANCE(635); + if (lookahead == 'e') ADVANCE(649); END_STATE(); case 84: - if (lookahead == 'e') ADVANCE(583); + if (lookahead == 'e') ADVANCE(597); END_STATE(); case 85: - if (lookahead == 'e') ADVANCE(604); + if (lookahead == 'e') ADVANCE(618); END_STATE(); case 86: - if (lookahead == 'e') ADVANCE(617); + if (lookahead == 'e') ADVANCE(631); END_STATE(); case 87: - if (lookahead == 'e') ADVANCE(567); + if (lookahead == 'e') ADVANCE(581); END_STATE(); case 88: - if (lookahead == 'e') ADVANCE(174); + if (lookahead == 'e') ADVANCE(173); END_STATE(); case 89: if (lookahead == 'e') ADVANCE(66); END_STATE(); case 90: - if (lookahead == 'e') ADVANCE(238); + if (lookahead == 'e') ADVANCE(237); END_STATE(); case 91: if (lookahead == 'e') ADVANCE(72); END_STATE(); case 92: if (lookahead == 'e') ADVANCE(109); - if (lookahead == 'o') ADVANCE(614); END_STATE(); case 93: if (lookahead == 'e') ADVANCE(61); END_STATE(); case 94: - if (lookahead == 'e') ADVANCE(136); + if (lookahead == 'e') ADVANCE(135); END_STATE(); case 95: if (lookahead == 'e') ADVANCE(48); END_STATE(); case 96: - if (lookahead == 'e') ADVANCE(220); + if (lookahead == 'e') ADVANCE(219); END_STATE(); case 97: - if (lookahead == 'e') ADVANCE(225); + if (lookahead == 'e') ADVANCE(224); END_STATE(); case 98: if (lookahead == 'e') ADVANCE(89); END_STATE(); case 99: - if (lookahead == 'e') ADVANCE(184); - if (lookahead == 'i') ADVANCE(162); + if (lookahead == 'e') ADVANCE(183); + if (lookahead == 'i') ADVANCE(161); END_STATE(); case 100: - if (lookahead == 'e') ADVANCE(192); + if (lookahead == 'e') ADVANCE(191); END_STATE(); case 101: - if (lookahead == 'e') ADVANCE(182); + if (lookahead == 'e') ADVANCE(181); END_STATE(); case 102: - if (lookahead == 'e') ADVANCE(228); + if (lookahead == 'e') ADVANCE(227); END_STATE(); case 103: - if (lookahead == 'e') ADVANCE(239); + if (lookahead == 'e') ADVANCE(238); END_STATE(); case 104: - if (lookahead == 'e') ADVANCE(198); + if (lookahead == 'e') ADVANCE(197); END_STATE(); case 105: - if (lookahead == 'e') ADVANCE(261); + if (lookahead == 'e') ADVANCE(259); END_STATE(); case 106: - if (lookahead == 'f') ADVANCE(580); + if (lookahead == 'f') ADVANCE(594); END_STATE(); case 107: - if (lookahead == 'f') ADVANCE(625); - if (lookahead == 'n') ADVANCE(572); + if (lookahead == 'f') ADVANCE(639); + if (lookahead == 'n') ADVANCE(586); END_STATE(); case 108: - if (lookahead == 'f') ADVANCE(625); + if (lookahead == 'f') ADVANCE(639); if (lookahead == 'n') ADVANCE(130); END_STATE(); case 109: @@ -3903,20 +3947,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'f') ADVANCE(91); END_STATE(); case 111: - if (lookahead == 'f') ADVANCE(229); - if (lookahead == 't') ADVANCE(201); + if (lookahead == 'f') ADVANCE(228); + if (lookahead == 't') ADVANCE(200); END_STATE(); case 112: if (lookahead == 'f') ADVANCE(98); END_STATE(); case 113: - if (lookahead == 'g') ADVANCE(576); + if (lookahead == 'g') ADVANCE(590); END_STATE(); case 114: - if (lookahead == 'g') ADVANCE(578); + if (lookahead == 'g') ADVANCE(592); END_STATE(); case 115: - if (lookahead == 'g') ADVANCE(603); + if (lookahead == 'g') ADVANCE(617); END_STATE(); case 116: if (lookahead == 'g') ADVANCE(104); @@ -3927,69 +3971,68 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'h') ADVANCE(2); END_STATE(); case 118: - if (lookahead == 'h') ADVANCE(36); + if (lookahead == 'h') ADVANCE(37); END_STATE(); case 119: if (lookahead == 'h') ADVANCE(99); - if (lookahead == 'i') ADVANCE(246); + if (lookahead == 'i') ADVANCE(245); END_STATE(); case 120: - if (lookahead == 'h') ADVANCE(612); + if (lookahead == 'h') ADVANCE(626); END_STATE(); case 121: if (lookahead == 'h') ADVANCE(42); - if (lookahead == 'p') ADVANCE(224); + if (lookahead == 'p') ADVANCE(223); END_STATE(); case 122: if (lookahead == 'h') ADVANCE(75); END_STATE(); case 123: - if (lookahead == 'h') ADVANCE(208); + if (lookahead == 'h') ADVANCE(207); END_STATE(); case 124: if (lookahead == 'h') ADVANCE(82); - if (lookahead == 'o') ADVANCE(587); + if (lookahead == 'o') ADVANCE(601); END_STATE(); case 125: if (lookahead == 'h') ADVANCE(102); END_STATE(); case 126: if (lookahead == 'h') ADVANCE(101); - if (lookahead == 'o') ADVANCE(587); + if (lookahead == 'o') ADVANCE(601); END_STATE(); case 127: - if (lookahead == 'i') ADVANCE(173); + if (lookahead == 'i') ADVANCE(172); END_STATE(); case 128: - if (lookahead == 'i') ADVANCE(268); + if (lookahead == 'i') ADVANCE(266); END_STATE(); case 129: - if (lookahead == 'i') ADVANCE(175); + if (lookahead == 'i') ADVANCE(174); if (lookahead == 'o') ADVANCE(106); END_STATE(); case 130: - if (lookahead == 'i') ADVANCE(245); - if (lookahead == 't') ADVANCE(202); + if (lookahead == 'i') ADVANCE(244); + if (lookahead == 't') ADVANCE(201); END_STATE(); case 131: - if (lookahead == 'i') ADVANCE(171); + if (lookahead == 'i') ADVANCE(170); END_STATE(); case 132: - if (lookahead == 'i') ADVANCE(194); - if (lookahead == 'o') ADVANCE(219); + if (lookahead == 'i') ADVANCE(58); END_STATE(); case 133: - if (lookahead == 'i') ADVANCE(58); + if (lookahead == 'i') ADVANCE(179); + if (lookahead == 'l') ADVANCE(203); END_STATE(); case 134: - if (lookahead == 'i') ADVANCE(180); - if (lookahead == 'l') ADVANCE(204); + if (lookahead == 'i') ADVANCE(150); END_STATE(); case 135: - if (lookahead == 'i') ADVANCE(151); + if (lookahead == 'i') ADVANCE(233); END_STATE(); case 136: - if (lookahead == 'i') ADVANCE(234); + if (lookahead == 'i') ADVANCE(188); END_STATE(); case 137: if (lookahead == 'i') ADVANCE(189); @@ -3998,86 +4041,86 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'i') ADVANCE(190); END_STATE(); case 139: - if (lookahead == 'i') ADVANCE(191); + if (lookahead == 'i') ADVANCE(195); END_STATE(); case 140: if (lookahead == 'i') ADVANCE(196); END_STATE(); case 141: - if (lookahead == 'i') ADVANCE(197); + if (lookahead == 'i') ADVANCE(51); END_STATE(); case 142: - if (lookahead == 'i') ADVANCE(51); + if (lookahead == 'k') ADVANCE(229); END_STATE(); case 143: - if (lookahead == 'k') ADVANCE(230); - END_STATE(); - case 144: if (lookahead == 'k') ADVANCE(76); if (lookahead == 'v') ADVANCE(46); END_STATE(); + case 144: + if (lookahead == 'l') ADVANCE(366); + END_STATE(); case 145: - if (lookahead == 'l') ADVANCE(359); + if (lookahead == 'l') ADVANCE(4); END_STATE(); case 146: - if (lookahead == 'l') ADVANCE(4); + if (lookahead == 'l') ADVANCE(250); END_STATE(); case 147: - if (lookahead == 'l') ADVANCE(252); + if (lookahead == 'l') ADVANCE(367); END_STATE(); case 148: - if (lookahead == 'l') ADVANCE(360); + if (lookahead == 'l') ADVANCE(583); END_STATE(); case 149: - if (lookahead == 'l') ADVANCE(569); + if (lookahead == 'l') ADVANCE(583); + if (lookahead == 'o') ADVANCE(156); END_STATE(); case 150: - if (lookahead == 'l') ADVANCE(569); - if (lookahead == 'o') ADVANCE(157); + if (lookahead == 'l') ADVANCE(633); END_STATE(); case 151: - if (lookahead == 'l') ADVANCE(619); + if (lookahead == 'l') ADVANCE(256); + if (lookahead == 'n') ADVANCE(67); + if (lookahead == 'p') ADVANCE(215); + if (lookahead == 's') ADVANCE(624); END_STATE(); case 152: - if (lookahead == 'l') ADVANCE(258); - if (lookahead == 'n') ADVANCE(67); - if (lookahead == 'p') ADVANCE(216); - if (lookahead == 's') ADVANCE(610); + if (lookahead == 'l') ADVANCE(144); END_STATE(); case 153: - if (lookahead == 'l') ADVANCE(145); + if (lookahead == 'l') ADVANCE(263); END_STATE(); case 154: - if (lookahead == 'l') ADVANCE(265); + if (lookahead == 'l') ADVANCE(264); END_STATE(); case 155: - if (lookahead == 'l') ADVANCE(266); + if (lookahead == 'l') ADVANCE(147); END_STATE(); case 156: - if (lookahead == 'l') ADVANCE(148); + if (lookahead == 'l') ADVANCE(160); + if (lookahead == 'u') ADVANCE(194); END_STATE(); case 157: - if (lookahead == 'l') ADVANCE(161); - if (lookahead == 'u') ADVANCE(195); + if (lookahead == 'l') ADVANCE(153); END_STATE(); case 158: if (lookahead == 'l') ADVANCE(154); END_STATE(); case 159: - if (lookahead == 'l') ADVANCE(155); + if (lookahead == 'l') ADVANCE(103); + if (lookahead == 't') ADVANCE(134); END_STATE(); case 160: - if (lookahead == 'l') ADVANCE(103); - if (lookahead == 't') ADVANCE(135); + if (lookahead == 'l') ADVANCE(93); END_STATE(); case 161: - if (lookahead == 'l') ADVANCE(93); + if (lookahead == 'l') ADVANCE(86); END_STATE(); case 162: - if (lookahead == 'l') ADVANCE(86); + if (lookahead == 'l') ADVANCE(239); END_STATE(); case 163: - if (lookahead == 'l') ADVANCE(240); + if (lookahead == 'l') ADVANCE(138); END_STATE(); case 164: if (lookahead == 'l') ADVANCE(139); @@ -4086,409 +4129,448 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'l') ADVANCE(140); END_STATE(); case 166: - if (lookahead == 'l') ADVANCE(141); + if (lookahead == 'm') ADVANCE(52); END_STATE(); case 167: - if (lookahead == 'm') ADVANCE(52); + if (lookahead == 'm') ADVANCE(619); END_STATE(); case 168: - if (lookahead == 'm') ADVANCE(605); + if (lookahead == 'm') ADVANCE(599); END_STATE(); case 169: - if (lookahead == 'm') ADVANCE(585); + if (lookahead == 'm') ADVANCE(607); END_STATE(); case 170: - if (lookahead == 'm') ADVANCE(593); + if (lookahead == 'm') ADVANCE(128); END_STATE(); case 171: - if (lookahead == 'm') ADVANCE(128); + if (lookahead == 'm') ADVANCE(112); END_STATE(); case 172: - if (lookahead == 'm') ADVANCE(112); + if (lookahead == 'n') ADVANCE(71); END_STATE(); case 173: - if (lookahead == 'n') ADVANCE(71); + if (lookahead == 'n') ADVANCE(242); END_STATE(); case 174: - if (lookahead == 'n') ADVANCE(243); + if (lookahead == 'n') ADVANCE(594); END_STATE(); case 175: - if (lookahead == 'n') ADVANCE(580); + if (lookahead == 'n') ADVANCE(348); END_STATE(); case 176: - if (lookahead == 'n') ADVANCE(341); + if (lookahead == 'n') ADVANCE(609); END_STATE(); case 177: - if (lookahead == 'n') ADVANCE(595); + if (lookahead == 'n') ADVANCE(159); END_STATE(); case 178: - if (lookahead == 'n') ADVANCE(160); + if (lookahead == 'n') ADVANCE(159); + if (lookahead == 'p') ADVANCE(247); + if (lookahead == 's') ADVANCE(136); END_STATE(); case 179: - if (lookahead == 'n') ADVANCE(160); - if (lookahead == 'p') ADVANCE(248); - if (lookahead == 's') ADVANCE(137); + if (lookahead == 'n') ADVANCE(113); END_STATE(); case 180: - if (lookahead == 'n') ADVANCE(113); + if (lookahead == 'n') ADVANCE(111); END_STATE(); case 181: - if (lookahead == 'n') ADVANCE(111); + if (lookahead == 'n') ADVANCE(613); END_STATE(); case 182: - if (lookahead == 'n') ADVANCE(599); + if (lookahead == 'n') ADVANCE(613); + if (lookahead == 'r') ADVANCE(94); END_STATE(); case 183: - if (lookahead == 'n') ADVANCE(599); - if (lookahead == 'r') ADVANCE(94); + if (lookahead == 'n') ADVANCE(637); END_STATE(); case 184: - if (lookahead == 'n') ADVANCE(623); + if (lookahead == 'n') ADVANCE(654); END_STATE(); case 185: - if (lookahead == 'n') ADVANCE(640); + if (lookahead == 'n') ADVANCE(585); END_STATE(); case 186: - if (lookahead == 'n') ADVANCE(646); + if (lookahead == 'n') ADVANCE(660); END_STATE(); case 187: - if (lookahead == 'n') ADVANCE(571); + if (lookahead == 'n') ADVANCE(131); END_STATE(); case 188: - if (lookahead == 'n') ADVANCE(131); + if (lookahead == 'n') ADVANCE(114); END_STATE(); case 189: - if (lookahead == 'n') ADVANCE(114); + if (lookahead == 'n') ADVANCE(115); END_STATE(); case 190: - if (lookahead == 'n') ADVANCE(115); + if (lookahead == 'n') ADVANCE(73); END_STATE(); case 191: - if (lookahead == 'n') ADVANCE(73); + if (lookahead == 'n') ADVANCE(68); END_STATE(); case 192: - if (lookahead == 'n') ADVANCE(68); + if (lookahead == 'n') ADVANCE(57); END_STATE(); case 193: - if (lookahead == 'n') ADVANCE(57); + if (lookahead == 'n') ADVANCE(50); END_STATE(); case 194: - if (lookahead == 'n') ADVANCE(50); + if (lookahead == 'n') ADVANCE(240); END_STATE(); case 195: - if (lookahead == 'n') ADVANCE(241); + if (lookahead == 'n') ADVANCE(78); END_STATE(); case 196: - if (lookahead == 'n') ADVANCE(78); + if (lookahead == 'n') ADVANCE(87); END_STATE(); case 197: - if (lookahead == 'n') ADVANCE(87); + if (lookahead == 'n') ADVANCE(97); END_STATE(); case 198: - if (lookahead == 'n') ADVANCE(97); + if (lookahead == 'n') ADVANCE(248); END_STATE(); case 199: - if (lookahead == 'n') ADVANCE(249); + if (lookahead == 'o') ADVANCE(603); END_STATE(); case 200: - if (lookahead == 'o') ADVANCE(589); + if (lookahead == 'o') ADVANCE(605); END_STATE(); case 201: - if (lookahead == 'o') ADVANCE(591); + if (lookahead == 'o') ADVANCE(651); END_STATE(); case 202: - if (lookahead == 'o') ADVANCE(637); + if (lookahead == 'o') ADVANCE(662); END_STATE(); case 203: - if (lookahead == 'o') ADVANCE(648); + if (lookahead == 'o') ADVANCE(254); END_STATE(); case 204: - if (lookahead == 'o') ADVANCE(256); + if (lookahead == 'o') ADVANCE(213); END_STATE(); case 205: - if (lookahead == 'o') ADVANCE(214); + if (lookahead == 'o') ADVANCE(168); END_STATE(); case 206: - if (lookahead == 'o') ADVANCE(169); + if (lookahead == 'o') ADVANCE(145); END_STATE(); case 207: - if (lookahead == 'o') ADVANCE(146); + if (lookahead == 'o') ADVANCE(69); END_STATE(); case 208: - if (lookahead == 'o') ADVANCE(69); + if (lookahead == 'o') ADVANCE(236); END_STATE(); case 209: - if (lookahead == 'o') ADVANCE(237); + if (lookahead == 'o') ADVANCE(169); END_STATE(); case 210: - if (lookahead == 'o') ADVANCE(170); + if (lookahead == 'o') ADVANCE(192); END_STATE(); case 211: - if (lookahead == 'o') ADVANCE(193); + if (lookahead == 'o') ADVANCE(204); END_STATE(); case 212: - if (lookahead == 'o') ADVANCE(205); + if (lookahead == 'o') ADVANCE(253); END_STATE(); case 213: - if (lookahead == 'o') ADVANCE(255); + if (lookahead == 'p') ADVANCE(658); END_STATE(); case 214: - if (lookahead == 'p') ADVANCE(644); + if (lookahead == 'p') ADVANCE(247); + if (lookahead == 's') ADVANCE(136); END_STATE(); case 215: - if (lookahead == 'p') ADVANCE(248); - if (lookahead == 's') ADVANCE(137); + if (lookahead == 'p') ADVANCE(100); END_STATE(); case 216: - if (lookahead == 'p') ADVANCE(100); + if (lookahead == 'p') ADVANCE(95); + if (lookahead == 't') ADVANCE(251); END_STATE(); case 217: - if (lookahead == 'p') ADVANCE(95); - if (lookahead == 't') ADVANCE(253); + if (lookahead == 'p') ADVANCE(49); END_STATE(); case 218: - if (lookahead == 'p') ADVANCE(49); + if (lookahead == 'r') ADVANCE(620); END_STATE(); case 219: - if (lookahead == 'r') ADVANCE(606); + if (lookahead == 'r') ADVANCE(647); END_STATE(); case 220: - if (lookahead == 'r') ADVANCE(633); + if (lookahead == 'r') ADVANCE(171); END_STATE(); case 221: - if (lookahead == 'r') ADVANCE(172); + if (lookahead == 'r') ADVANCE(175); END_STATE(); case 222: - if (lookahead == 'r') ADVANCE(176); + if (lookahead == 'r') ADVANCE(208); END_STATE(); case 223: - if (lookahead == 'r') ADVANCE(209); + if (lookahead == 'r') ADVANCE(90); END_STATE(); case 224: - if (lookahead == 'r') ADVANCE(90); + if (lookahead == 'r') ADVANCE(132); END_STATE(); case 225: - if (lookahead == 'r') ADVANCE(133); + if (lookahead == 'r') ADVANCE(202); END_STATE(); case 226: - if (lookahead == 'r') ADVANCE(203); + if (lookahead == 'r') ADVANCE(184); END_STATE(); case 227: - if (lookahead == 'r') ADVANCE(185); + if (lookahead == 'r') ADVANCE(94); END_STATE(); case 228: - if (lookahead == 'r') ADVANCE(94); + if (lookahead == 'r') ADVANCE(209); END_STATE(); case 229: - if (lookahead == 'r') ADVANCE(210); + if (lookahead == 's') ADVANCE(217); END_STATE(); case 230: - if (lookahead == 's') ADVANCE(218); + if (lookahead == 's') ADVANCE(588); END_STATE(); case 231: - if (lookahead == 's') ADVANCE(574); + if (lookahead == 's') ADVANCE(643); END_STATE(); case 232: - if (lookahead == 's') ADVANCE(629); + if (lookahead == 's') ADVANCE(641); END_STATE(); case 233: - if (lookahead == 's') ADVANCE(627); + if (lookahead == 's') ADVANCE(645); END_STATE(); case 234: - if (lookahead == 's') ADVANCE(631); + if (lookahead == 's') ADVANCE(262); END_STATE(); case 235: - if (lookahead == 's') ADVANCE(264); + if (lookahead == 's') ADVANCE(118); END_STATE(); case 236: - if (lookahead == 's') ADVANCE(118); + if (lookahead == 's') ADVANCE(230); END_STATE(); case 237: - if (lookahead == 's') ADVANCE(231); + if (lookahead == 's') ADVANCE(88); END_STATE(); case 238: - if (lookahead == 's') ADVANCE(88); + if (lookahead == 's') ADVANCE(232); END_STATE(); case 239: - if (lookahead == 's') ADVANCE(233); + if (lookahead == 's') ADVANCE(83); END_STATE(); case 240: - if (lookahead == 's') ADVANCE(83); + if (lookahead == 't') ADVANCE(618); END_STATE(); case 241: - if (lookahead == 't') ADVANCE(604); + if (lookahead == 't') ADVANCE(635); END_STATE(); case 242: - if (lookahead == 't') ADVANCE(621); + if (lookahead == 't') ADVANCE(38); END_STATE(); case 243: - if (lookahead == 't') ADVANCE(37); + if (lookahead == 't') ADVANCE(249); END_STATE(); case 244: - if (lookahead == 't') ADVANCE(250); + if (lookahead == 't') ADVANCE(141); END_STATE(); case 245: - if (lookahead == 't') ADVANCE(142); + if (lookahead == 't') ADVANCE(120); END_STATE(); case 246: - if (lookahead == 't') ADVANCE(120); + if (lookahead == 't') ADVANCE(123); END_STATE(); case 247: - if (lookahead == 't') ADVANCE(123); + if (lookahead == 't') ADVANCE(199); END_STATE(); case 248: - if (lookahead == 't') ADVANCE(200); + if (lookahead == 't') ADVANCE(201); END_STATE(); case 249: - if (lookahead == 't') ADVANCE(202); + if (lookahead == 'u') ADVANCE(221); END_STATE(); case 250: - if (lookahead == 'u') ADVANCE(222); + if (lookahead == 'u') ADVANCE(77); END_STATE(); case 251: - if (lookahead == 'u') ADVANCE(168); + if (lookahead == 'u') ADVANCE(226); END_STATE(); case 252: - if (lookahead == 'u') ADVANCE(77); + if (lookahead == 'v') ADVANCE(96); END_STATE(); case 253: - if (lookahead == 'u') ADVANCE(227); + if (lookahead == 'v') ADVANCE(84); END_STATE(); case 254: - if (lookahead == 'v') ADVANCE(96); + if (lookahead == 'w') ADVANCE(595); END_STATE(); case 255: - if (lookahead == 'v') ADVANCE(84); + if (lookahead == 'w') ADVANCE(163); END_STATE(); case 256: - if (lookahead == 'w') ADVANCE(581); + if (lookahead == 'w') ADVANCE(45); END_STATE(); case 257: - if (lookahead == 'w') ADVANCE(164); + if (lookahead == 'w') ADVANCE(180); END_STATE(); case 258: - if (lookahead == 'w') ADVANCE(45); + if (lookahead == 'w') ADVANCE(164); END_STATE(); case 259: - if (lookahead == 'w') ADVANCE(181); + if (lookahead == 'w') ADVANCE(165); END_STATE(); case 260: - if (lookahead == 'w') ADVANCE(165); + if (lookahead == 'x') ADVANCE(131); END_STATE(); case 261: - if (lookahead == 'w') ADVANCE(166); + if (lookahead == 'y') ADVANCE(4); END_STATE(); case 262: - if (lookahead == 'x') ADVANCE(131); + if (lookahead == 'y') ADVANCE(166); END_STATE(); case 263: - if (lookahead == 'y') ADVANCE(4); + if (lookahead == 'y') ADVANCE(652); END_STATE(); case 264: - if (lookahead == 'y') ADVANCE(167); + if (lookahead == 'y') ADVANCE(656); END_STATE(); case 265: - if (lookahead == 'y') ADVANCE(638); + if (lookahead == 'y') ADVANCE(231); END_STATE(); case 266: - if (lookahead == 'y') ADVANCE(642); + if (lookahead == 'z') ADVANCE(85); END_STATE(); case 267: - if (lookahead == 'y') ADVANCE(232); + if (lookahead == '|') ADVANCE(268); END_STATE(); case 268: - if (lookahead == 'z') ADVANCE(85); + if (lookahead == '|') ADVANCE(24); + if (lookahead != 0) ADVANCE(268); END_STATE(); case 269: - if (lookahead == '|') ADVANCE(270); + if (lookahead == '|') ADVANCE(553); + if (lookahead != 0) ADVANCE(269); END_STATE(); case 270: - if (lookahead == '|') ADVANCE(24); - if (lookahead != 0) ADVANCE(270); + if (lookahead == '#' || + lookahead == '=') ADVANCE(673); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(285); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(270); END_STATE(); case 271: - if (lookahead == '|') ADVANCE(539); - if (lookahead != 0) ADVANCE(271); + if (lookahead == '+' || + lookahead == '-') ADVANCE(278); + if (lookahead == '0' || + lookahead == '1') ADVANCE(307); END_STATE(); case 272: if (lookahead == '+' || - lookahead == '-') ADVANCE(274); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(307); + lookahead == '-') ADVANCE(279); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(308); END_STATE(); case 273: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(294); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(273); + if (lookahead == '+' || + lookahead == '-') ADVANCE(281); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(311); END_STATE(); case 274: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(307); + if (lookahead == '+' || + lookahead == '-') ADVANCE(280); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(310); END_STATE(); case 275: + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(300); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(275); + END_STATE(); + case 276: + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(271); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(272); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(273); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(277); + END_STATE(); + case 277: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(285); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(277); + END_STATE(); + case 278: + if (lookahead == '0' || + lookahead == '1') ADVANCE(307); + END_STATE(); + case 279: + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(308); + END_STATE(); + case 280: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(310); + END_STATE(); + case 281: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(341); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(311); END_STATE(); - case 276: + case 282: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(305); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(348); END_STATE(); - case 277: + case 283: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(275); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(282); END_STATE(); - case 278: + case 284: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(277); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(283); END_STATE(); - case 279: + case 285: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(308); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(312); END_STATE(); - case 280: - if (!aux_sym_char_lit_token1_character_set_1(lookahead)) ADVANCE(341); - if (lookahead == 'N') ADVANCE(344); - if (lookahead == 'R') ADVANCE(351); - if (lookahead == 'S') ADVANCE(349); - if (lookahead == 'b') ADVANCE(342); - if (lookahead == 'f') ADVANCE(348); - if (lookahead == 'n') ADVANCE(346); - if (lookahead == 'o') ADVANCE(354); - if (lookahead == 'r') ADVANCE(345); - if (lookahead == 's') ADVANCE(350); - if (lookahead == 't') ADVANCE(343); - if (lookahead == 'u') ADVANCE(355); + case 286: + if (!aux_sym_char_lit_token1_character_set_1(lookahead)) ADVANCE(348); + if (lookahead == 'N') ADVANCE(351); + if (lookahead == 'R') ADVANCE(358); + if (lookahead == 'S') ADVANCE(356); + if (lookahead == 'b') ADVANCE(349); + if (lookahead == 'f') ADVANCE(355); + if (lookahead == 'n') ADVANCE(353); + if (lookahead == 'o') ADVANCE(361); + if (lookahead == 'r') ADVANCE(352); + if (lookahead == 's') ADVANCE(357); + if (lookahead == 't') ADVANCE(350); + if (lookahead == 'u') ADVANCE(362); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(347); + lookahead == 'l') ADVANCE(354); END_STATE(); - case 281: + case 287: if (lookahead != 0 && lookahead != '\n') ADVANCE(23); END_STATE(); - case 282: - if (eof) ADVANCE(284); - if (lookahead == '"') ADVANCE(332); - if (lookahead == '#') ADVANCE(289); - if (lookahead == '\'') ADVANCE(533); - if (lookahead == '(') ADVANCE(521); - if (lookahead == ')') ADVANCE(522); - if (lookahead == ',') ADVANCE(537); - if (lookahead == '.') ADVANCE(296); - if (lookahead == '0') ADVANCE(300); - if (lookahead == ':') ADVANCE(329); - if (lookahead == ';') ADVANCE(287); - if (lookahead == '^') ADVANCE(519); - if (lookahead == '`') ADVANCE(534); - if (lookahead == 'c') ADVANCE(425); - if (lookahead == 'n') ADVANCE(413); - if (lookahead == '{') ADVANCE(523); - if (lookahead == '|') ADVANCE(513); - if (lookahead == '}') ADVANCE(524); - if (('+' <= lookahead && lookahead <= '-')) ADVANCE(362); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(301); + case 288: + if (eof) ADVANCE(290); + if (lookahead == '"') ADVANCE(339); + if (lookahead == '#') ADVANCE(295); + if (lookahead == '\'') ADVANCE(547); + if (lookahead == '(') ADVANCE(535); + if (lookahead == ')') ADVANCE(536); + if (lookahead == ',') ADVANCE(551); + if (lookahead == '.') ADVANCE(302); + if (lookahead == ':') ADVANCE(336); + if (lookahead == ';') ADVANCE(293); + if (lookahead == '^') ADVANCE(533); + if (lookahead == '`') ADVANCE(548); + if (lookahead == 'c') ADVANCE(432); + if (lookahead == 'n') ADVANCE(420); + if (lookahead == '{') ADVANCE(537); + if (lookahead == '|') ADVANCE(520); + if (lookahead == '}') ADVANCE(538); + if (('+' <= lookahead && lookahead <= '-')) ADVANCE(369); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(305); if (('\t' <= lookahead && lookahead <= '\r') || (28 <= lookahead && lookahead <= ' ') || lookahead == 5760 || @@ -4497,30 +4579,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8232 || lookahead == 8233 || lookahead == 8287 || - lookahead == 12288) ADVANCE(285); + lookahead == 12288) ADVANCE(291); if (lookahead != 0 && lookahead != '@' && - (lookahead < '[' || ']' < lookahead)) ADVANCE(518); + (lookahead < '[' || ']' < lookahead)) ADVANCE(532); END_STATE(); - case 283: - if (eof) ADVANCE(284); - if (lookahead == '"') ADVANCE(332); - if (lookahead == '#') ADVANCE(289); - if (lookahead == '\'') ADVANCE(533); - if (lookahead == '(') ADVANCE(521); - if (lookahead == ')') ADVANCE(522); - if (lookahead == ',') ADVANCE(537); - if (lookahead == '.') ADVANCE(296); - if (lookahead == '0') ADVANCE(300); - if (lookahead == ':') ADVANCE(329); - if (lookahead == ';') ADVANCE(287); - if (lookahead == '^') ADVANCE(519); - if (lookahead == '`') ADVANCE(534); - if (lookahead == 'c') ADVANCE(425); - if (lookahead == 'n') ADVANCE(413); - if (lookahead == '|') ADVANCE(513); - if (lookahead == '}') ADVANCE(524); - if (('+' <= lookahead && lookahead <= '-')) ADVANCE(362); + case 289: + if (eof) ADVANCE(290); + if (lookahead == '"') ADVANCE(339); + if (lookahead == '#') ADVANCE(295); + if (lookahead == '\'') ADVANCE(547); + if (lookahead == '(') ADVANCE(535); + if (lookahead == ')') ADVANCE(536); + if (lookahead == ',') ADVANCE(551); + if (lookahead == '.') ADVANCE(302); + if (lookahead == ':') ADVANCE(336); + if (lookahead == ';') ADVANCE(293); + if (lookahead == '^') ADVANCE(533); + if (lookahead == '`') ADVANCE(548); + if (lookahead == 'c') ADVANCE(432); + if (lookahead == 'n') ADVANCE(420); + if (lookahead == '|') ADVANCE(520); + if (lookahead == '}') ADVANCE(538); + if (('+' <= lookahead && lookahead <= '-')) ADVANCE(369); if (lookahead == 'D' || lookahead == 'F' || lookahead == 'L' || @@ -4528,8 +4609,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 'd' || lookahead == 'f' || lookahead == 'l' || - lookahead == 's') ADVANCE(328); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(301); + lookahead == 's') ADVANCE(335); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(305); if (('\t' <= lookahead && lookahead <= '\r') || (28 <= lookahead && lookahead <= ' ') || lookahead == 5760 || @@ -4538,16 +4619,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8232 || lookahead == 8233 || lookahead == 8287 || - lookahead == 12288) ADVANCE(285); + lookahead == 12288) ADVANCE(291); if (lookahead != 0 && lookahead != '@' && (lookahead < '[' || ']' < lookahead) && - lookahead != '{') ADVANCE(518); + lookahead != '{') ADVANCE(532); END_STATE(); - case 284: + case 290: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); - case 285: + case 291: ACCEPT_TOKEN(sym__ws); if (('\t' <= lookahead && lookahead <= '\r') || (28 <= lookahead && lookahead <= ' ') || @@ -4557,1797 +4638,1828 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8232 || lookahead == 8233 || lookahead == 8287 || - lookahead == 12288) ADVANCE(285); + lookahead == 12288) ADVANCE(291); END_STATE(); - case 286: + case 292: ACCEPT_TOKEN(sym_comment); END_STATE(); - case 287: + case 293: ACCEPT_TOKEN(sym_comment); - if (lookahead == '\n') ADVANCE(286); - if (lookahead != 0) ADVANCE(287); + if (lookahead == '\n') ADVANCE(292); + if (lookahead != 0) ADVANCE(293); END_STATE(); - case 288: + case 294: ACCEPT_TOKEN(anon_sym_POUND_); END_STATE(); - case 289: + case 295: ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead == '!') ADVANCE(287); - if (lookahead == '\'') ADVANCE(531); - if (lookahead == '+') ADVANCE(659); - if (lookahead == '-') ADVANCE(660); + if (lookahead == '!') ADVANCE(293); + if (lookahead == '\'') ADVANCE(545); + if (lookahead == '+') ADVANCE(674); + if (lookahead == '-') ADVANCE(675); if (lookahead == '0') ADVANCE(40); - if (lookahead == '?') ADVANCE(529); - if (lookahead == 'C') ADVANCE(661); - if (lookahead == 'P') ADVANCE(655); - if (lookahead == '^') ADVANCE(520); - if (lookahead == '_') ADVANCE(288); - if (lookahead == 'c') ADVANCE(662); - if (lookahead == 'p') ADVANCE(656); - if (lookahead == '|') ADVANCE(270); + if (lookahead == '?') ADVANCE(543); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(271); + if (lookahead == 'C') ADVANCE(676); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(272); + if (lookahead == 'P') ADVANCE(669); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(273); + if (lookahead == '^') ADVANCE(534); + if (lookahead == '_') ADVANCE(294); + if (lookahead == 'c') ADVANCE(677); + if (lookahead == 'p') ADVANCE(670); + if (lookahead == '|') ADVANCE(268); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(270); END_STATE(); - case 290: + case 296: ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead == '!') ADVANCE(287); - if (lookahead == '\'') ADVANCE(531); - if (lookahead == '+') ADVANCE(659); - if (lookahead == '-') ADVANCE(660); - if (lookahead == '?') ADVANCE(529); - if (lookahead == 'C') ADVANCE(661); - if (lookahead == '^') ADVANCE(520); - if (lookahead == '_') ADVANCE(288); - if (lookahead == 'c') ADVANCE(662); - if (lookahead == '|') ADVANCE(270); + if (lookahead == '!') ADVANCE(293); + if (lookahead == '\'') ADVANCE(545); + if (lookahead == '+') ADVANCE(674); + if (lookahead == '-') ADVANCE(675); + if (lookahead == '?') ADVANCE(543); + if (lookahead == 'C') ADVANCE(676); + if (lookahead == '^') ADVANCE(534); + if (lookahead == '_') ADVANCE(294); + if (lookahead == 'c') ADVANCE(677); + if (lookahead == '|') ADVANCE(268); END_STATE(); - case 291: + case 297: ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead == '\'') ADVANCE(531); - if (lookahead == '+') ADVANCE(659); - if (lookahead == '-') ADVANCE(660); + if (lookahead == '\'') ADVANCE(545); + if (lookahead == '+') ADVANCE(674); + if (lookahead == '-') ADVANCE(675); if (lookahead == '0') ADVANCE(40); - if (lookahead == '?') ADVANCE(529); - if (lookahead == 'C') ADVANCE(661); - if (lookahead == 'P') ADVANCE(655); - if (lookahead == '^') ADVANCE(520); - if (lookahead == 'c') ADVANCE(662); - if (lookahead == 'p') ADVANCE(656); - if (lookahead == '|') ADVANCE(270); + if (lookahead == '?') ADVANCE(543); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(271); + if (lookahead == 'C') ADVANCE(676); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(272); + if (lookahead == 'P') ADVANCE(669); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(273); + if (lookahead == '^') ADVANCE(534); + if (lookahead == 'c') ADVANCE(677); + if (lookahead == 'p') ADVANCE(670); + if (lookahead == '|') ADVANCE(268); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(270); END_STATE(); - case 292: + case 298: ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead == '\'') ADVANCE(531); - if (lookahead == '+') ADVANCE(659); - if (lookahead == '-') ADVANCE(660); - if (lookahead == '?') ADVANCE(529); - if (lookahead == 'C') ADVANCE(661); - if (lookahead == '^') ADVANCE(520); - if (lookahead == 'c') ADVANCE(662); - if (lookahead == '|') ADVANCE(270); + if (lookahead == '\'') ADVANCE(545); + if (lookahead == '+') ADVANCE(674); + if (lookahead == '-') ADVANCE(675); + if (lookahead == '?') ADVANCE(543); + if (lookahead == 'C') ADVANCE(676); + if (lookahead == '^') ADVANCE(534); + if (lookahead == 'c') ADVANCE(677); + if (lookahead == '|') ADVANCE(268); END_STATE(); - case 293: + case 299: ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead == '|') ADVANCE(270); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(271); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(272); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(273); + if (lookahead == '|') ADVANCE(268); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(277); END_STATE(); - case 294: + case 300: ACCEPT_TOKEN(aux_sym__form_token1); END_STATE(); - case 295: + case 301: ACCEPT_TOKEN(aux_sym__form_token1); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); - case 296: + case 302: ACCEPT_TOKEN(anon_sym_DOT); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); - case 297: + case 303: ACCEPT_TOKEN(aux_sym_num_lit_token1); END_STATE(); - case 298: + case 304: ACCEPT_TOKEN(aux_sym_num_lit_token1); - if (lookahead == '.') ADVANCE(310); - if (lookahead == '/') ADVANCE(517); - if (!aux_sym_sym_lit_token1_character_set_5(lookahead)) ADVANCE(518); + if (lookahead == '.') ADVANCE(315); + if (lookahead == '/') ADVANCE(528); + if (!aux_sym_sym_lit_token1_character_set_5(lookahead)) ADVANCE(532); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(295); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(514); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(515); + lookahead == 'a') ADVANCE(301); if (lookahead == 'M' || - lookahead == 'N') ADVANCE(312); + lookahead == 'N') ADVANCE(319); if (('D' <= lookahead && lookahead <= 'F') || lookahead == 'L' || lookahead == 'S' || ('d' <= lookahead && lookahead <= 'f') || lookahead == 'l' || - lookahead == 's') ADVANCE(516); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(299); + lookahead == 's') ADVANCE(525); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(304); END_STATE(); - case 299: + case 305: ACCEPT_TOKEN(aux_sym_num_lit_token1); - if (lookahead == '.') ADVANCE(310); - if (lookahead == '/') ADVANCE(517); - if (!aux_sym_sym_lit_token1_character_set_6(lookahead)) ADVANCE(518); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(295); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(514); + if (lookahead == '.') ADVANCE(315); + if (lookahead == '/') ADVANCE(528); + if (!aux_sym_sym_lit_token1_character_set_6(lookahead)) ADVANCE(532); if (lookahead == 'M' || - lookahead == 'N') ADVANCE(312); + lookahead == 'N') ADVANCE(319); if (('D' <= lookahead && lookahead <= 'F') || lookahead == 'L' || lookahead == 'S' || ('d' <= lookahead && lookahead <= 'f') || lookahead == 'l' || - lookahead == 's') ADVANCE(516); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(299); + lookahead == 's') ADVANCE(525); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(305); END_STATE(); - case 300: + case 306: ACCEPT_TOKEN(aux_sym_num_lit_token1); - if (lookahead == '.') ADVANCE(310); - if (lookahead == '/') ADVANCE(517); - if (!aux_sym_sym_lit_token1_character_set_7(lookahead)) ADVANCE(518); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(514); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(515); + if (lookahead == '.') ADVANCE(309); + if (lookahead == '/') ADVANCE(280); if (lookahead == 'M' || - lookahead == 'N') ADVANCE(312); + lookahead == 'N') ADVANCE(303); if (('D' <= lookahead && lookahead <= 'F') || lookahead == 'L' || lookahead == 'S' || ('d' <= lookahead && lookahead <= 'f') || lookahead == 'l' || - lookahead == 's') ADVANCE(516); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(301); + lookahead == 's') ADVANCE(274); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(306); END_STATE(); - case 301: + case 307: ACCEPT_TOKEN(aux_sym_num_lit_token1); - if (lookahead == '.') ADVANCE(310); - if (lookahead == '/') ADVANCE(517); - if (!aux_sym_sym_lit_token1_character_set_8(lookahead)) ADVANCE(518); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(514); - if (lookahead == 'M' || - lookahead == 'N') ADVANCE(312); - if (('D' <= lookahead && lookahead <= 'F') || - lookahead == 'L' || - lookahead == 'S' || - ('d' <= lookahead && lookahead <= 'f') || - lookahead == 'l' || - lookahead == 's') ADVANCE(516); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(301); + if (lookahead == '0' || + lookahead == '1') ADVANCE(307); END_STATE(); - case 302: + case 308: ACCEPT_TOKEN(aux_sym_num_lit_token1); - if (lookahead == '.') ADVANCE(306); - if (lookahead == '/') ADVANCE(274); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(279); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(276); - if (lookahead == 'M' || - lookahead == 'N') ADVANCE(297); - if (('D' <= lookahead && lookahead <= 'F') || - lookahead == 'L' || - lookahead == 'S' || - ('d' <= lookahead && lookahead <= 'f') || - lookahead == 'l' || - lookahead == 's') ADVANCE(272); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(303); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(308); END_STATE(); - case 303: + case 309: ACCEPT_TOKEN(aux_sym_num_lit_token1); - if (lookahead == '.') ADVANCE(306); - if (lookahead == '/') ADVANCE(274); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(279); - if (lookahead == 'M' || - lookahead == 'N') ADVANCE(297); if (('D' <= lookahead && lookahead <= 'F') || lookahead == 'L' || lookahead == 'S' || ('d' <= lookahead && lookahead <= 'f') || lookahead == 'l' || - lookahead == 's') ADVANCE(272); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(303); + lookahead == 's') ADVANCE(274); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(309); END_STATE(); - case 304: + case 310: ACCEPT_TOKEN(aux_sym_num_lit_token1); - if (lookahead == 'N') ADVANCE(312); - if (!aux_sym_sym_lit_token1_character_set_9(lookahead)) ADVANCE(518); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(304); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(310); END_STATE(); - case 305: + case 311: ACCEPT_TOKEN(aux_sym_num_lit_token1); - if (lookahead == 'N') ADVANCE(297); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(305); - END_STATE(); - case 306: - 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(272); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(306); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(311); END_STATE(); - case 307: + case 312: ACCEPT_TOKEN(aux_sym_num_lit_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(307); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(312); END_STATE(); - case 308: + case 313: ACCEPT_TOKEN(aux_sym_num_lit_token1); + if (!aux_sym_sym_lit_token1_character_set_7(lookahead)) ADVANCE(532); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(308); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(313); END_STATE(); - case 309: + case 314: ACCEPT_TOKEN(aux_sym_num_lit_token1); - if (!aux_sym_sym_lit_token1_character_set_10(lookahead)) ADVANCE(518); + if (!aux_sym_sym_lit_token1_character_set_8(lookahead)) ADVANCE(532); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(309); + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(314); END_STATE(); - case 310: + case 315: ACCEPT_TOKEN(aux_sym_num_lit_token1); - if (!aux_sym_sym_lit_token1_character_set_11(lookahead)) ADVANCE(518); + if (!aux_sym_sym_lit_token1_character_set_9(lookahead)) ADVANCE(532); if (('D' <= lookahead && lookahead <= 'F') || lookahead == 'L' || lookahead == 'S' || ('d' <= lookahead && lookahead <= 'f') || lookahead == 'l' || - lookahead == 's') ADVANCE(516); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(310); - END_STATE(); - case 311: - ACCEPT_TOKEN(aux_sym_num_lit_token1); - if (!aux_sym_sym_lit_token1_character_set_12(lookahead)) ADVANCE(518); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(311); - END_STATE(); - case 312: - ACCEPT_TOKEN(aux_sym_num_lit_token1); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); - END_STATE(); - case 313: - ACCEPT_TOKEN(aux_sym_num_lit_token2); - END_STATE(); - case 314: - ACCEPT_TOKEN(aux_sym_num_lit_token2); - if (lookahead == 'a') ADVANCE(440); - if (lookahead == 'o') ADVANCE(466); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); - END_STATE(); - case 315: - ACCEPT_TOKEN(aux_sym_num_lit_token2); - if (lookahead == 'e') ADVANCE(401); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + lookahead == 's') ADVANCE(525); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(315); END_STATE(); case 316: - ACCEPT_TOKEN(aux_sym_num_lit_token2); - if (lookahead == 'i') ADVANCE(455); - if (lookahead == 'o') ADVANCE(479); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + ACCEPT_TOKEN(aux_sym_num_lit_token1); + if (!aux_sym_sym_lit_token1_character_set_10(lookahead)) ADVANCE(532); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(316); END_STATE(); case 317: - ACCEPT_TOKEN(aux_sym_num_lit_token2); - if (lookahead == 'i') ADVANCE(194); - if (lookahead == 'o') ADVANCE(219); + ACCEPT_TOKEN(aux_sym_num_lit_token1); + if (!aux_sym_sym_lit_token1_character_set_11(lookahead)) ADVANCE(532); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(317); END_STATE(); case 318: - ACCEPT_TOKEN(aux_sym_num_lit_token2); - if (lookahead == 'i') ADVANCE(194); - if (lookahead == 'o') ADVANCE(219); - if (lookahead == 'r') ADVANCE(206); + ACCEPT_TOKEN(aux_sym_num_lit_token1); + if (!aux_sym_sym_lit_token1_character_set_12(lookahead)) ADVANCE(532); + if (lookahead == '0' || + lookahead == '1') ADVANCE(318); END_STATE(); case 319: - ACCEPT_TOKEN(aux_sym_num_lit_token2); - if (lookahead == 'o') ADVANCE(616); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + ACCEPT_TOKEN(aux_sym_num_lit_token1); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 320: ACCEPT_TOKEN(aux_sym_num_lit_token2); - if (lookahead == 'o') ADVANCE(615); END_STATE(); case 321: ACCEPT_TOKEN(aux_sym_num_lit_token2); - if (lookahead == 'o') ADVANCE(614); + if (lookahead == 'a') ADVANCE(447); + if (lookahead == 'o') ADVANCE(473); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 322: ACCEPT_TOKEN(aux_sym_num_lit_token2); - if (lookahead == 'o') ADVANCE(507); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'e') ADVANCE(408); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 323: ACCEPT_TOKEN(aux_sym_num_lit_token2); - if (lookahead == 'o') ADVANCE(259); + if (lookahead == 'i') ADVANCE(462); + if (lookahead == 'o') ADVANCE(486); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 324: ACCEPT_TOKEN(aux_sym_num_lit_token2); - if (lookahead == 'r') ADVANCE(206); + if (lookahead == 'i') ADVANCE(193); + if (lookahead == 'o') ADVANCE(218); END_STATE(); case 325: ACCEPT_TOKEN(aux_sym_num_lit_token2); - if (lookahead == 'r') ADVANCE(468); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'i') ADVANCE(193); + if (lookahead == 'o') ADVANCE(218); + if (lookahead == 'r') ADVANCE(205); END_STATE(); case 326: ACCEPT_TOKEN(aux_sym_num_lit_token2); - if (lookahead == 'u') ADVANCE(441); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'o') ADVANCE(630); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 327: ACCEPT_TOKEN(aux_sym_num_lit_token2); - if (lookahead == 'u') ADVANCE(168); + if (lookahead == 'o') ADVANCE(629); END_STATE(); case 328: ACCEPT_TOKEN(aux_sym_num_lit_token2); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'o') ADVANCE(628); END_STATE(); case 329: - ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == ':') ADVANCE(331); + ACCEPT_TOKEN(aux_sym_num_lit_token2); + if (lookahead == 'o') ADVANCE(514); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 330: - ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == '@') ADVANCE(546); + ACCEPT_TOKEN(aux_sym_num_lit_token2); + if (lookahead == 'o') ADVANCE(257); END_STATE(); case 331: - ACCEPT_TOKEN(anon_sym_COLON_COLON); + ACCEPT_TOKEN(aux_sym_num_lit_token2); + if (lookahead == 'r') ADVANCE(205); END_STATE(); case 332: - ACCEPT_TOKEN(anon_sym_DQUOTE); + ACCEPT_TOKEN(aux_sym_num_lit_token2); + if (lookahead == 'r') ADVANCE(475); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 333: + ACCEPT_TOKEN(aux_sym_num_lit_token2); + if (lookahead == 'u') ADVANCE(448); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + END_STATE(); + case 334: + ACCEPT_TOKEN(aux_sym_num_lit_token2); + if (lookahead == 'u') ADVANCE(167); + END_STATE(); + case 335: + ACCEPT_TOKEN(aux_sym_num_lit_token2); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); + END_STATE(); + case 336: + ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == ':') ADVANCE(338); + END_STATE(); + case 337: + ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == '@') ADVANCE(560); + END_STATE(); + case 338: + ACCEPT_TOKEN(anon_sym_COLON_COLON); + END_STATE(); + case 339: + ACCEPT_TOKEN(anon_sym_DQUOTE); + END_STATE(); + case 340: ACCEPT_TOKEN(aux_sym_str_lit_token1); - if (lookahead == '#') ADVANCE(338); + if (lookahead == '#') ADVANCE(345); if (lookahead != 0 && lookahead != '"' && lookahead != '\\' && - lookahead != '~') ADVANCE(337); + lookahead != '~') ADVANCE(344); END_STATE(); - case 334: + case 341: ACCEPT_TOKEN(aux_sym_str_lit_token1); - if (lookahead == '?') ADVANCE(335); - if (lookahead == 'C') ADVANCE(338); - if (lookahead == 'P') ADVANCE(338); - if (lookahead == '^') ADVANCE(338); - if (lookahead == '_') ADVANCE(338); - if (lookahead == 'c') ADVANCE(338); - if (lookahead == 'p') ADVANCE(338); - if (lookahead == '|') ADVANCE(337); + if (lookahead == '?') ADVANCE(342); + if (lookahead == 'C') ADVANCE(345); + if (lookahead == 'P') ADVANCE(345); + if (lookahead == '^') ADVANCE(345); + if (lookahead == '_') ADVANCE(345); + if (lookahead == 'c') ADVANCE(345); + if (lookahead == 'p') ADVANCE(345); + if (lookahead == '|') ADVANCE(344); if (lookahead != 0 && lookahead != '"' && lookahead != '\\' && - lookahead != '~') ADVANCE(338); + lookahead != '~') ADVANCE(345); END_STATE(); - case 335: + case 342: ACCEPT_TOKEN(aux_sym_str_lit_token1); - if (lookahead == '@') ADVANCE(338); + if (lookahead == '@') ADVANCE(345); if (lookahead != 0 && lookahead != '"' && lookahead != '\\' && - lookahead != '~') ADVANCE(338); + lookahead != '~') ADVANCE(345); END_STATE(); - case 336: + case 343: ACCEPT_TOKEN(aux_sym_str_lit_token1); - if (lookahead == '|') ADVANCE(337); + if (lookahead == '|') ADVANCE(344); if (lookahead != 0 && lookahead != '"' && lookahead != '\\' && - lookahead != '~') ADVANCE(338); + lookahead != '~') ADVANCE(345); END_STATE(); - case 337: + case 344: ACCEPT_TOKEN(aux_sym_str_lit_token1); - if (lookahead == '|') ADVANCE(333); + if (lookahead == '|') ADVANCE(340); if (lookahead != 0 && lookahead != '"' && lookahead != '\\' && - lookahead != '~') ADVANCE(337); + lookahead != '~') ADVANCE(344); END_STATE(); - case 338: + case 345: ACCEPT_TOKEN(aux_sym_str_lit_token1); if (lookahead != 0 && lookahead != '"' && lookahead != '\\' && - lookahead != '~') ADVANCE(338); - END_STATE(); - case 339: - ACCEPT_TOKEN(aux_sym_str_lit_token2); - END_STATE(); - case 340: - ACCEPT_TOKEN(anon_sym_TILDE); - END_STATE(); - case 341: - ACCEPT_TOKEN(aux_sym_char_lit_token1); - END_STATE(); - case 342: - ACCEPT_TOKEN(aux_sym_char_lit_token1); - if (lookahead == 'a') ADVANCE(56); - END_STATE(); - case 343: - ACCEPT_TOKEN(aux_sym_char_lit_token1); - if (lookahead == 'a') ADVANCE(53); - END_STATE(); - case 344: - ACCEPT_TOKEN(aux_sym_char_lit_token1); - if (lookahead == 'e') ADVANCE(257); - if (lookahead == 'u') ADVANCE(153); - END_STATE(); - case 345: - ACCEPT_TOKEN(aux_sym_char_lit_token1); - if (lookahead == 'e') ADVANCE(244); - if (lookahead == 'u') ADVANCE(156); + lookahead != '~') ADVANCE(345); END_STATE(); case 346: - ACCEPT_TOKEN(aux_sym_char_lit_token1); - if (lookahead == 'e') ADVANCE(260); - if (lookahead == 'u') ADVANCE(153); + ACCEPT_TOKEN(aux_sym_str_lit_token2); END_STATE(); case 347: - ACCEPT_TOKEN(aux_sym_char_lit_token1); - if (lookahead == 'i') ADVANCE(173); + ACCEPT_TOKEN(anon_sym_TILDE); END_STATE(); case 348: ACCEPT_TOKEN(aux_sym_char_lit_token1); - if (lookahead == 'o') ADVANCE(221); END_STATE(); case 349: ACCEPT_TOKEN(aux_sym_char_lit_token1); - if (lookahead == 'p') ADVANCE(44); + if (lookahead == 'a') ADVANCE(56); END_STATE(); case 350: ACCEPT_TOKEN(aux_sym_char_lit_token1); - if (lookahead == 'p') ADVANCE(49); + if (lookahead == 'a') ADVANCE(53); END_STATE(); case 351: ACCEPT_TOKEN(aux_sym_char_lit_token1); - if (lookahead == 'u') ADVANCE(156); + if (lookahead == 'e') ADVANCE(255); + if (lookahead == 'u') ADVANCE(152); END_STATE(); case 352: ACCEPT_TOKEN(aux_sym_char_lit_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(341); + if (lookahead == 'e') ADVANCE(243); + if (lookahead == 'u') ADVANCE(155); END_STATE(); case 353: ACCEPT_TOKEN(aux_sym_char_lit_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(352); + if (lookahead == 'e') ADVANCE(258); + if (lookahead == 'u') ADVANCE(152); END_STATE(); case 354: ACCEPT_TOKEN(aux_sym_char_lit_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(353); + if (lookahead == 'i') ADVANCE(172); END_STATE(); case 355: ACCEPT_TOKEN(aux_sym_char_lit_token1); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(278); + if (lookahead == 'o') ADVANCE(220); END_STATE(); case 356: - ACCEPT_TOKEN(aux_sym_char_lit_token2); + ACCEPT_TOKEN(aux_sym_char_lit_token1); + if (lookahead == 'p') ADVANCE(44); END_STATE(); case 357: - ACCEPT_TOKEN(aux_sym_char_lit_token3); + ACCEPT_TOKEN(aux_sym_char_lit_token1); + if (lookahead == 'p') ADVANCE(49); END_STATE(); case 358: - ACCEPT_TOKEN(aux_sym_char_lit_token4); + ACCEPT_TOKEN(aux_sym_char_lit_token1); + if (lookahead == 'u') ADVANCE(155); END_STATE(); case 359: - ACCEPT_TOKEN(aux_sym_char_lit_token5); + ACCEPT_TOKEN(aux_sym_char_lit_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(348); END_STATE(); case 360: - ACCEPT_TOKEN(aux_sym_char_lit_token6); + ACCEPT_TOKEN(aux_sym_char_lit_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(359); END_STATE(); case 361: - ACCEPT_TOKEN(sym_nil_lit); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + ACCEPT_TOKEN(aux_sym_char_lit_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(360); END_STATE(); case 362: - ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == '0') ADVANCE(300); - if (!aux_sym_sym_lit_token1_character_set_13(lookahead)) ADVANCE(518); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(301); + ACCEPT_TOKEN(aux_sym_char_lit_token1); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(284); END_STATE(); case 363: - ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'a') ADVANCE(508); - if (lookahead == 'i') ADVANCE(457); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + ACCEPT_TOKEN(aux_sym_char_lit_token2); END_STATE(); case 364: - ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'a') ADVANCE(511); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + ACCEPT_TOKEN(aux_sym_char_lit_token3); END_STATE(); case 365: - ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'a') ADVANCE(654); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + ACCEPT_TOKEN(aux_sym_char_lit_token4); END_STATE(); case 366: - ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'a') ADVANCE(495); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + ACCEPT_TOKEN(aux_sym_char_lit_token5); END_STATE(); case 367: - ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'a') ADVANCE(377); - if (lookahead == 'e') ADVANCE(497); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + ACCEPT_TOKEN(aux_sym_char_lit_token6); END_STATE(); case 368: - ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'a') ADVANCE(434); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + ACCEPT_TOKEN(sym_nil_lit); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 369: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'a') ADVANCE(440); - if (lookahead == 'o') ADVANCE(466); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == '#') ADVANCE(521); + if (!aux_sym_sym_lit_token1_character_set_10(lookahead)) ADVANCE(532); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(305); END_STATE(); case 370: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'a') ADVANCE(436); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'a') ADVANCE(515); + if (lookahead == 'i') ADVANCE(464); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 371: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'b') ADVANCE(380); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'a') ADVANCE(518); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 372: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'b') ADVANCE(473); - if (lookahead == 'c') ADVANCE(482); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'a') ADVANCE(668); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 373: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'c') ADVANCE(651); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'a') ADVANCE(502); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 374: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'c') ADVANCE(471); + if (lookahead == 'a') ADVANCE(384); if (lookahead == 'e') ADVANCE(504); - if (lookahead == 'i') ADVANCE(426); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 375: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'c') ADVANCE(419); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'a') ADVANCE(441); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 376: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'c') ADVANCE(499); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'a') ADVANCE(447); + if (lookahead == 'o') ADVANCE(473); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 377: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'c') ADVANCE(487); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'a') ADVANCE(443); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 378: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'd') ADVANCE(609); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'b') ADVANCE(387); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 379: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'd') ADVANCE(653); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'b') ADVANCE(480); + if (lookahead == 'c') ADVANCE(489); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 380: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'd') ADVANCE(365); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'c') ADVANCE(665); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 381: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'd') ADVANCE(419); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'c') ADVANCE(478); + if (lookahead == 'e') ADVANCE(511); + if (lookahead == 'i') ADVANCE(433); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 382: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'e') ADVANCE(478); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'c') ADVANCE(426); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 383: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'e') ADVANCE(636); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'c') ADVANCE(506); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 384: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'e') ADVANCE(618); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'c') ADVANCE(494); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 385: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'e') ADVANCE(420); - if (lookahead == 'y') ADVANCE(598); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'd') ADVANCE(623); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 386: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'e') ADVANCE(584); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'd') ADVANCE(667); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 387: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'e') ADVANCE(401); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'd') ADVANCE(372); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 388: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'e') ADVANCE(493); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'd') ADVANCE(426); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 389: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'e') ADVANCE(484); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'e') ADVANCE(485); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 390: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'e') ADVANCE(376); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'e') ADVANCE(650); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 391: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'e') ADVANCE(480); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'e') ADVANCE(632); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 392: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'e') ADVANCE(366); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'e') ADVANCE(427); + if (lookahead == 'y') ADVANCE(612); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 393: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'e') ADVANCE(419); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'e') ADVANCE(598); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 394: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'e') ADVANCE(446); - if (lookahead == 'i') ADVANCE(437); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'e') ADVANCE(408); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 395: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'e') ADVANCE(417); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'e') ADVANCE(500); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 396: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'e') ADVANCE(454); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'e') ADVANCE(491); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 397: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'e') ADVANCE(483); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'e') ADVANCE(383); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 398: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'e') ADVANCE(452); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'e') ADVANCE(487); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 399: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'e') ADVANCE(460); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'e') ADVANCE(373); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 400: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'f') ADVANCE(626); - if (lookahead == 'n') ADVANCE(415); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'e') ADVANCE(426); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 401: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'f') ADVANCE(406); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'e') ADVANCE(453); + if (lookahead == 'i') ADVANCE(444); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 402: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'f') ADVANCE(486); - if (lookahead == 't') ADVANCE(463); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'e') ADVANCE(424); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 403: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'g') ADVANCE(518); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'e') ADVANCE(461); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 404: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'g') ADVANCE(577); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'e') ADVANCE(490); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 405: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'g') ADVANCE(579); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'e') ADVANCE(459); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 406: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'g') ADVANCE(399); - if (lookahead == 'm') ADVANCE(367); - if (lookahead == 'u') ADVANCE(453); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'e') ADVANCE(467); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 407: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'h') ADVANCE(394); - if (lookahead == 'i') ADVANCE(496); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'f') ADVANCE(640); + if (lookahead == 'n') ADVANCE(422); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 408: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'h') ADVANCE(613); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'f') ADVANCE(413); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 409: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'h') ADVANCE(389); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'f') ADVANCE(493); + if (lookahead == 't') ADVANCE(470); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 410: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'h') ADVANCE(469); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'g') ADVANCE(532); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 411: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'h') ADVANCE(398); - if (lookahead == 'o') ADVANCE(588); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'g') ADVANCE(591); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 412: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'i') ADVANCE(512); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'g') ADVANCE(593); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 413: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'i') ADVANCE(426); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'g') ADVANCE(406); + if (lookahead == 'm') ADVANCE(374); + if (lookahead == 'u') ADVANCE(460); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 414: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'i') ADVANCE(455); - if (lookahead == 'o') ADVANCE(479); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'h') ADVANCE(401); + if (lookahead == 'i') ADVANCE(503); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 415: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'i') ADVANCE(498); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'h') ADVANCE(627); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 416: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'i') ADVANCE(373); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'h') ADVANCE(396); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 417: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'i') ADVANCE(490); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'h') ADVANCE(476); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 418: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'i') ADVANCE(429); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'h') ADVANCE(405); + if (lookahead == 'o') ADVANCE(602); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 419: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'i') ADVANCE(448); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'i') ADVANCE(519); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 420: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'i') ADVANCE(456); - if (lookahead == 'l') ADVANCE(467); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'i') ADVANCE(433); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 421: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'i') ADVANCE(458); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'i') ADVANCE(462); + if (lookahead == 'o') ADVANCE(486); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 422: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'i') ADVANCE(443); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'i') ADVANCE(505); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 423: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'i') ADVANCE(370); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'i') ADVANCE(380); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 424: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'l') ADVANCE(570); - if (lookahead == 'o') ADVANCE(432); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'i') ADVANCE(497); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 425: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'l') ADVANCE(570); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'i') ADVANCE(436); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 426: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'l') ADVANCE(361); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'i') ADVANCE(455); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 427: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'l') ADVANCE(505); - if (lookahead == 'n') ADVANCE(378); - if (lookahead == 'p') ADVANCE(476); - if (lookahead == 's') ADVANCE(611); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'i') ADVANCE(463); + if (lookahead == 'l') ADVANCE(474); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 428: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'l') ADVANCE(492); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'i') ADVANCE(465); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 429: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'l') ADVANCE(620); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'i') ADVANCE(450); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 430: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'l') ADVANCE(509); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'i') ADVANCE(377); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 431: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'l') ADVANCE(510); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'l') ADVANCE(584); + if (lookahead == 'o') ADVANCE(439); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 432: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'l') ADVANCE(435); - if (lookahead == 'u') ADVANCE(459); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'l') ADVANCE(584); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 433: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'l') ADVANCE(388); - if (lookahead == 't') ADVANCE(418); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'l') ADVANCE(368); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 434: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'l') ADVANCE(430); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'l') ADVANCE(512); + if (lookahead == 'n') ADVANCE(385); + if (lookahead == 'p') ADVANCE(483); + if (lookahead == 's') ADVANCE(625); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 435: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'l') ADVANCE(390); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'l') ADVANCE(499); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 436: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'l') ADVANCE(431); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'l') ADVANCE(634); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 437: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'l') ADVANCE(384); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'l') ADVANCE(516); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 438: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'm') ADVANCE(586); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'l') ADVANCE(517); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 439: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'm') ADVANCE(594); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'l') ADVANCE(442); + if (lookahead == 'u') ADVANCE(466); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 440: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'm') ADVANCE(371); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'l') ADVANCE(395); + if (lookahead == 't') ADVANCE(425); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 441: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'm') ADVANCE(442); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'l') ADVANCE(437); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 442: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'm') ADVANCE(419); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'l') ADVANCE(397); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 443: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'm') ADVANCE(412); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'l') ADVANCE(438); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 444: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'n') ADVANCE(433); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'l') ADVANCE(391); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 445: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'n') ADVANCE(375); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'm') ADVANCE(600); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 446: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'n') ADVANCE(624); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'm') ADVANCE(608); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 447: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'n') ADVANCE(641); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'm') ADVANCE(378); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 448: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'n') ADVANCE(403); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'm') ADVANCE(449); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 449: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'n') ADVANCE(573); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'm') ADVANCE(426); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 450: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'n') ADVANCE(596); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'm') ADVANCE(419); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 451: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'n') ADVANCE(402); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'n') ADVANCE(440); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 452: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'n') ADVANCE(600); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'n') ADVANCE(382); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 453: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'n') ADVANCE(647); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'n') ADVANCE(638); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 454: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'n') ADVANCE(381); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'n') ADVANCE(655); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 455: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'n') ADVANCE(368); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'n') ADVANCE(410); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 456: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'n') ADVANCE(404); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'n') ADVANCE(587); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 457: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'n') ADVANCE(422); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'n') ADVANCE(610); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 458: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'n') ADVANCE(405); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'n') ADVANCE(409); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 459: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'n') ADVANCE(499); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'n') ADVANCE(614); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 460: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'n') ADVANCE(397); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'n') ADVANCE(661); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 461: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'o') ADVANCE(616); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'n') ADVANCE(388); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 462: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'o') ADVANCE(590); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'n') ADVANCE(375); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 463: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'o') ADVANCE(592); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'n') ADVANCE(411); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 464: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'o') ADVANCE(649); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'n') ADVANCE(429); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 465: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'o') ADVANCE(507); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'n') ADVANCE(412); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 466: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'o') ADVANCE(475); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'n') ADVANCE(506); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 467: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'o') ADVANCE(506); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'n') ADVANCE(404); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 468: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'o') ADVANCE(438); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'o') ADVANCE(630); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 469: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'o') ADVANCE(379); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'o') ADVANCE(604); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 470: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'o') ADVANCE(439); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'o') ADVANCE(606); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 471: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'o') ADVANCE(445); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'o') ADVANCE(663); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 472: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'o') ADVANCE(466); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'o') ADVANCE(514); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 473: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'o') ADVANCE(503); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'o') ADVANCE(482); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 474: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'o') ADVANCE(494); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'o') ADVANCE(513); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 475: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'p') ADVANCE(645); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'o') ADVANCE(445); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 476: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'p') ADVANCE(396); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'o') ADVANCE(386); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 477: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'p') ADVANCE(500); - if (lookahead == 's') ADVANCE(421); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'o') ADVANCE(446); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 478: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'p') ADVANCE(392); - if (lookahead == 't') ADVANCE(502); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'o') ADVANCE(452); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 479: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'r') ADVANCE(607); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'o') ADVANCE(473); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 480: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'r') ADVANCE(634); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'o') ADVANCE(510); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 481: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'r') ADVANCE(468); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'o') ADVANCE(501); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 482: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'r') ADVANCE(474); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'p') ADVANCE(659); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 483: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'r') ADVANCE(416); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'p') ADVANCE(403); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 484: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'r') ADVANCE(395); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'p') ADVANCE(507); + if (lookahead == 's') ADVANCE(428); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 485: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'r') ADVANCE(447); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'p') ADVANCE(399); + if (lookahead == 't') ADVANCE(509); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 486: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'r') ADVANCE(470); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'r') ADVANCE(621); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 487: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'r') ADVANCE(464); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'r') ADVANCE(648); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 488: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 's') ADVANCE(630); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'r') ADVANCE(475); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 489: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 's') ADVANCE(628); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'r') ADVANCE(481); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 490: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 's') ADVANCE(632); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'r') ADVANCE(423); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 491: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 's') ADVANCE(575); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'r') ADVANCE(402); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 492: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 's') ADVANCE(383); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'r') ADVANCE(454); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 493: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 's') ADVANCE(489); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'r') ADVANCE(477); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 494: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 's') ADVANCE(491); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'r') ADVANCE(471); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 495: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 't') ADVANCE(622); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 's') ADVANCE(644); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 496: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 't') ADVANCE(408); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 's') ADVANCE(642); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 497: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 't') ADVANCE(410); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 's') ADVANCE(646); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 498: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 't') ADVANCE(423); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 's') ADVANCE(589); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 499: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 't') ADVANCE(419); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 's') ADVANCE(390); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 500: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 't') ADVANCE(462); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 's') ADVANCE(496); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 501: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'u') ADVANCE(441); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 's') ADVANCE(498); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 502: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'u') ADVANCE(485); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 't') ADVANCE(636); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 503: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'v') ADVANCE(386); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 't') ADVANCE(415); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 504: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'v') ADVANCE(391); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 't') ADVANCE(417); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 505: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'w') ADVANCE(364); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 't') ADVANCE(430); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 506: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'w') ADVANCE(582); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 't') ADVANCE(426); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 507: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'w') ADVANCE(451); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 't') ADVANCE(469); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 508: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'x') ADVANCE(422); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'u') ADVANCE(448); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 509: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'y') ADVANCE(639); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'u') ADVANCE(492); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 510: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'y') ADVANCE(643); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'v') ADVANCE(393); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 511: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'y') ADVANCE(488); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'v') ADVANCE(398); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 512: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == 'z') ADVANCE(393); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'w') ADVANCE(371); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 513: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (lookahead == '|') ADVANCE(518); - if (!aux_sym_sym_lit_token1_character_set_14(lookahead)) ADVANCE(513); - if (sym_fancy_literal_character_set_1(lookahead)) ADVANCE(271); + if (lookahead == 'w') ADVANCE(596); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 514: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (!aux_sym_sym_lit_token1_character_set_10(lookahead)) ADVANCE(518); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(309); + if (lookahead == 'w') ADVANCE(458); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 515: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (!aux_sym_sym_lit_token1_character_set_9(lookahead)) ADVANCE(518); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(304); + if (lookahead == 'x') ADVANCE(429); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 516: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (!aux_sym_sym_lit_token1_character_set_15(lookahead)) ADVANCE(518); - if (lookahead == '+' || - lookahead == '-') ADVANCE(517); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(311); + if (lookahead == 'y') ADVANCE(653); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 517: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (!aux_sym_sym_lit_token1_character_set_12(lookahead)) ADVANCE(518); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(311); + if (lookahead == 'y') ADVANCE(657); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 518: ACCEPT_TOKEN(aux_sym_sym_lit_token1); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (lookahead == 'y') ADVANCE(495); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 519: - ACCEPT_TOKEN(anon_sym_CARET); + ACCEPT_TOKEN(aux_sym_sym_lit_token1); + if (lookahead == 'z') ADVANCE(400); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 520: - ACCEPT_TOKEN(anon_sym_POUND_CARET); + ACCEPT_TOKEN(aux_sym_sym_lit_token1); + if (lookahead == '|') ADVANCE(532); + if (!aux_sym_sym_lit_token1_character_set_13(lookahead)) ADVANCE(520); + if (sym_fancy_literal_character_set_1(lookahead)) ADVANCE(269); END_STATE(); case 521: - ACCEPT_TOKEN(anon_sym_LPAREN); + ACCEPT_TOKEN(aux_sym_sym_lit_token1); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(530); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(527); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(523); + if (!aux_sym_sym_lit_token1_character_set_10(lookahead)) ADVANCE(532); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(526); END_STATE(); case 522: - ACCEPT_TOKEN(anon_sym_RPAREN); + ACCEPT_TOKEN(aux_sym_sym_lit_token1); + if (!aux_sym_sym_lit_token1_character_set_7(lookahead)) ADVANCE(532); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(313); END_STATE(); case 523: - ACCEPT_TOKEN(anon_sym_LBRACE); + ACCEPT_TOKEN(aux_sym_sym_lit_token1); + if (!aux_sym_sym_lit_token1_character_set_14(lookahead)) ADVANCE(532); + if (lookahead == '+' || + lookahead == '-') ADVANCE(524); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(314); END_STATE(); case 524: - ACCEPT_TOKEN(anon_sym_RBRACE); + ACCEPT_TOKEN(aux_sym_sym_lit_token1); + if (!aux_sym_sym_lit_token1_character_set_8(lookahead)) ADVANCE(532); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(314); END_STATE(); case 525: - ACCEPT_TOKEN(anon_sym_POUND0A); + ACCEPT_TOKEN(aux_sym_sym_lit_token1); + if (!aux_sym_sym_lit_token1_character_set_15(lookahead)) ADVANCE(532); + if (lookahead == '+' || + lookahead == '-') ADVANCE(528); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(316); END_STATE(); case 526: - ACCEPT_TOKEN(anon_sym_POUND0a); + ACCEPT_TOKEN(aux_sym_sym_lit_token1); + if (!aux_sym_sym_lit_token1_character_set_16(lookahead)) ADVANCE(532); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(522); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(526); END_STATE(); case 527: - ACCEPT_TOKEN(aux_sym_regex_lit_token1); + ACCEPT_TOKEN(aux_sym_sym_lit_token1); + if (!aux_sym_sym_lit_token1_character_set_17(lookahead)) ADVANCE(532); + if (lookahead == '+' || + lookahead == '-') ADVANCE(529); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(317); END_STATE(); case 528: - ACCEPT_TOKEN(anon_sym_POUND_QMARK); + ACCEPT_TOKEN(aux_sym_sym_lit_token1); + if (!aux_sym_sym_lit_token1_character_set_10(lookahead)) ADVANCE(532); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(316); END_STATE(); case 529: - ACCEPT_TOKEN(anon_sym_POUND_QMARK); - if (lookahead == '@') ADVANCE(530); + ACCEPT_TOKEN(aux_sym_sym_lit_token1); + if (!aux_sym_sym_lit_token1_character_set_11(lookahead)) ADVANCE(532); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(317); END_STATE(); case 530: - ACCEPT_TOKEN(anon_sym_POUND_QMARK_AT); + ACCEPT_TOKEN(aux_sym_sym_lit_token1); + if (!aux_sym_sym_lit_token1_character_set_18(lookahead)) ADVANCE(532); + if (lookahead == '+' || + lookahead == '-') ADVANCE(531); + if (lookahead == '0' || + lookahead == '1') ADVANCE(318); END_STATE(); case 531: - ACCEPT_TOKEN(anon_sym_POUND_SQUOTE); + ACCEPT_TOKEN(aux_sym_sym_lit_token1); + if (!aux_sym_sym_lit_token1_character_set_12(lookahead)) ADVANCE(532); + if (lookahead == '0' || + lookahead == '1') ADVANCE(318); END_STATE(); case 532: - ACCEPT_TOKEN(anon_sym_AT); - if (lookahead == ':') ADVANCE(545); + ACCEPT_TOKEN(aux_sym_sym_lit_token1); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); case 533: - ACCEPT_TOKEN(anon_sym_SQUOTE); + ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); case 534: - ACCEPT_TOKEN(anon_sym_BQUOTE); + ACCEPT_TOKEN(anon_sym_POUND_CARET); END_STATE(); case 535: - ACCEPT_TOKEN(anon_sym_COMMA_AT); + ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); case 536: - ACCEPT_TOKEN(anon_sym_COMMA); + ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); case 537: - ACCEPT_TOKEN(anon_sym_COMMA); - if (lookahead == '@') ADVANCE(535); + ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); case 538: - ACCEPT_TOKEN(sym_block_comment); + ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); case 539: - ACCEPT_TOKEN(sym_fancy_literal); + ACCEPT_TOKEN(anon_sym_POUND0A); END_STATE(); case 540: - ACCEPT_TOKEN(aux_sym__format_token_token1); + ACCEPT_TOKEN(anon_sym_POUND0a); END_STATE(); case 541: + ACCEPT_TOKEN(aux_sym_regex_lit_token1); + END_STATE(); + case 542: + ACCEPT_TOKEN(anon_sym_POUND_QMARK); + END_STATE(); + case 543: + ACCEPT_TOKEN(anon_sym_POUND_QMARK); + if (lookahead == '@') ADVANCE(544); + END_STATE(); + case 544: + ACCEPT_TOKEN(anon_sym_POUND_QMARK_AT); + END_STATE(); + case 545: + ACCEPT_TOKEN(anon_sym_POUND_SQUOTE); + END_STATE(); + case 546: + ACCEPT_TOKEN(anon_sym_AT); + if (lookahead == ':') ADVANCE(559); + END_STATE(); + case 547: + ACCEPT_TOKEN(anon_sym_SQUOTE); + END_STATE(); + case 548: + ACCEPT_TOKEN(anon_sym_BQUOTE); + END_STATE(); + case 549: + ACCEPT_TOKEN(anon_sym_COMMA_AT); + END_STATE(); + case 550: + ACCEPT_TOKEN(anon_sym_COMMA); + END_STATE(); + case 551: + ACCEPT_TOKEN(anon_sym_COMMA); + if (lookahead == '@') ADVANCE(549); + END_STATE(); + case 552: + ACCEPT_TOKEN(sym_block_comment); + END_STATE(); + case 553: + ACCEPT_TOKEN(sym_fancy_literal); + END_STATE(); + case 554: ACCEPT_TOKEN(aux_sym__format_token_token1); - if (lookahead == '"') ADVANCE(339); + END_STATE(); + case 555: + ACCEPT_TOKEN(aux_sym__format_token_token1); + if (lookahead == '"') ADVANCE(346); if (lookahead == 'L' || lookahead == 'l') ADVANCE(127); if (lookahead == 'N' || lookahead == 'n') ADVANCE(70); END_STATE(); - case 542: + case 556: ACCEPT_TOKEN(aux_sym__format_token_token1); - if (lookahead == '|') ADVANCE(270); + if (lookahead == '|') ADVANCE(268); END_STATE(); - case 543: + case 557: ACCEPT_TOKEN(anon_sym_v); END_STATE(); - case 544: + case 558: ACCEPT_TOKEN(anon_sym_V); END_STATE(); - case 545: + case 559: ACCEPT_TOKEN(anon_sym_AT_COLON); END_STATE(); - case 546: + case 560: ACCEPT_TOKEN(anon_sym_COLON_AT); END_STATE(); - case 547: + case 561: ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); - case 548: + case 562: ACCEPT_TOKEN(anon_sym_AMP); END_STATE(); - case 549: + case 563: ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); - case 550: + case 564: ACCEPT_TOKEN(aux_sym_format_directive_type_token1); END_STATE(); - case 551: + case 565: ACCEPT_TOKEN(aux_sym_format_directive_type_token2); END_STATE(); - case 552: + case 566: ACCEPT_TOKEN(anon_sym_LF); END_STATE(); - case 553: + case 567: ACCEPT_TOKEN(anon_sym_CR); END_STATE(); - case 554: + case 568: ACCEPT_TOKEN(aux_sym_format_directive_type_token3); END_STATE(); - case 555: + case 569: ACCEPT_TOKEN(aux_sym_format_directive_type_token4); END_STATE(); - case 556: + case 570: ACCEPT_TOKEN(aux_sym_format_directive_type_token5); END_STATE(); - case 557: + case 571: ACCEPT_TOKEN(aux_sym_format_directive_type_token6); END_STATE(); - case 558: + case 572: ACCEPT_TOKEN(anon_sym__); END_STATE(); - case 559: + case 573: ACCEPT_TOKEN(aux_sym_format_directive_type_token7); END_STATE(); - case 560: + case 574: ACCEPT_TOKEN(aux_sym_format_directive_type_token8); END_STATE(); - case 561: + case 575: ACCEPT_TOKEN(aux_sym_format_directive_type_token9); END_STATE(); - case 562: + case 576: ACCEPT_TOKEN(aux_sym_format_directive_type_token10); END_STATE(); - case 563: + case 577: ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); - case 564: + case 578: ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); - case 565: + case 579: ACCEPT_TOKEN(anon_sym_SLASH); END_STATE(); - case 566: + case 580: ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); - case 567: + case 581: ACCEPT_TOKEN(anon_sym_Newline); END_STATE(); - case 568: + case 582: ACCEPT_TOKEN(aux_sym_format_directive_type_token11); END_STATE(); - case 569: + case 583: ACCEPT_TOKEN(anon_sym_cl); END_STATE(); - case 570: + case 584: ACCEPT_TOKEN(anon_sym_cl); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); - case 571: + case 585: ACCEPT_TOKEN(anon_sym_in); END_STATE(); - case 572: + case 586: ACCEPT_TOKEN(anon_sym_in); - if (lookahead == 'i') ADVANCE(245); + if (lookahead == 'i') ADVANCE(244); END_STATE(); - case 573: + case 587: ACCEPT_TOKEN(anon_sym_in); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); - case 574: + case 588: ACCEPT_TOKEN(anon_sym_across); END_STATE(); - case 575: + case 589: ACCEPT_TOKEN(anon_sym_across); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); - case 576: + case 590: ACCEPT_TOKEN(anon_sym_being); if (lookahead == ' ') ADVANCE(74); END_STATE(); - case 577: + case 591: ACCEPT_TOKEN(anon_sym_being); if (lookahead == ' ') ADVANCE(74); - if (!aux_sym_sym_lit_token1_character_set_16(lookahead)) ADVANCE(518); + if (!aux_sym_sym_lit_token1_character_set_19(lookahead)) ADVANCE(532); END_STATE(); - case 578: + case 592: ACCEPT_TOKEN(anon_sym_using); END_STATE(); - case 579: + case 593: ACCEPT_TOKEN(anon_sym_using); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); - case 580: + case 594: ACCEPT_TOKEN(aux_sym_for_clause_word_token1); END_STATE(); - case 581: + case 595: ACCEPT_TOKEN(anon_sym_below); END_STATE(); - case 582: + case 596: ACCEPT_TOKEN(anon_sym_below); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); - case 583: + case 597: ACCEPT_TOKEN(anon_sym_above); END_STATE(); - case 584: + case 598: ACCEPT_TOKEN(anon_sym_above); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); - case 585: + case 599: ACCEPT_TOKEN(anon_sym_from); END_STATE(); - case 586: + case 600: ACCEPT_TOKEN(anon_sym_from); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); - case 587: + case 601: ACCEPT_TOKEN(anon_sym_to); END_STATE(); - case 588: + case 602: ACCEPT_TOKEN(anon_sym_to); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); - case 589: + case 603: ACCEPT_TOKEN(anon_sym_upto); END_STATE(); - case 590: + case 604: ACCEPT_TOKEN(anon_sym_upto); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); - case 591: + case 605: ACCEPT_TOKEN(anon_sym_downto); END_STATE(); - case 592: + case 606: ACCEPT_TOKEN(anon_sym_downto); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); - case 593: + case 607: ACCEPT_TOKEN(anon_sym_downfrom); END_STATE(); - case 594: + case 608: ACCEPT_TOKEN(anon_sym_downfrom); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); - case 595: + case 609: ACCEPT_TOKEN(anon_sym_on); END_STATE(); - case 596: + case 610: ACCEPT_TOKEN(anon_sym_on); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); - case 597: + case 611: ACCEPT_TOKEN(anon_sym_by); END_STATE(); - case 598: + case 612: ACCEPT_TOKEN(anon_sym_by); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); - case 599: + case 613: ACCEPT_TOKEN(anon_sym_then); END_STATE(); - case 600: + case 614: ACCEPT_TOKEN(anon_sym_then); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); - case 601: + case 615: ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); - case 602: + case 616: ACCEPT_TOKEN(anon_sym_EQ); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); - case 603: + case 617: ACCEPT_TOKEN(aux_sym_accumulation_verb_token1); END_STATE(); - case 604: + case 618: ACCEPT_TOKEN(aux_sym_accumulation_verb_token1); - if (lookahead == 'i') ADVANCE(190); + if (lookahead == 'i') ADVANCE(189); END_STATE(); - case 605: + case 619: ACCEPT_TOKEN(aux_sym_accumulation_verb_token1); - if (lookahead == 'm') ADVANCE(138); + if (lookahead == 'm') ADVANCE(137); END_STATE(); - case 606: + case 620: ACCEPT_TOKEN(anon_sym_for); END_STATE(); - case 607: + case 621: ACCEPT_TOKEN(anon_sym_for); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); - case 608: + case 622: ACCEPT_TOKEN(anon_sym_and); END_STATE(); - case 609: + case 623: ACCEPT_TOKEN(anon_sym_and); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); - case 610: + case 624: ACCEPT_TOKEN(anon_sym_as); END_STATE(); - case 611: + case 625: ACCEPT_TOKEN(anon_sym_as); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); - case 612: + case 626: ACCEPT_TOKEN(anon_sym_with); END_STATE(); - case 613: + case 627: ACCEPT_TOKEN(anon_sym_with); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); - case 614: + case 628: ACCEPT_TOKEN(anon_sym_do); END_STATE(); - case 615: + case 629: ACCEPT_TOKEN(anon_sym_do); - if (lookahead == 'w') ADVANCE(181); + if (lookahead == 'w') ADVANCE(180); END_STATE(); - case 616: + case 630: ACCEPT_TOKEN(anon_sym_do); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); - case 617: + case 631: ACCEPT_TOKEN(anon_sym_while); END_STATE(); - case 618: + case 632: ACCEPT_TOKEN(anon_sym_while); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); - case 619: + case 633: ACCEPT_TOKEN(anon_sym_until); END_STATE(); - case 620: + case 634: ACCEPT_TOKEN(anon_sym_until); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); - case 621: + case 635: ACCEPT_TOKEN(anon_sym_repeat); END_STATE(); - case 622: + case 636: ACCEPT_TOKEN(anon_sym_repeat); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); - case 623: + case 637: ACCEPT_TOKEN(anon_sym_when); END_STATE(); - case 624: + case 638: ACCEPT_TOKEN(anon_sym_when); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); - case 625: + case 639: ACCEPT_TOKEN(anon_sym_if); END_STATE(); - case 626: + case 640: ACCEPT_TOKEN(anon_sym_if); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); - case 627: + case 641: ACCEPT_TOKEN(anon_sym_unless); END_STATE(); - case 628: + case 642: ACCEPT_TOKEN(anon_sym_unless); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); - case 629: + case 643: ACCEPT_TOKEN(anon_sym_always); END_STATE(); - case 630: + case 644: ACCEPT_TOKEN(anon_sym_always); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); - case 631: + case 645: ACCEPT_TOKEN(anon_sym_thereis); END_STATE(); - case 632: + case 646: ACCEPT_TOKEN(anon_sym_thereis); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); - case 633: + case 647: ACCEPT_TOKEN(anon_sym_never); END_STATE(); - case 634: + case 648: ACCEPT_TOKEN(anon_sym_never); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); - case 635: + case 649: ACCEPT_TOKEN(anon_sym_else); END_STATE(); - case 636: + case 650: ACCEPT_TOKEN(anon_sym_else); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); - case 637: + case 651: ACCEPT_TOKEN(anon_sym_into); END_STATE(); - case 638: + case 652: ACCEPT_TOKEN(anon_sym_finally); END_STATE(); - case 639: + case 653: ACCEPT_TOKEN(anon_sym_finally); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); - case 640: + case 654: ACCEPT_TOKEN(anon_sym_return); END_STATE(); - case 641: + case 655: ACCEPT_TOKEN(anon_sym_return); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); - case 642: + case 656: ACCEPT_TOKEN(anon_sym_initially); END_STATE(); - case 643: + case 657: ACCEPT_TOKEN(anon_sym_initially); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); - case 644: + case 658: ACCEPT_TOKEN(anon_sym_loop); END_STATE(); - case 645: + case 659: ACCEPT_TOKEN(anon_sym_loop); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); - case 646: + case 660: ACCEPT_TOKEN(anon_sym_defun); END_STATE(); - case 647: + case 661: ACCEPT_TOKEN(anon_sym_defun); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); - case 648: + case 662: ACCEPT_TOKEN(anon_sym_defmacro); END_STATE(); - case 649: + case 663: ACCEPT_TOKEN(anon_sym_defmacro); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); - case 650: + case 664: ACCEPT_TOKEN(anon_sym_defgeneric); END_STATE(); - case 651: + case 665: ACCEPT_TOKEN(anon_sym_defgeneric); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); - case 652: + case 666: ACCEPT_TOKEN(anon_sym_defmethod); END_STATE(); - case 653: + case 667: ACCEPT_TOKEN(anon_sym_defmethod); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); - case 654: + case 668: ACCEPT_TOKEN(anon_sym_lambda); - if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(518); + if (!aux_sym_sym_lit_token1_character_set_4(lookahead)) ADVANCE(532); END_STATE(); - case 655: + case 669: ACCEPT_TOKEN(anon_sym_POUNDP); END_STATE(); - case 656: + case 670: ACCEPT_TOKEN(anon_sym_POUNDp); END_STATE(); - case 657: + case 671: ACCEPT_TOKEN(aux_sym__sym_lit_without_slash_token1); END_STATE(); - case 658: + case 672: ACCEPT_TOKEN(aux_sym__sym_lit_without_slash_token1); - if (lookahead == 'l') ADVANCE(569); + if (lookahead == 'l') ADVANCE(583); END_STATE(); - case 659: + case 673: + ACCEPT_TOKEN(sym_self_referential_reader_macro); + END_STATE(); + case 674: ACCEPT_TOKEN(anon_sym_POUND_PLUS); END_STATE(); - case 660: + case 675: ACCEPT_TOKEN(anon_sym_POUND_DASH); END_STATE(); - case 661: + case 676: ACCEPT_TOKEN(anon_sym_POUNDC); END_STATE(); - case 662: + case 677: ACCEPT_TOKEN(anon_sym_POUNDc); END_STATE(); default: @@ -6357,7 +6469,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { static TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0}, - [1] = {.lex_state = 282}, + [1] = {.lex_state = 288}, [2] = {.lex_state = 8}, [3] = {.lex_state = 8}, [4] = {.lex_state = 8}, @@ -6386,10 +6498,10 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [27] = {.lex_state = 11}, [28] = {.lex_state = 11}, [29] = {.lex_state = 16}, - [30] = {.lex_state = 282}, + [30] = {.lex_state = 16}, [31] = {.lex_state = 16}, [32] = {.lex_state = 16}, - [33] = {.lex_state = 16}, + [33] = {.lex_state = 288}, [34] = {.lex_state = 16}, [35] = {.lex_state = 16}, [36] = {.lex_state = 16}, @@ -6400,775 +6512,775 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [41] = {.lex_state = 16}, [42] = {.lex_state = 16}, [43] = {.lex_state = 16}, - [44] = {.lex_state = 282}, - [45] = {.lex_state = 282}, - [46] = {.lex_state = 282}, - [47] = {.lex_state = 282}, - [48] = {.lex_state = 282}, - [49] = {.lex_state = 282}, - [50] = {.lex_state = 282}, - [51] = {.lex_state = 282}, - [52] = {.lex_state = 282}, - [53] = {.lex_state = 282}, - [54] = {.lex_state = 282}, - [55] = {.lex_state = 282}, - [56] = {.lex_state = 282}, - [57] = {.lex_state = 282}, - [58] = {.lex_state = 282}, - [59] = {.lex_state = 282}, - [60] = {.lex_state = 282}, - [61] = {.lex_state = 282}, - [62] = {.lex_state = 282}, - [63] = {.lex_state = 282}, - [64] = {.lex_state = 282}, - [65] = {.lex_state = 282}, - [66] = {.lex_state = 282}, - [67] = {.lex_state = 282}, - [68] = {.lex_state = 282}, - [69] = {.lex_state = 282}, - [70] = {.lex_state = 282}, - [71] = {.lex_state = 282}, - [72] = {.lex_state = 282}, - [73] = {.lex_state = 282}, - [74] = {.lex_state = 282}, - [75] = {.lex_state = 282}, - [76] = {.lex_state = 282}, - [77] = {.lex_state = 282}, - [78] = {.lex_state = 282}, - [79] = {.lex_state = 282}, - [80] = {.lex_state = 15}, - [81] = {.lex_state = 282}, - [82] = {.lex_state = 282}, - [83] = {.lex_state = 282}, - [84] = {.lex_state = 282}, - [85] = {.lex_state = 282}, - [86] = {.lex_state = 282}, - [87] = {.lex_state = 282}, - [88] = {.lex_state = 282}, - [89] = {.lex_state = 282}, - [90] = {.lex_state = 282}, - [91] = {.lex_state = 282}, - [92] = {.lex_state = 282}, - [93] = {.lex_state = 282}, - [94] = {.lex_state = 282}, - [95] = {.lex_state = 282}, - [96] = {.lex_state = 282}, - [97] = {.lex_state = 15}, + [44] = {.lex_state = 288}, + [45] = {.lex_state = 15}, + [46] = {.lex_state = 288}, + [47] = {.lex_state = 288}, + [48] = {.lex_state = 288}, + [49] = {.lex_state = 288}, + [50] = {.lex_state = 288}, + [51] = {.lex_state = 288}, + [52] = {.lex_state = 288}, + [53] = {.lex_state = 288}, + [54] = {.lex_state = 288}, + [55] = {.lex_state = 288}, + [56] = {.lex_state = 288}, + [57] = {.lex_state = 288}, + [58] = {.lex_state = 288}, + [59] = {.lex_state = 288}, + [60] = {.lex_state = 288}, + [61] = {.lex_state = 288}, + [62] = {.lex_state = 15}, + [63] = {.lex_state = 288}, + [64] = {.lex_state = 288}, + [65] = {.lex_state = 288}, + [66] = {.lex_state = 288}, + [67] = {.lex_state = 288}, + [68] = {.lex_state = 288}, + [69] = {.lex_state = 288}, + [70] = {.lex_state = 288}, + [71] = {.lex_state = 288}, + [72] = {.lex_state = 288}, + [73] = {.lex_state = 288}, + [74] = {.lex_state = 288}, + [75] = {.lex_state = 288}, + [76] = {.lex_state = 288}, + [77] = {.lex_state = 288}, + [78] = {.lex_state = 288}, + [79] = {.lex_state = 288}, + [80] = {.lex_state = 288}, + [81] = {.lex_state = 15}, + [82] = {.lex_state = 15}, + [83] = {.lex_state = 288}, + [84] = {.lex_state = 288}, + [85] = {.lex_state = 288}, + [86] = {.lex_state = 288}, + [87] = {.lex_state = 288}, + [88] = {.lex_state = 288}, + [89] = {.lex_state = 288}, + [90] = {.lex_state = 288}, + [91] = {.lex_state = 288}, + [92] = {.lex_state = 288}, + [93] = {.lex_state = 288}, + [94] = {.lex_state = 288}, + [95] = {.lex_state = 288}, + [96] = {.lex_state = 288}, + [97] = {.lex_state = 288}, [98] = {.lex_state = 15}, - [99] = {.lex_state = 282}, - [100] = {.lex_state = 282}, - [101] = {.lex_state = 282}, - [102] = {.lex_state = 282}, - [103] = {.lex_state = 282}, - [104] = {.lex_state = 282}, - [105] = {.lex_state = 282}, - [106] = {.lex_state = 282}, - [107] = {.lex_state = 282}, - [108] = {.lex_state = 282}, - [109] = {.lex_state = 282}, - [110] = {.lex_state = 282}, - [111] = {.lex_state = 282}, - [112] = {.lex_state = 282}, - [113] = {.lex_state = 282}, - [114] = {.lex_state = 15}, - [115] = {.lex_state = 282}, - [116] = {.lex_state = 282}, - [117] = {.lex_state = 282}, - [118] = {.lex_state = 282}, - [119] = {.lex_state = 282}, - [120] = {.lex_state = 15}, - [121] = {.lex_state = 282}, - [122] = {.lex_state = 282}, - [123] = {.lex_state = 282}, - [124] = {.lex_state = 282}, - [125] = {.lex_state = 282}, - [126] = {.lex_state = 282}, - [127] = {.lex_state = 282}, - [128] = {.lex_state = 282}, - [129] = {.lex_state = 282}, - [130] = {.lex_state = 282}, - [131] = {.lex_state = 282}, - [132] = {.lex_state = 282}, - [133] = {.lex_state = 282}, - [134] = {.lex_state = 282}, - [135] = {.lex_state = 15}, - [136] = {.lex_state = 282}, - [137] = {.lex_state = 15}, - [138] = {.lex_state = 282}, - [139] = {.lex_state = 282}, - [140] = {.lex_state = 282}, - [141] = {.lex_state = 282}, - [142] = {.lex_state = 282}, - [143] = {.lex_state = 282}, - [144] = {.lex_state = 282}, - [145] = {.lex_state = 282}, - [146] = {.lex_state = 282}, - [147] = {.lex_state = 282}, - [148] = {.lex_state = 282}, - [149] = {.lex_state = 282}, - [150] = {.lex_state = 282}, - [151] = {.lex_state = 282}, - [152] = {.lex_state = 282}, - [153] = {.lex_state = 282}, - [154] = {.lex_state = 282}, - [155] = {.lex_state = 282}, - [156] = {.lex_state = 282}, - [157] = {.lex_state = 282}, - [158] = {.lex_state = 282}, - [159] = {.lex_state = 282}, - [160] = {.lex_state = 282}, - [161] = {.lex_state = 282}, - [162] = {.lex_state = 282}, - [163] = {.lex_state = 282}, - [164] = {.lex_state = 15}, - [165] = {.lex_state = 282}, - [166] = {.lex_state = 282}, - [167] = {.lex_state = 282}, - [168] = {.lex_state = 282}, - [169] = {.lex_state = 282}, - [170] = {.lex_state = 282}, - [171] = {.lex_state = 282}, - [172] = {.lex_state = 282}, - [173] = {.lex_state = 282}, - [174] = {.lex_state = 282}, - [175] = {.lex_state = 282}, - [176] = {.lex_state = 282}, - [177] = {.lex_state = 282}, - [178] = {.lex_state = 282}, - [179] = {.lex_state = 282}, - [180] = {.lex_state = 282}, - [181] = {.lex_state = 282}, - [182] = {.lex_state = 282}, - [183] = {.lex_state = 282}, - [184] = {.lex_state = 282}, - [185] = {.lex_state = 282}, - [186] = {.lex_state = 282}, - [187] = {.lex_state = 282}, - [188] = {.lex_state = 282}, - [189] = {.lex_state = 282}, - [190] = {.lex_state = 282}, - [191] = {.lex_state = 282}, - [192] = {.lex_state = 282}, - [193] = {.lex_state = 282}, - [194] = {.lex_state = 282}, - [195] = {.lex_state = 282}, - [196] = {.lex_state = 282}, - [197] = {.lex_state = 282}, - [198] = {.lex_state = 282}, - [199] = {.lex_state = 282}, - [200] = {.lex_state = 282}, - [201] = {.lex_state = 282}, - [202] = {.lex_state = 282}, - [203] = {.lex_state = 282}, - [204] = {.lex_state = 282}, - [205] = {.lex_state = 282}, - [206] = {.lex_state = 282}, - [207] = {.lex_state = 282}, - [208] = {.lex_state = 282}, - [209] = {.lex_state = 282}, - [210] = {.lex_state = 282}, - [211] = {.lex_state = 282}, - [212] = {.lex_state = 282}, - [213] = {.lex_state = 282}, - [214] = {.lex_state = 282}, - [215] = {.lex_state = 282}, - [216] = {.lex_state = 282}, - [217] = {.lex_state = 282}, - [218] = {.lex_state = 282}, - [219] = {.lex_state = 282}, - [220] = {.lex_state = 282}, - [221] = {.lex_state = 282}, - [222] = {.lex_state = 282}, - [223] = {.lex_state = 282}, - [224] = {.lex_state = 282}, - [225] = {.lex_state = 282}, - [226] = {.lex_state = 282}, - [227] = {.lex_state = 282}, - [228] = {.lex_state = 282}, - [229] = {.lex_state = 282}, - [230] = {.lex_state = 282}, - [231] = {.lex_state = 282}, - [232] = {.lex_state = 282}, - [233] = {.lex_state = 282}, - [234] = {.lex_state = 282}, - [235] = {.lex_state = 282}, - [236] = {.lex_state = 282}, - [237] = {.lex_state = 282}, - [238] = {.lex_state = 282}, - [239] = {.lex_state = 282}, - [240] = {.lex_state = 282}, - [241] = {.lex_state = 282}, - [242] = {.lex_state = 282}, - [243] = {.lex_state = 282}, - [244] = {.lex_state = 282}, - [245] = {.lex_state = 282}, - [246] = {.lex_state = 282}, - [247] = {.lex_state = 282}, - [248] = {.lex_state = 282}, - [249] = {.lex_state = 282}, - [250] = {.lex_state = 282}, - [251] = {.lex_state = 282}, - [252] = {.lex_state = 282}, - [253] = {.lex_state = 282}, - [254] = {.lex_state = 282}, - [255] = {.lex_state = 282}, - [256] = {.lex_state = 282}, - [257] = {.lex_state = 282}, - [258] = {.lex_state = 282}, - [259] = {.lex_state = 282}, - [260] = {.lex_state = 282}, - [261] = {.lex_state = 282}, - [262] = {.lex_state = 282}, - [263] = {.lex_state = 282}, - [264] = {.lex_state = 282}, - [265] = {.lex_state = 282}, - [266] = {.lex_state = 282}, - [267] = {.lex_state = 282}, - [268] = {.lex_state = 282}, - [269] = {.lex_state = 282}, - [270] = {.lex_state = 282}, - [271] = {.lex_state = 282}, - [272] = {.lex_state = 282}, - [273] = {.lex_state = 282}, - [274] = {.lex_state = 282}, - [275] = {.lex_state = 282}, - [276] = {.lex_state = 282}, - [277] = {.lex_state = 282}, - [278] = {.lex_state = 282}, - [279] = {.lex_state = 282}, - [280] = {.lex_state = 282}, - [281] = {.lex_state = 282}, - [282] = {.lex_state = 282}, - [283] = {.lex_state = 282}, - [284] = {.lex_state = 282}, - [285] = {.lex_state = 282}, - [286] = {.lex_state = 282}, - [287] = {.lex_state = 282}, - [288] = {.lex_state = 282}, - [289] = {.lex_state = 282}, - [290] = {.lex_state = 282}, - [291] = {.lex_state = 282}, - [292] = {.lex_state = 282}, - [293] = {.lex_state = 282}, - [294] = {.lex_state = 282}, - [295] = {.lex_state = 282}, - [296] = {.lex_state = 282}, - [297] = {.lex_state = 282}, - [298] = {.lex_state = 282}, - [299] = {.lex_state = 282}, - [300] = {.lex_state = 282}, - [301] = {.lex_state = 282}, - [302] = {.lex_state = 282}, - [303] = {.lex_state = 282}, - [304] = {.lex_state = 282}, - [305] = {.lex_state = 282}, - [306] = {.lex_state = 282}, - [307] = {.lex_state = 282}, - [308] = {.lex_state = 282}, - [309] = {.lex_state = 282}, - [310] = {.lex_state = 282}, - [311] = {.lex_state = 282}, - [312] = {.lex_state = 282}, - [313] = {.lex_state = 282}, - [314] = {.lex_state = 282}, - [315] = {.lex_state = 282}, - [316] = {.lex_state = 282}, - [317] = {.lex_state = 282}, - [318] = {.lex_state = 282}, - [319] = {.lex_state = 282}, - [320] = {.lex_state = 282}, - [321] = {.lex_state = 282}, - [322] = {.lex_state = 282}, - [323] = {.lex_state = 282}, - [324] = {.lex_state = 282}, - [325] = {.lex_state = 282}, - [326] = {.lex_state = 282}, - [327] = {.lex_state = 282}, - [328] = {.lex_state = 282}, - [329] = {.lex_state = 282}, - [330] = {.lex_state = 282}, - [331] = {.lex_state = 282}, - [332] = {.lex_state = 282}, - [333] = {.lex_state = 282}, - [334] = {.lex_state = 282}, - [335] = {.lex_state = 282}, - [336] = {.lex_state = 282}, - [337] = {.lex_state = 282}, - [338] = {.lex_state = 282}, - [339] = {.lex_state = 282}, - [340] = {.lex_state = 282}, - [341] = {.lex_state = 282}, - [342] = {.lex_state = 282}, - [343] = {.lex_state = 282}, - [344] = {.lex_state = 282}, - [345] = {.lex_state = 282}, - [346] = {.lex_state = 282}, - [347] = {.lex_state = 282}, - [348] = {.lex_state = 282}, - [349] = {.lex_state = 282}, - [350] = {.lex_state = 282}, - [351] = {.lex_state = 282}, - [352] = {.lex_state = 282}, - [353] = {.lex_state = 282}, - [354] = {.lex_state = 282}, - [355] = {.lex_state = 282}, - [356] = {.lex_state = 282}, - [357] = {.lex_state = 282}, - [358] = {.lex_state = 282}, - [359] = {.lex_state = 282}, - [360] = {.lex_state = 282}, - [361] = {.lex_state = 282}, - [362] = {.lex_state = 282}, - [363] = {.lex_state = 282}, - [364] = {.lex_state = 282}, - [365] = {.lex_state = 282}, - [366] = {.lex_state = 282}, - [367] = {.lex_state = 282}, - [368] = {.lex_state = 282}, - [369] = {.lex_state = 282}, - [370] = {.lex_state = 282}, - [371] = {.lex_state = 282}, - [372] = {.lex_state = 282}, - [373] = {.lex_state = 282}, - [374] = {.lex_state = 282}, - [375] = {.lex_state = 282}, - [376] = {.lex_state = 282}, - [377] = {.lex_state = 282}, - [378] = {.lex_state = 282}, - [379] = {.lex_state = 282}, - [380] = {.lex_state = 282}, - [381] = {.lex_state = 282}, - [382] = {.lex_state = 282}, - [383] = {.lex_state = 282}, - [384] = {.lex_state = 282}, - [385] = {.lex_state = 282}, - [386] = {.lex_state = 282}, - [387] = {.lex_state = 282}, - [388] = {.lex_state = 282}, - [389] = {.lex_state = 282}, - [390] = {.lex_state = 282}, - [391] = {.lex_state = 282}, - [392] = {.lex_state = 282}, - [393] = {.lex_state = 282}, - [394] = {.lex_state = 282}, - [395] = {.lex_state = 282}, - [396] = {.lex_state = 282}, - [397] = {.lex_state = 282}, - [398] = {.lex_state = 282}, - [399] = {.lex_state = 282}, - [400] = {.lex_state = 282}, - [401] = {.lex_state = 282}, - [402] = {.lex_state = 282}, - [403] = {.lex_state = 282}, - [404] = {.lex_state = 282}, - [405] = {.lex_state = 282}, - [406] = {.lex_state = 282}, - [407] = {.lex_state = 282}, - [408] = {.lex_state = 282}, - [409] = {.lex_state = 282}, - [410] = {.lex_state = 282}, - [411] = {.lex_state = 282}, - [412] = {.lex_state = 282}, - [413] = {.lex_state = 282}, - [414] = {.lex_state = 282}, - [415] = {.lex_state = 282}, - [416] = {.lex_state = 282}, - [417] = {.lex_state = 282}, - [418] = {.lex_state = 282}, - [419] = {.lex_state = 282}, - [420] = {.lex_state = 282}, - [421] = {.lex_state = 282}, - [422] = {.lex_state = 282}, - [423] = {.lex_state = 282}, - [424] = {.lex_state = 282}, - [425] = {.lex_state = 282}, - [426] = {.lex_state = 282}, - [427] = {.lex_state = 282}, - [428] = {.lex_state = 282}, - [429] = {.lex_state = 282}, - [430] = {.lex_state = 282}, - [431] = {.lex_state = 282}, - [432] = {.lex_state = 282}, - [433] = {.lex_state = 282}, - [434] = {.lex_state = 282}, - [435] = {.lex_state = 282}, - [436] = {.lex_state = 282}, - [437] = {.lex_state = 282}, - [438] = {.lex_state = 282}, - [439] = {.lex_state = 282}, - [440] = {.lex_state = 282}, - [441] = {.lex_state = 282}, - [442] = {.lex_state = 282}, - [443] = {.lex_state = 282}, - [444] = {.lex_state = 282}, - [445] = {.lex_state = 282}, - [446] = {.lex_state = 282}, - [447] = {.lex_state = 282}, - [448] = {.lex_state = 282}, - [449] = {.lex_state = 282}, - [450] = {.lex_state = 282}, - [451] = {.lex_state = 282}, - [452] = {.lex_state = 282}, - [453] = {.lex_state = 282}, - [454] = {.lex_state = 282}, - [455] = {.lex_state = 282}, - [456] = {.lex_state = 282}, - [457] = {.lex_state = 282}, - [458] = {.lex_state = 282}, - [459] = {.lex_state = 282}, - [460] = {.lex_state = 282}, - [461] = {.lex_state = 282}, - [462] = {.lex_state = 282}, - [463] = {.lex_state = 282}, - [464] = {.lex_state = 282}, - [465] = {.lex_state = 282}, - [466] = {.lex_state = 282}, - [467] = {.lex_state = 282}, - [468] = {.lex_state = 282}, - [469] = {.lex_state = 282}, - [470] = {.lex_state = 282}, - [471] = {.lex_state = 282}, - [472] = {.lex_state = 282}, - [473] = {.lex_state = 282}, - [474] = {.lex_state = 282}, - [475] = {.lex_state = 282}, - [476] = {.lex_state = 282}, - [477] = {.lex_state = 282}, - [478] = {.lex_state = 282}, - [479] = {.lex_state = 282}, - [480] = {.lex_state = 282}, - [481] = {.lex_state = 282}, - [482] = {.lex_state = 282}, - [483] = {.lex_state = 282}, - [484] = {.lex_state = 282}, - [485] = {.lex_state = 282}, - [486] = {.lex_state = 282}, - [487] = {.lex_state = 282}, - [488] = {.lex_state = 282}, - [489] = {.lex_state = 282}, - [490] = {.lex_state = 282}, - [491] = {.lex_state = 282}, - [492] = {.lex_state = 282}, - [493] = {.lex_state = 282}, - [494] = {.lex_state = 282}, - [495] = {.lex_state = 282}, - [496] = {.lex_state = 282}, - [497] = {.lex_state = 282}, - [498] = {.lex_state = 282}, - [499] = {.lex_state = 282}, - [500] = {.lex_state = 282}, - [501] = {.lex_state = 282}, - [502] = {.lex_state = 282}, - [503] = {.lex_state = 282}, - [504] = {.lex_state = 282}, - [505] = {.lex_state = 282}, - [506] = {.lex_state = 282}, - [507] = {.lex_state = 282}, - [508] = {.lex_state = 282}, - [509] = {.lex_state = 282}, - [510] = {.lex_state = 282}, - [511] = {.lex_state = 282}, - [512] = {.lex_state = 282}, - [513] = {.lex_state = 282}, - [514] = {.lex_state = 282}, - [515] = {.lex_state = 282}, - [516] = {.lex_state = 282}, - [517] = {.lex_state = 282}, - [518] = {.lex_state = 282}, - [519] = {.lex_state = 282}, - [520] = {.lex_state = 282}, - [521] = {.lex_state = 282}, - [522] = {.lex_state = 282}, - [523] = {.lex_state = 282}, - [524] = {.lex_state = 282}, - [525] = {.lex_state = 282}, - [526] = {.lex_state = 282}, - [527] = {.lex_state = 282}, - [528] = {.lex_state = 282}, - [529] = {.lex_state = 282}, - [530] = {.lex_state = 282}, - [531] = {.lex_state = 282}, - [532] = {.lex_state = 282}, - [533] = {.lex_state = 282}, - [534] = {.lex_state = 282}, - [535] = {.lex_state = 282}, - [536] = {.lex_state = 282}, - [537] = {.lex_state = 282}, - [538] = {.lex_state = 282}, - [539] = {.lex_state = 282}, - [540] = {.lex_state = 282}, - [541] = {.lex_state = 282}, - [542] = {.lex_state = 282}, - [543] = {.lex_state = 282}, - [544] = {.lex_state = 282}, - [545] = {.lex_state = 282}, - [546] = {.lex_state = 282}, - [547] = {.lex_state = 282}, - [548] = {.lex_state = 282}, - [549] = {.lex_state = 282}, - [550] = {.lex_state = 282}, - [551] = {.lex_state = 282}, - [552] = {.lex_state = 282}, - [553] = {.lex_state = 282}, - [554] = {.lex_state = 282}, - [555] = {.lex_state = 282}, - [556] = {.lex_state = 282}, - [557] = {.lex_state = 282}, - [558] = {.lex_state = 282}, - [559] = {.lex_state = 282}, - [560] = {.lex_state = 282}, - [561] = {.lex_state = 282}, - [562] = {.lex_state = 282}, - [563] = {.lex_state = 282}, - [564] = {.lex_state = 282}, - [565] = {.lex_state = 282}, - [566] = {.lex_state = 282}, - [567] = {.lex_state = 282}, - [568] = {.lex_state = 282}, - [569] = {.lex_state = 282}, - [570] = {.lex_state = 282}, - [571] = {.lex_state = 282}, - [572] = {.lex_state = 282}, - [573] = {.lex_state = 282}, - [574] = {.lex_state = 282}, - [575] = {.lex_state = 282}, - [576] = {.lex_state = 282}, - [577] = {.lex_state = 282}, - [578] = {.lex_state = 282}, - [579] = {.lex_state = 282}, - [580] = {.lex_state = 282}, - [581] = {.lex_state = 282}, - [582] = {.lex_state = 282}, - [583] = {.lex_state = 282}, - [584] = {.lex_state = 282}, - [585] = {.lex_state = 282}, - [586] = {.lex_state = 282}, - [587] = {.lex_state = 282}, - [588] = {.lex_state = 282}, - [589] = {.lex_state = 282}, - [590] = {.lex_state = 282}, - [591] = {.lex_state = 282}, - [592] = {.lex_state = 282}, - [593] = {.lex_state = 282}, - [594] = {.lex_state = 282}, - [595] = {.lex_state = 282}, - [596] = {.lex_state = 282}, - [597] = {.lex_state = 282}, - [598] = {.lex_state = 282}, - [599] = {.lex_state = 282}, - [600] = {.lex_state = 282}, - [601] = {.lex_state = 282}, - [602] = {.lex_state = 282}, - [603] = {.lex_state = 282}, - [604] = {.lex_state = 282}, - [605] = {.lex_state = 282}, - [606] = {.lex_state = 282}, - [607] = {.lex_state = 282}, - [608] = {.lex_state = 282}, - [609] = {.lex_state = 282}, - [610] = {.lex_state = 282}, - [611] = {.lex_state = 282}, - [612] = {.lex_state = 282}, - [613] = {.lex_state = 282}, - [614] = {.lex_state = 282}, - [615] = {.lex_state = 282}, - [616] = {.lex_state = 282}, - [617] = {.lex_state = 282}, - [618] = {.lex_state = 282}, - [619] = {.lex_state = 282}, - [620] = {.lex_state = 282}, - [621] = {.lex_state = 282}, - [622] = {.lex_state = 282}, - [623] = {.lex_state = 282}, - [624] = {.lex_state = 282}, - [625] = {.lex_state = 282}, - [626] = {.lex_state = 282}, - [627] = {.lex_state = 282}, - [628] = {.lex_state = 282}, - [629] = {.lex_state = 282}, - [630] = {.lex_state = 282}, - [631] = {.lex_state = 282}, - [632] = {.lex_state = 282}, - [633] = {.lex_state = 282}, - [634] = {.lex_state = 282}, - [635] = {.lex_state = 282}, - [636] = {.lex_state = 282}, - [637] = {.lex_state = 282}, - [638] = {.lex_state = 282}, - [639] = {.lex_state = 282}, - [640] = {.lex_state = 282}, - [641] = {.lex_state = 282}, - [642] = {.lex_state = 282}, - [643] = {.lex_state = 282}, - [644] = {.lex_state = 282}, - [645] = {.lex_state = 282}, - [646] = {.lex_state = 282}, - [647] = {.lex_state = 282}, - [648] = {.lex_state = 282}, - [649] = {.lex_state = 282}, - [650] = {.lex_state = 282}, - [651] = {.lex_state = 282}, - [652] = {.lex_state = 282}, - [653] = {.lex_state = 282}, - [654] = {.lex_state = 282}, - [655] = {.lex_state = 282}, - [656] = {.lex_state = 282}, - [657] = {.lex_state = 282}, - [658] = {.lex_state = 282}, - [659] = {.lex_state = 282}, - [660] = {.lex_state = 282}, - [661] = {.lex_state = 282}, - [662] = {.lex_state = 282}, - [663] = {.lex_state = 282}, - [664] = {.lex_state = 282}, - [665] = {.lex_state = 282}, - [666] = {.lex_state = 282}, - [667] = {.lex_state = 282}, - [668] = {.lex_state = 282}, - [669] = {.lex_state = 282}, - [670] = {.lex_state = 282}, - [671] = {.lex_state = 282}, - [672] = {.lex_state = 282}, - [673] = {.lex_state = 282}, - [674] = {.lex_state = 282}, - [675] = {.lex_state = 282}, - [676] = {.lex_state = 282}, - [677] = {.lex_state = 282}, - [678] = {.lex_state = 282}, - [679] = {.lex_state = 282}, - [680] = {.lex_state = 282}, - [681] = {.lex_state = 282}, - [682] = {.lex_state = 282}, - [683] = {.lex_state = 282}, - [684] = {.lex_state = 282}, - [685] = {.lex_state = 282}, - [686] = {.lex_state = 282}, - [687] = {.lex_state = 282}, - [688] = {.lex_state = 282}, - [689] = {.lex_state = 282}, - [690] = {.lex_state = 282}, - [691] = {.lex_state = 282}, - [692] = {.lex_state = 282}, - [693] = {.lex_state = 282}, - [694] = {.lex_state = 282}, - [695] = {.lex_state = 282}, - [696] = {.lex_state = 282}, - [697] = {.lex_state = 282}, - [698] = {.lex_state = 282}, - [699] = {.lex_state = 282}, - [700] = {.lex_state = 282}, - [701] = {.lex_state = 282}, - [702] = {.lex_state = 282}, - [703] = {.lex_state = 282}, - [704] = {.lex_state = 282}, - [705] = {.lex_state = 282}, - [706] = {.lex_state = 282}, - [707] = {.lex_state = 282}, - [708] = {.lex_state = 282}, - [709] = {.lex_state = 282}, - [710] = {.lex_state = 282}, - [711] = {.lex_state = 282}, - [712] = {.lex_state = 282}, - [713] = {.lex_state = 282}, - [714] = {.lex_state = 282}, - [715] = {.lex_state = 282}, - [716] = {.lex_state = 282}, - [717] = {.lex_state = 282}, - [718] = {.lex_state = 282}, - [719] = {.lex_state = 282}, - [720] = {.lex_state = 282}, - [721] = {.lex_state = 282}, - [722] = {.lex_state = 282}, - [723] = {.lex_state = 282}, - [724] = {.lex_state = 282}, - [725] = {.lex_state = 282}, - [726] = {.lex_state = 282}, - [727] = {.lex_state = 282}, - [728] = {.lex_state = 282}, - [729] = {.lex_state = 282}, - [730] = {.lex_state = 282}, - [731] = {.lex_state = 282}, - [732] = {.lex_state = 282}, - [733] = {.lex_state = 282}, - [734] = {.lex_state = 282}, - [735] = {.lex_state = 282}, - [736] = {.lex_state = 282}, - [737] = {.lex_state = 282}, - [738] = {.lex_state = 282}, - [739] = {.lex_state = 282}, - [740] = {.lex_state = 282}, - [741] = {.lex_state = 282}, - [742] = {.lex_state = 282}, - [743] = {.lex_state = 282}, - [744] = {.lex_state = 282}, - [745] = {.lex_state = 282}, - [746] = {.lex_state = 282}, - [747] = {.lex_state = 282}, - [748] = {.lex_state = 282}, - [749] = {.lex_state = 282}, - [750] = {.lex_state = 282}, - [751] = {.lex_state = 282}, - [752] = {.lex_state = 282}, - [753] = {.lex_state = 282}, - [754] = {.lex_state = 282}, - [755] = {.lex_state = 282}, - [756] = {.lex_state = 282}, - [757] = {.lex_state = 282}, - [758] = {.lex_state = 282}, - [759] = {.lex_state = 282}, - [760] = {.lex_state = 282}, - [761] = {.lex_state = 282}, - [762] = {.lex_state = 282}, - [763] = {.lex_state = 282}, - [764] = {.lex_state = 282}, - [765] = {.lex_state = 282}, - [766] = {.lex_state = 282}, - [767] = {.lex_state = 282}, - [768] = {.lex_state = 282}, - [769] = {.lex_state = 282}, - [770] = {.lex_state = 282}, - [771] = {.lex_state = 282}, - [772] = {.lex_state = 282}, - [773] = {.lex_state = 282}, - [774] = {.lex_state = 282}, - [775] = {.lex_state = 282}, - [776] = {.lex_state = 282}, - [777] = {.lex_state = 282}, - [778] = {.lex_state = 282}, - [779] = {.lex_state = 282}, - [780] = {.lex_state = 282}, - [781] = {.lex_state = 282}, - [782] = {.lex_state = 282}, - [783] = {.lex_state = 282}, - [784] = {.lex_state = 282}, - [785] = {.lex_state = 282}, - [786] = {.lex_state = 282}, - [787] = {.lex_state = 282}, - [788] = {.lex_state = 282}, - [789] = {.lex_state = 282}, - [790] = {.lex_state = 282}, - [791] = {.lex_state = 282}, - [792] = {.lex_state = 282}, - [793] = {.lex_state = 282}, - [794] = {.lex_state = 282}, - [795] = {.lex_state = 282}, - [796] = {.lex_state = 282}, - [797] = {.lex_state = 282}, - [798] = {.lex_state = 282}, - [799] = {.lex_state = 282}, - [800] = {.lex_state = 282}, - [801] = {.lex_state = 282}, - [802] = {.lex_state = 282}, - [803] = {.lex_state = 282}, - [804] = {.lex_state = 282}, - [805] = {.lex_state = 282}, - [806] = {.lex_state = 282}, - [807] = {.lex_state = 282}, - [808] = {.lex_state = 282}, - [809] = {.lex_state = 282}, - [810] = {.lex_state = 282}, - [811] = {.lex_state = 282}, - [812] = {.lex_state = 282}, + [99] = {.lex_state = 288}, + [100] = {.lex_state = 288}, + [101] = {.lex_state = 288}, + [102] = {.lex_state = 288}, + [103] = {.lex_state = 288}, + [104] = {.lex_state = 288}, + [105] = {.lex_state = 288}, + [106] = {.lex_state = 288}, + [107] = {.lex_state = 288}, + [108] = {.lex_state = 288}, + [109] = {.lex_state = 288}, + [110] = {.lex_state = 288}, + [111] = {.lex_state = 288}, + [112] = {.lex_state = 288}, + [113] = {.lex_state = 288}, + [114] = {.lex_state = 288}, + [115] = {.lex_state = 288}, + [116] = {.lex_state = 288}, + [117] = {.lex_state = 288}, + [118] = {.lex_state = 288}, + [119] = {.lex_state = 288}, + [120] = {.lex_state = 288}, + [121] = {.lex_state = 288}, + [122] = {.lex_state = 288}, + [123] = {.lex_state = 288}, + [124] = {.lex_state = 15}, + [125] = {.lex_state = 288}, + [126] = {.lex_state = 288}, + [127] = {.lex_state = 288}, + [128] = {.lex_state = 15}, + [129] = {.lex_state = 288}, + [130] = {.lex_state = 288}, + [131] = {.lex_state = 288}, + [132] = {.lex_state = 288}, + [133] = {.lex_state = 288}, + [134] = {.lex_state = 288}, + [135] = {.lex_state = 288}, + [136] = {.lex_state = 288}, + [137] = {.lex_state = 288}, + [138] = {.lex_state = 288}, + [139] = {.lex_state = 288}, + [140] = {.lex_state = 288}, + [141] = {.lex_state = 288}, + [142] = {.lex_state = 288}, + [143] = {.lex_state = 288}, + [144] = {.lex_state = 288}, + [145] = {.lex_state = 288}, + [146] = {.lex_state = 288}, + [147] = {.lex_state = 288}, + [148] = {.lex_state = 288}, + [149] = {.lex_state = 288}, + [150] = {.lex_state = 288}, + [151] = {.lex_state = 288}, + [152] = {.lex_state = 15}, + [153] = {.lex_state = 288}, + [154] = {.lex_state = 288}, + [155] = {.lex_state = 288}, + [156] = {.lex_state = 288}, + [157] = {.lex_state = 288}, + [158] = {.lex_state = 288}, + [159] = {.lex_state = 288}, + [160] = {.lex_state = 288}, + [161] = {.lex_state = 288}, + [162] = {.lex_state = 288}, + [163] = {.lex_state = 288}, + [164] = {.lex_state = 288}, + [165] = {.lex_state = 288}, + [166] = {.lex_state = 288}, + [167] = {.lex_state = 288}, + [168] = {.lex_state = 288}, + [169] = {.lex_state = 288}, + [170] = {.lex_state = 288}, + [171] = {.lex_state = 288}, + [172] = {.lex_state = 288}, + [173] = {.lex_state = 288}, + [174] = {.lex_state = 288}, + [175] = {.lex_state = 288}, + [176] = {.lex_state = 288}, + [177] = {.lex_state = 288}, + [178] = {.lex_state = 288}, + [179] = {.lex_state = 288}, + [180] = {.lex_state = 288}, + [181] = {.lex_state = 288}, + [182] = {.lex_state = 288}, + [183] = {.lex_state = 288}, + [184] = {.lex_state = 288}, + [185] = {.lex_state = 288}, + [186] = {.lex_state = 288}, + [187] = {.lex_state = 288}, + [188] = {.lex_state = 288}, + [189] = {.lex_state = 288}, + [190] = {.lex_state = 288}, + [191] = {.lex_state = 288}, + [192] = {.lex_state = 288}, + [193] = {.lex_state = 288}, + [194] = {.lex_state = 288}, + [195] = {.lex_state = 288}, + [196] = {.lex_state = 288}, + [197] = {.lex_state = 288}, + [198] = {.lex_state = 288}, + [199] = {.lex_state = 288}, + [200] = {.lex_state = 288}, + [201] = {.lex_state = 288}, + [202] = {.lex_state = 288}, + [203] = {.lex_state = 288}, + [204] = {.lex_state = 288}, + [205] = {.lex_state = 288}, + [206] = {.lex_state = 288}, + [207] = {.lex_state = 288}, + [208] = {.lex_state = 288}, + [209] = {.lex_state = 288}, + [210] = {.lex_state = 288}, + [211] = {.lex_state = 288}, + [212] = {.lex_state = 288}, + [213] = {.lex_state = 288}, + [214] = {.lex_state = 288}, + [215] = {.lex_state = 288}, + [216] = {.lex_state = 288}, + [217] = {.lex_state = 288}, + [218] = {.lex_state = 288}, + [219] = {.lex_state = 288}, + [220] = {.lex_state = 288}, + [221] = {.lex_state = 288}, + [222] = {.lex_state = 288}, + [223] = {.lex_state = 288}, + [224] = {.lex_state = 288}, + [225] = {.lex_state = 288}, + [226] = {.lex_state = 288}, + [227] = {.lex_state = 288}, + [228] = {.lex_state = 288}, + [229] = {.lex_state = 288}, + [230] = {.lex_state = 288}, + [231] = {.lex_state = 288}, + [232] = {.lex_state = 288}, + [233] = {.lex_state = 288}, + [234] = {.lex_state = 288}, + [235] = {.lex_state = 288}, + [236] = {.lex_state = 288}, + [237] = {.lex_state = 288}, + [238] = {.lex_state = 288}, + [239] = {.lex_state = 288}, + [240] = {.lex_state = 288}, + [241] = {.lex_state = 288}, + [242] = {.lex_state = 288}, + [243] = {.lex_state = 288}, + [244] = {.lex_state = 288}, + [245] = {.lex_state = 288}, + [246] = {.lex_state = 288}, + [247] = {.lex_state = 288}, + [248] = {.lex_state = 288}, + [249] = {.lex_state = 288}, + [250] = {.lex_state = 288}, + [251] = {.lex_state = 288}, + [252] = {.lex_state = 288}, + [253] = {.lex_state = 288}, + [254] = {.lex_state = 288}, + [255] = {.lex_state = 288}, + [256] = {.lex_state = 288}, + [257] = {.lex_state = 288}, + [258] = {.lex_state = 288}, + [259] = {.lex_state = 288}, + [260] = {.lex_state = 288}, + [261] = {.lex_state = 288}, + [262] = {.lex_state = 288}, + [263] = {.lex_state = 288}, + [264] = {.lex_state = 288}, + [265] = {.lex_state = 288}, + [266] = {.lex_state = 288}, + [267] = {.lex_state = 288}, + [268] = {.lex_state = 288}, + [269] = {.lex_state = 288}, + [270] = {.lex_state = 288}, + [271] = {.lex_state = 288}, + [272] = {.lex_state = 288}, + [273] = {.lex_state = 288}, + [274] = {.lex_state = 288}, + [275] = {.lex_state = 288}, + [276] = {.lex_state = 288}, + [277] = {.lex_state = 288}, + [278] = {.lex_state = 288}, + [279] = {.lex_state = 288}, + [280] = {.lex_state = 288}, + [281] = {.lex_state = 288}, + [282] = {.lex_state = 288}, + [283] = {.lex_state = 288}, + [284] = {.lex_state = 288}, + [285] = {.lex_state = 288}, + [286] = {.lex_state = 288}, + [287] = {.lex_state = 288}, + [288] = {.lex_state = 288}, + [289] = {.lex_state = 288}, + [290] = {.lex_state = 288}, + [291] = {.lex_state = 288}, + [292] = {.lex_state = 288}, + [293] = {.lex_state = 288}, + [294] = {.lex_state = 288}, + [295] = {.lex_state = 288}, + [296] = {.lex_state = 288}, + [297] = {.lex_state = 288}, + [298] = {.lex_state = 288}, + [299] = {.lex_state = 288}, + [300] = {.lex_state = 288}, + [301] = {.lex_state = 288}, + [302] = {.lex_state = 288}, + [303] = {.lex_state = 288}, + [304] = {.lex_state = 288}, + [305] = {.lex_state = 288}, + [306] = {.lex_state = 288}, + [307] = {.lex_state = 288}, + [308] = {.lex_state = 288}, + [309] = {.lex_state = 288}, + [310] = {.lex_state = 288}, + [311] = {.lex_state = 288}, + [312] = {.lex_state = 288}, + [313] = {.lex_state = 288}, + [314] = {.lex_state = 288}, + [315] = {.lex_state = 288}, + [316] = {.lex_state = 288}, + [317] = {.lex_state = 288}, + [318] = {.lex_state = 288}, + [319] = {.lex_state = 288}, + [320] = {.lex_state = 288}, + [321] = {.lex_state = 288}, + [322] = {.lex_state = 288}, + [323] = {.lex_state = 288}, + [324] = {.lex_state = 288}, + [325] = {.lex_state = 288}, + [326] = {.lex_state = 288}, + [327] = {.lex_state = 288}, + [328] = {.lex_state = 288}, + [329] = {.lex_state = 288}, + [330] = {.lex_state = 288}, + [331] = {.lex_state = 288}, + [332] = {.lex_state = 288}, + [333] = {.lex_state = 288}, + [334] = {.lex_state = 288}, + [335] = {.lex_state = 288}, + [336] = {.lex_state = 288}, + [337] = {.lex_state = 288}, + [338] = {.lex_state = 288}, + [339] = {.lex_state = 288}, + [340] = {.lex_state = 288}, + [341] = {.lex_state = 288}, + [342] = {.lex_state = 288}, + [343] = {.lex_state = 288}, + [344] = {.lex_state = 288}, + [345] = {.lex_state = 288}, + [346] = {.lex_state = 288}, + [347] = {.lex_state = 288}, + [348] = {.lex_state = 288}, + [349] = {.lex_state = 288}, + [350] = {.lex_state = 288}, + [351] = {.lex_state = 288}, + [352] = {.lex_state = 288}, + [353] = {.lex_state = 288}, + [354] = {.lex_state = 288}, + [355] = {.lex_state = 288}, + [356] = {.lex_state = 288}, + [357] = {.lex_state = 288}, + [358] = {.lex_state = 288}, + [359] = {.lex_state = 288}, + [360] = {.lex_state = 288}, + [361] = {.lex_state = 288}, + [362] = {.lex_state = 288}, + [363] = {.lex_state = 288}, + [364] = {.lex_state = 288}, + [365] = {.lex_state = 288}, + [366] = {.lex_state = 288}, + [367] = {.lex_state = 288}, + [368] = {.lex_state = 288}, + [369] = {.lex_state = 288}, + [370] = {.lex_state = 288}, + [371] = {.lex_state = 288}, + [372] = {.lex_state = 288}, + [373] = {.lex_state = 288}, + [374] = {.lex_state = 288}, + [375] = {.lex_state = 288}, + [376] = {.lex_state = 288}, + [377] = {.lex_state = 288}, + [378] = {.lex_state = 288}, + [379] = {.lex_state = 288}, + [380] = {.lex_state = 288}, + [381] = {.lex_state = 288}, + [382] = {.lex_state = 288}, + [383] = {.lex_state = 288}, + [384] = {.lex_state = 288}, + [385] = {.lex_state = 288}, + [386] = {.lex_state = 288}, + [387] = {.lex_state = 288}, + [388] = {.lex_state = 288}, + [389] = {.lex_state = 288}, + [390] = {.lex_state = 288}, + [391] = {.lex_state = 288}, + [392] = {.lex_state = 288}, + [393] = {.lex_state = 288}, + [394] = {.lex_state = 288}, + [395] = {.lex_state = 288}, + [396] = {.lex_state = 288}, + [397] = {.lex_state = 288}, + [398] = {.lex_state = 288}, + [399] = {.lex_state = 288}, + [400] = {.lex_state = 288}, + [401] = {.lex_state = 288}, + [402] = {.lex_state = 288}, + [403] = {.lex_state = 288}, + [404] = {.lex_state = 288}, + [405] = {.lex_state = 288}, + [406] = {.lex_state = 288}, + [407] = {.lex_state = 288}, + [408] = {.lex_state = 288}, + [409] = {.lex_state = 288}, + [410] = {.lex_state = 288}, + [411] = {.lex_state = 288}, + [412] = {.lex_state = 288}, + [413] = {.lex_state = 288}, + [414] = {.lex_state = 288}, + [415] = {.lex_state = 288}, + [416] = {.lex_state = 288}, + [417] = {.lex_state = 288}, + [418] = {.lex_state = 288}, + [419] = {.lex_state = 288}, + [420] = {.lex_state = 288}, + [421] = {.lex_state = 288}, + [422] = {.lex_state = 288}, + [423] = {.lex_state = 288}, + [424] = {.lex_state = 288}, + [425] = {.lex_state = 288}, + [426] = {.lex_state = 288}, + [427] = {.lex_state = 288}, + [428] = {.lex_state = 288}, + [429] = {.lex_state = 288}, + [430] = {.lex_state = 288}, + [431] = {.lex_state = 288}, + [432] = {.lex_state = 288}, + [433] = {.lex_state = 288}, + [434] = {.lex_state = 288}, + [435] = {.lex_state = 288}, + [436] = {.lex_state = 288}, + [437] = {.lex_state = 288}, + [438] = {.lex_state = 288}, + [439] = {.lex_state = 288}, + [440] = {.lex_state = 288}, + [441] = {.lex_state = 288}, + [442] = {.lex_state = 288}, + [443] = {.lex_state = 288}, + [444] = {.lex_state = 288}, + [445] = {.lex_state = 288}, + [446] = {.lex_state = 288}, + [447] = {.lex_state = 288}, + [448] = {.lex_state = 288}, + [449] = {.lex_state = 288}, + [450] = {.lex_state = 288}, + [451] = {.lex_state = 288}, + [452] = {.lex_state = 288}, + [453] = {.lex_state = 288}, + [454] = {.lex_state = 288}, + [455] = {.lex_state = 288}, + [456] = {.lex_state = 288}, + [457] = {.lex_state = 288}, + [458] = {.lex_state = 288}, + [459] = {.lex_state = 288}, + [460] = {.lex_state = 288}, + [461] = {.lex_state = 288}, + [462] = {.lex_state = 288}, + [463] = {.lex_state = 288}, + [464] = {.lex_state = 288}, + [465] = {.lex_state = 288}, + [466] = {.lex_state = 288}, + [467] = {.lex_state = 288}, + [468] = {.lex_state = 288}, + [469] = {.lex_state = 288}, + [470] = {.lex_state = 288}, + [471] = {.lex_state = 288}, + [472] = {.lex_state = 288}, + [473] = {.lex_state = 288}, + [474] = {.lex_state = 288}, + [475] = {.lex_state = 288}, + [476] = {.lex_state = 288}, + [477] = {.lex_state = 288}, + [478] = {.lex_state = 288}, + [479] = {.lex_state = 288}, + [480] = {.lex_state = 288}, + [481] = {.lex_state = 288}, + [482] = {.lex_state = 288}, + [483] = {.lex_state = 288}, + [484] = {.lex_state = 288}, + [485] = {.lex_state = 288}, + [486] = {.lex_state = 288}, + [487] = {.lex_state = 288}, + [488] = {.lex_state = 288}, + [489] = {.lex_state = 288}, + [490] = {.lex_state = 288}, + [491] = {.lex_state = 288}, + [492] = {.lex_state = 288}, + [493] = {.lex_state = 288}, + [494] = {.lex_state = 288}, + [495] = {.lex_state = 288}, + [496] = {.lex_state = 288}, + [497] = {.lex_state = 288}, + [498] = {.lex_state = 288}, + [499] = {.lex_state = 288}, + [500] = {.lex_state = 288}, + [501] = {.lex_state = 288}, + [502] = {.lex_state = 288}, + [503] = {.lex_state = 288}, + [504] = {.lex_state = 288}, + [505] = {.lex_state = 288}, + [506] = {.lex_state = 288}, + [507] = {.lex_state = 288}, + [508] = {.lex_state = 288}, + [509] = {.lex_state = 288}, + [510] = {.lex_state = 288}, + [511] = {.lex_state = 288}, + [512] = {.lex_state = 288}, + [513] = {.lex_state = 288}, + [514] = {.lex_state = 288}, + [515] = {.lex_state = 288}, + [516] = {.lex_state = 288}, + [517] = {.lex_state = 288}, + [518] = {.lex_state = 288}, + [519] = {.lex_state = 288}, + [520] = {.lex_state = 288}, + [521] = {.lex_state = 288}, + [522] = {.lex_state = 288}, + [523] = {.lex_state = 288}, + [524] = {.lex_state = 288}, + [525] = {.lex_state = 288}, + [526] = {.lex_state = 288}, + [527] = {.lex_state = 288}, + [528] = {.lex_state = 288}, + [529] = {.lex_state = 288}, + [530] = {.lex_state = 288}, + [531] = {.lex_state = 288}, + [532] = {.lex_state = 288}, + [533] = {.lex_state = 288}, + [534] = {.lex_state = 288}, + [535] = {.lex_state = 288}, + [536] = {.lex_state = 288}, + [537] = {.lex_state = 288}, + [538] = {.lex_state = 288}, + [539] = {.lex_state = 288}, + [540] = {.lex_state = 288}, + [541] = {.lex_state = 288}, + [542] = {.lex_state = 288}, + [543] = {.lex_state = 288}, + [544] = {.lex_state = 288}, + [545] = {.lex_state = 288}, + [546] = {.lex_state = 288}, + [547] = {.lex_state = 288}, + [548] = {.lex_state = 288}, + [549] = {.lex_state = 288}, + [550] = {.lex_state = 288}, + [551] = {.lex_state = 288}, + [552] = {.lex_state = 288}, + [553] = {.lex_state = 288}, + [554] = {.lex_state = 288}, + [555] = {.lex_state = 288}, + [556] = {.lex_state = 288}, + [557] = {.lex_state = 288}, + [558] = {.lex_state = 288}, + [559] = {.lex_state = 288}, + [560] = {.lex_state = 288}, + [561] = {.lex_state = 288}, + [562] = {.lex_state = 288}, + [563] = {.lex_state = 288}, + [564] = {.lex_state = 288}, + [565] = {.lex_state = 288}, + [566] = {.lex_state = 288}, + [567] = {.lex_state = 288}, + [568] = {.lex_state = 288}, + [569] = {.lex_state = 288}, + [570] = {.lex_state = 288}, + [571] = {.lex_state = 288}, + [572] = {.lex_state = 288}, + [573] = {.lex_state = 288}, + [574] = {.lex_state = 288}, + [575] = {.lex_state = 288}, + [576] = {.lex_state = 288}, + [577] = {.lex_state = 288}, + [578] = {.lex_state = 288}, + [579] = {.lex_state = 288}, + [580] = {.lex_state = 288}, + [581] = {.lex_state = 288}, + [582] = {.lex_state = 288}, + [583] = {.lex_state = 288}, + [584] = {.lex_state = 288}, + [585] = {.lex_state = 288}, + [586] = {.lex_state = 288}, + [587] = {.lex_state = 288}, + [588] = {.lex_state = 288}, + [589] = {.lex_state = 288}, + [590] = {.lex_state = 288}, + [591] = {.lex_state = 288}, + [592] = {.lex_state = 288}, + [593] = {.lex_state = 288}, + [594] = {.lex_state = 288}, + [595] = {.lex_state = 288}, + [596] = {.lex_state = 288}, + [597] = {.lex_state = 288}, + [598] = {.lex_state = 288}, + [599] = {.lex_state = 288}, + [600] = {.lex_state = 288}, + [601] = {.lex_state = 288}, + [602] = {.lex_state = 288}, + [603] = {.lex_state = 288}, + [604] = {.lex_state = 288}, + [605] = {.lex_state = 288}, + [606] = {.lex_state = 288}, + [607] = {.lex_state = 288}, + [608] = {.lex_state = 288}, + [609] = {.lex_state = 288}, + [610] = {.lex_state = 288}, + [611] = {.lex_state = 288}, + [612] = {.lex_state = 288}, + [613] = {.lex_state = 288}, + [614] = {.lex_state = 288}, + [615] = {.lex_state = 288}, + [616] = {.lex_state = 288}, + [617] = {.lex_state = 288}, + [618] = {.lex_state = 288}, + [619] = {.lex_state = 288}, + [620] = {.lex_state = 288}, + [621] = {.lex_state = 288}, + [622] = {.lex_state = 288}, + [623] = {.lex_state = 288}, + [624] = {.lex_state = 288}, + [625] = {.lex_state = 288}, + [626] = {.lex_state = 288}, + [627] = {.lex_state = 288}, + [628] = {.lex_state = 288}, + [629] = {.lex_state = 288}, + [630] = {.lex_state = 288}, + [631] = {.lex_state = 288}, + [632] = {.lex_state = 288}, + [633] = {.lex_state = 288}, + [634] = {.lex_state = 288}, + [635] = {.lex_state = 288}, + [636] = {.lex_state = 288}, + [637] = {.lex_state = 288}, + [638] = {.lex_state = 288}, + [639] = {.lex_state = 288}, + [640] = {.lex_state = 288}, + [641] = {.lex_state = 288}, + [642] = {.lex_state = 288}, + [643] = {.lex_state = 288}, + [644] = {.lex_state = 288}, + [645] = {.lex_state = 288}, + [646] = {.lex_state = 288}, + [647] = {.lex_state = 288}, + [648] = {.lex_state = 288}, + [649] = {.lex_state = 288}, + [650] = {.lex_state = 288}, + [651] = {.lex_state = 288}, + [652] = {.lex_state = 288}, + [653] = {.lex_state = 288}, + [654] = {.lex_state = 288}, + [655] = {.lex_state = 288}, + [656] = {.lex_state = 288}, + [657] = {.lex_state = 288}, + [658] = {.lex_state = 288}, + [659] = {.lex_state = 288}, + [660] = {.lex_state = 288}, + [661] = {.lex_state = 288}, + [662] = {.lex_state = 288}, + [663] = {.lex_state = 288}, + [664] = {.lex_state = 288}, + [665] = {.lex_state = 288}, + [666] = {.lex_state = 288}, + [667] = {.lex_state = 288}, + [668] = {.lex_state = 288}, + [669] = {.lex_state = 288}, + [670] = {.lex_state = 288}, + [671] = {.lex_state = 288}, + [672] = {.lex_state = 288}, + [673] = {.lex_state = 288}, + [674] = {.lex_state = 288}, + [675] = {.lex_state = 288}, + [676] = {.lex_state = 288}, + [677] = {.lex_state = 288}, + [678] = {.lex_state = 288}, + [679] = {.lex_state = 288}, + [680] = {.lex_state = 288}, + [681] = {.lex_state = 288}, + [682] = {.lex_state = 288}, + [683] = {.lex_state = 288}, + [684] = {.lex_state = 288}, + [685] = {.lex_state = 288}, + [686] = {.lex_state = 288}, + [687] = {.lex_state = 288}, + [688] = {.lex_state = 288}, + [689] = {.lex_state = 288}, + [690] = {.lex_state = 288}, + [691] = {.lex_state = 288}, + [692] = {.lex_state = 288}, + [693] = {.lex_state = 288}, + [694] = {.lex_state = 288}, + [695] = {.lex_state = 288}, + [696] = {.lex_state = 288}, + [697] = {.lex_state = 288}, + [698] = {.lex_state = 288}, + [699] = {.lex_state = 288}, + [700] = {.lex_state = 288}, + [701] = {.lex_state = 288}, + [702] = {.lex_state = 288}, + [703] = {.lex_state = 288}, + [704] = {.lex_state = 288}, + [705] = {.lex_state = 288}, + [706] = {.lex_state = 288}, + [707] = {.lex_state = 288}, + [708] = {.lex_state = 288}, + [709] = {.lex_state = 288}, + [710] = {.lex_state = 288}, + [711] = {.lex_state = 288}, + [712] = {.lex_state = 288}, + [713] = {.lex_state = 288}, + [714] = {.lex_state = 288}, + [715] = {.lex_state = 288}, + [716] = {.lex_state = 288}, + [717] = {.lex_state = 288}, + [718] = {.lex_state = 288}, + [719] = {.lex_state = 288}, + [720] = {.lex_state = 288}, + [721] = {.lex_state = 288}, + [722] = {.lex_state = 288}, + [723] = {.lex_state = 288}, + [724] = {.lex_state = 288}, + [725] = {.lex_state = 288}, + [726] = {.lex_state = 288}, + [727] = {.lex_state = 288}, + [728] = {.lex_state = 288}, + [729] = {.lex_state = 288}, + [730] = {.lex_state = 288}, + [731] = {.lex_state = 288}, + [732] = {.lex_state = 288}, + [733] = {.lex_state = 288}, + [734] = {.lex_state = 288}, + [735] = {.lex_state = 288}, + [736] = {.lex_state = 288}, + [737] = {.lex_state = 288}, + [738] = {.lex_state = 288}, + [739] = {.lex_state = 288}, + [740] = {.lex_state = 288}, + [741] = {.lex_state = 288}, + [742] = {.lex_state = 288}, + [743] = {.lex_state = 288}, + [744] = {.lex_state = 288}, + [745] = {.lex_state = 288}, + [746] = {.lex_state = 288}, + [747] = {.lex_state = 288}, + [748] = {.lex_state = 288}, + [749] = {.lex_state = 288}, + [750] = {.lex_state = 288}, + [751] = {.lex_state = 288}, + [752] = {.lex_state = 288}, + [753] = {.lex_state = 288}, + [754] = {.lex_state = 288}, + [755] = {.lex_state = 288}, + [756] = {.lex_state = 288}, + [757] = {.lex_state = 288}, + [758] = {.lex_state = 288}, + [759] = {.lex_state = 288}, + [760] = {.lex_state = 288}, + [761] = {.lex_state = 288}, + [762] = {.lex_state = 288}, + [763] = {.lex_state = 288}, + [764] = {.lex_state = 288}, + [765] = {.lex_state = 288}, + [766] = {.lex_state = 288}, + [767] = {.lex_state = 288}, + [768] = {.lex_state = 288}, + [769] = {.lex_state = 288}, + [770] = {.lex_state = 288}, + [771] = {.lex_state = 288}, + [772] = {.lex_state = 288}, + [773] = {.lex_state = 288}, + [774] = {.lex_state = 288}, + [775] = {.lex_state = 288}, + [776] = {.lex_state = 288}, + [777] = {.lex_state = 288}, + [778] = {.lex_state = 288}, + [779] = {.lex_state = 288}, + [780] = {.lex_state = 288}, + [781] = {.lex_state = 288}, + [782] = {.lex_state = 288}, + [783] = {.lex_state = 288}, + [784] = {.lex_state = 288}, + [785] = {.lex_state = 288}, + [786] = {.lex_state = 288}, + [787] = {.lex_state = 288}, + [788] = {.lex_state = 288}, + [789] = {.lex_state = 288}, + [790] = {.lex_state = 288}, + [791] = {.lex_state = 288}, + [792] = {.lex_state = 288}, + [793] = {.lex_state = 288}, + [794] = {.lex_state = 288}, + [795] = {.lex_state = 288}, + [796] = {.lex_state = 288}, + [797] = {.lex_state = 288}, + [798] = {.lex_state = 288}, + [799] = {.lex_state = 288}, + [800] = {.lex_state = 288}, + [801] = {.lex_state = 288}, + [802] = {.lex_state = 288}, + [803] = {.lex_state = 288}, + [804] = {.lex_state = 288}, + [805] = {.lex_state = 288}, + [806] = {.lex_state = 288}, + [807] = {.lex_state = 288}, + [808] = {.lex_state = 288}, + [809] = {.lex_state = 288}, + [810] = {.lex_state = 288}, + [811] = {.lex_state = 288}, + [812] = {.lex_state = 288}, [813] = {.lex_state = 8}, [814] = {.lex_state = 8}, [815] = {.lex_state = 8}, @@ -7315,89 +7427,89 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [956] = {.lex_state = 22}, [957] = {.lex_state = 22}, [958] = {.lex_state = 22}, - [959] = {.lex_state = 22}, - [960] = {.lex_state = 27}, - [961] = {.lex_state = 27}, - [962] = {.lex_state = 27}, - [963] = {.lex_state = 27}, - [964] = {.lex_state = 27}, - [965] = {.lex_state = 27}, - [966] = {.lex_state = 27}, - [967] = {.lex_state = 27}, - [968] = {.lex_state = 27}, - [969] = {.lex_state = 27}, - [970] = {.lex_state = 27}, - [971] = {.lex_state = 27}, - [972] = {.lex_state = 27}, - [973] = {.lex_state = 27}, - [974] = {.lex_state = 27}, - [975] = {.lex_state = 27}, - [976] = {.lex_state = 27}, - [977] = {.lex_state = 27}, - [978] = {.lex_state = 12}, - [979] = {.lex_state = 27}, - [980] = {.lex_state = 27}, - [981] = {.lex_state = 27}, - [982] = {.lex_state = 27}, - [983] = {.lex_state = 27}, - [984] = {.lex_state = 27}, - [985] = {.lex_state = 27}, - [986] = {.lex_state = 27}, - [987] = {.lex_state = 27}, - [988] = {.lex_state = 27}, - [989] = {.lex_state = 27}, - [990] = {.lex_state = 27}, - [991] = {.lex_state = 27}, - [992] = {.lex_state = 27}, - [993] = {.lex_state = 27}, - [994] = {.lex_state = 27}, - [995] = {.lex_state = 27}, - [996] = {.lex_state = 27}, - [997] = {.lex_state = 27}, - [998] = {.lex_state = 27}, - [999] = {.lex_state = 27}, - [1000] = {.lex_state = 27}, - [1001] = {.lex_state = 27}, - [1002] = {.lex_state = 27}, - [1003] = {.lex_state = 27}, - [1004] = {.lex_state = 27}, - [1005] = {.lex_state = 27}, - [1006] = {.lex_state = 27}, - [1007] = {.lex_state = 27}, - [1008] = {.lex_state = 27}, - [1009] = {.lex_state = 27}, - [1010] = {.lex_state = 27}, - [1011] = {.lex_state = 27}, - [1012] = {.lex_state = 27}, - [1013] = {.lex_state = 27}, - [1014] = {.lex_state = 27}, - [1015] = {.lex_state = 27}, - [1016] = {.lex_state = 27}, - [1017] = {.lex_state = 27}, - [1018] = {.lex_state = 27}, - [1019] = {.lex_state = 27}, - [1020] = {.lex_state = 27}, - [1021] = {.lex_state = 27}, - [1022] = {.lex_state = 27}, - [1023] = {.lex_state = 27}, - [1024] = {.lex_state = 27}, - [1025] = {.lex_state = 27}, - [1026] = {.lex_state = 27}, - [1027] = {.lex_state = 27}, - [1028] = {.lex_state = 27}, - [1029] = {.lex_state = 27}, - [1030] = {.lex_state = 27}, - [1031] = {.lex_state = 27}, - [1032] = {.lex_state = 27}, - [1033] = {.lex_state = 27}, - [1034] = {.lex_state = 27}, - [1035] = {.lex_state = 27}, - [1036] = {.lex_state = 27}, - [1037] = {.lex_state = 27}, - [1038] = {.lex_state = 27}, - [1039] = {.lex_state = 27}, - [1040] = {.lex_state = 27}, - [1041] = {.lex_state = 27}, + [959] = {.lex_state = 12}, + [960] = {.lex_state = 22}, + [961] = {.lex_state = 25}, + [962] = {.lex_state = 13}, + [963] = {.lex_state = 13}, + [964] = {.lex_state = 25}, + [965] = {.lex_state = 13}, + [966] = {.lex_state = 25}, + [967] = {.lex_state = 25}, + [968] = {.lex_state = 13}, + [969] = {.lex_state = 25}, + [970] = {.lex_state = 25}, + [971] = {.lex_state = 25}, + [972] = {.lex_state = 13}, + [973] = {.lex_state = 13}, + [974] = {.lex_state = 25}, + [975] = {.lex_state = 25}, + [976] = {.lex_state = 13}, + [977] = {.lex_state = 13}, + [978] = {.lex_state = 25}, + [979] = {.lex_state = 13}, + [980] = {.lex_state = 13}, + [981] = {.lex_state = 25}, + [982] = {.lex_state = 13}, + [983] = {.lex_state = 13}, + [984] = {.lex_state = 25}, + [985] = {.lex_state = 25}, + [986] = {.lex_state = 13}, + [987] = {.lex_state = 13}, + [988] = {.lex_state = 13}, + [989] = {.lex_state = 13}, + [990] = {.lex_state = 13}, + [991] = {.lex_state = 13}, + [992] = {.lex_state = 13}, + [993] = {.lex_state = 25}, + [994] = {.lex_state = 25}, + [995] = {.lex_state = 13}, + [996] = {.lex_state = 25}, + [997] = {.lex_state = 25}, + [998] = {.lex_state = 25}, + [999] = {.lex_state = 13}, + [1000] = {.lex_state = 25}, + [1001] = {.lex_state = 13}, + [1002] = {.lex_state = 13}, + [1003] = {.lex_state = 25}, + [1004] = {.lex_state = 25}, + [1005] = {.lex_state = 13}, + [1006] = {.lex_state = 13}, + [1007] = {.lex_state = 13}, + [1008] = {.lex_state = 25}, + [1009] = {.lex_state = 13}, + [1010] = {.lex_state = 13}, + [1011] = {.lex_state = 25}, + [1012] = {.lex_state = 25}, + [1013] = {.lex_state = 25}, + [1014] = {.lex_state = 13}, + [1015] = {.lex_state = 13}, + [1016] = {.lex_state = 13}, + [1017] = {.lex_state = 13}, + [1018] = {.lex_state = 25}, + [1019] = {.lex_state = 13}, + [1020] = {.lex_state = 13}, + [1021] = {.lex_state = 25}, + [1022] = {.lex_state = 13}, + [1023] = {.lex_state = 25}, + [1024] = {.lex_state = 13}, + [1025] = {.lex_state = 13}, + [1026] = {.lex_state = 13}, + [1027] = {.lex_state = 25}, + [1028] = {.lex_state = 13}, + [1029] = {.lex_state = 13}, + [1030] = {.lex_state = 13}, + [1031] = {.lex_state = 13}, + [1032] = {.lex_state = 13}, + [1033] = {.lex_state = 13}, + [1034] = {.lex_state = 13}, + [1035] = {.lex_state = 13}, + [1036] = {.lex_state = 13}, + [1037] = {.lex_state = 13}, + [1038] = {.lex_state = 13}, + [1039] = {.lex_state = 13}, + [1040] = {.lex_state = 25}, + [1041] = {.lex_state = 13}, [1042] = {.lex_state = 13}, [1043] = {.lex_state = 13}, [1044] = {.lex_state = 13}, @@ -7407,20 +7519,20 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1048] = {.lex_state = 13}, [1049] = {.lex_state = 13}, [1050] = {.lex_state = 13}, - [1051] = {.lex_state = 13}, + [1051] = {.lex_state = 25}, [1052] = {.lex_state = 13}, [1053] = {.lex_state = 13}, [1054] = {.lex_state = 13}, [1055] = {.lex_state = 13}, - [1056] = {.lex_state = 13}, + [1056] = {.lex_state = 25}, [1057] = {.lex_state = 13}, [1058] = {.lex_state = 13}, [1059] = {.lex_state = 13}, [1060] = {.lex_state = 13}, [1061] = {.lex_state = 13}, - [1062] = {.lex_state = 13}, + [1062] = {.lex_state = 25}, [1063] = {.lex_state = 13}, - [1064] = {.lex_state = 13}, + [1064] = {.lex_state = 25}, [1065] = {.lex_state = 13}, [1066] = {.lex_state = 13}, [1067] = {.lex_state = 13}, @@ -7436,15 +7548,15 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1077] = {.lex_state = 13}, [1078] = {.lex_state = 13}, [1079] = {.lex_state = 13}, - [1080] = {.lex_state = 13}, - [1081] = {.lex_state = 13}, - [1082] = {.lex_state = 13}, - [1083] = {.lex_state = 13}, - [1084] = {.lex_state = 13}, - [1085] = {.lex_state = 13}, - [1086] = {.lex_state = 13}, - [1087] = {.lex_state = 13}, - [1088] = {.lex_state = 13}, + [1080] = {.lex_state = 25}, + [1081] = {.lex_state = 25}, + [1082] = {.lex_state = 25}, + [1083] = {.lex_state = 25}, + [1084] = {.lex_state = 25}, + [1085] = {.lex_state = 25}, + [1086] = {.lex_state = 25}, + [1087] = {.lex_state = 25}, + [1088] = {.lex_state = 25}, [1089] = {.lex_state = 13}, [1090] = {.lex_state = 13}, [1091] = {.lex_state = 13}, @@ -7453,7 +7565,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1094] = {.lex_state = 13}, [1095] = {.lex_state = 13}, [1096] = {.lex_state = 13}, - [1097] = {.lex_state = 13}, + [1097] = {.lex_state = 25}, [1098] = {.lex_state = 13}, [1099] = {.lex_state = 13}, [1100] = {.lex_state = 13}, @@ -7482,43 +7594,43 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1123] = {.lex_state = 13}, [1124] = {.lex_state = 13}, [1125] = {.lex_state = 13}, - [1126] = {.lex_state = 13}, - [1127] = {.lex_state = 13}, - [1128] = {.lex_state = 13}, - [1129] = {.lex_state = 13}, - [1130] = {.lex_state = 13}, - [1131] = {.lex_state = 13}, - [1132] = {.lex_state = 13}, - [1133] = {.lex_state = 13}, - [1134] = {.lex_state = 13}, - [1135] = {.lex_state = 13}, - [1136] = {.lex_state = 13}, - [1137] = {.lex_state = 13}, - [1138] = {.lex_state = 13}, - [1139] = {.lex_state = 13}, - [1140] = {.lex_state = 13}, - [1141] = {.lex_state = 13}, - [1142] = {.lex_state = 13}, - [1143] = {.lex_state = 13}, - [1144] = {.lex_state = 13}, - [1145] = {.lex_state = 13}, - [1146] = {.lex_state = 13}, - [1147] = {.lex_state = 13}, - [1148] = {.lex_state = 13}, - [1149] = {.lex_state = 13}, - [1150] = {.lex_state = 13}, - [1151] = {.lex_state = 13}, - [1152] = {.lex_state = 13}, - [1153] = {.lex_state = 13}, - [1154] = {.lex_state = 13}, - [1155] = {.lex_state = 13}, - [1156] = {.lex_state = 13}, - [1157] = {.lex_state = 13}, - [1158] = {.lex_state = 13}, - [1159] = {.lex_state = 13}, - [1160] = {.lex_state = 13}, - [1161] = {.lex_state = 13}, - [1162] = {.lex_state = 13}, + [1126] = {.lex_state = 25}, + [1127] = {.lex_state = 25}, + [1128] = {.lex_state = 25}, + [1129] = {.lex_state = 25}, + [1130] = {.lex_state = 25}, + [1131] = {.lex_state = 25}, + [1132] = {.lex_state = 25}, + [1133] = {.lex_state = 25}, + [1134] = {.lex_state = 25}, + [1135] = {.lex_state = 25}, + [1136] = {.lex_state = 25}, + [1137] = {.lex_state = 25}, + [1138] = {.lex_state = 25}, + [1139] = {.lex_state = 25}, + [1140] = {.lex_state = 25}, + [1141] = {.lex_state = 25}, + [1142] = {.lex_state = 25}, + [1143] = {.lex_state = 25}, + [1144] = {.lex_state = 25}, + [1145] = {.lex_state = 25}, + [1146] = {.lex_state = 25}, + [1147] = {.lex_state = 25}, + [1148] = {.lex_state = 25}, + [1149] = {.lex_state = 25}, + [1150] = {.lex_state = 25}, + [1151] = {.lex_state = 25}, + [1152] = {.lex_state = 25}, + [1153] = {.lex_state = 25}, + [1154] = {.lex_state = 25}, + [1155] = {.lex_state = 25}, + [1156] = {.lex_state = 25}, + [1157] = {.lex_state = 25}, + [1158] = {.lex_state = 25}, + [1159] = {.lex_state = 25}, + [1160] = {.lex_state = 25}, + [1161] = {.lex_state = 25}, + [1162] = {.lex_state = 25}, [1163] = {.lex_state = 22}, [1164] = {.lex_state = 22}, [1165] = {.lex_state = 22}, @@ -7644,123 +7756,123 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1285] = {.lex_state = 22}, [1286] = {.lex_state = 22}, [1287] = {.lex_state = 22}, - [1288] = {.lex_state = 27}, - [1289] = {.lex_state = 27}, - [1290] = {.lex_state = 27}, - [1291] = {.lex_state = 27}, - [1292] = {.lex_state = 27}, - [1293] = {.lex_state = 27}, - [1294] = {.lex_state = 27}, - [1295] = {.lex_state = 27}, - [1296] = {.lex_state = 27}, - [1297] = {.lex_state = 27}, - [1298] = {.lex_state = 27}, - [1299] = {.lex_state = 27}, - [1300] = {.lex_state = 27}, - [1301] = {.lex_state = 27}, - [1302] = {.lex_state = 27}, - [1303] = {.lex_state = 27}, - [1304] = {.lex_state = 27}, - [1305] = {.lex_state = 27}, - [1306] = {.lex_state = 27}, - [1307] = {.lex_state = 27}, - [1308] = {.lex_state = 27}, - [1309] = {.lex_state = 27}, - [1310] = {.lex_state = 27}, - [1311] = {.lex_state = 27}, - [1312] = {.lex_state = 27}, - [1313] = {.lex_state = 27}, - [1314] = {.lex_state = 27}, - [1315] = {.lex_state = 27}, - [1316] = {.lex_state = 27}, - [1317] = {.lex_state = 27}, - [1318] = {.lex_state = 27}, - [1319] = {.lex_state = 27}, - [1320] = {.lex_state = 27}, - [1321] = {.lex_state = 27}, - [1322] = {.lex_state = 27}, - [1323] = {.lex_state = 27}, - [1324] = {.lex_state = 27}, - [1325] = {.lex_state = 27}, - [1326] = {.lex_state = 27}, - [1327] = {.lex_state = 27}, - [1328] = {.lex_state = 27}, - [1329] = {.lex_state = 27}, - [1330] = {.lex_state = 27}, - [1331] = {.lex_state = 27}, - [1332] = {.lex_state = 27}, - [1333] = {.lex_state = 27}, - [1334] = {.lex_state = 27}, - [1335] = {.lex_state = 27}, - [1336] = {.lex_state = 27}, - [1337] = {.lex_state = 27}, - [1338] = {.lex_state = 27}, - [1339] = {.lex_state = 27}, - [1340] = {.lex_state = 27}, + [1288] = {.lex_state = 11}, + [1289] = {.lex_state = 11}, + [1290] = {.lex_state = 11}, + [1291] = {.lex_state = 11}, + [1292] = {.lex_state = 11}, + [1293] = {.lex_state = 11}, + [1294] = {.lex_state = 11}, + [1295] = {.lex_state = 11}, + [1296] = {.lex_state = 11}, + [1297] = {.lex_state = 11}, + [1298] = {.lex_state = 10}, + [1299] = {.lex_state = 11}, + [1300] = {.lex_state = 11}, + [1301] = {.lex_state = 11}, + [1302] = {.lex_state = 11}, + [1303] = {.lex_state = 11}, + [1304] = {.lex_state = 11}, + [1305] = {.lex_state = 11}, + [1306] = {.lex_state = 11}, + [1307] = {.lex_state = 11}, + [1308] = {.lex_state = 11}, + [1309] = {.lex_state = 11}, + [1310] = {.lex_state = 11}, + [1311] = {.lex_state = 11}, + [1312] = {.lex_state = 11}, + [1313] = {.lex_state = 11}, + [1314] = {.lex_state = 11}, + [1315] = {.lex_state = 11}, + [1316] = {.lex_state = 11}, + [1317] = {.lex_state = 11}, + [1318] = {.lex_state = 11}, + [1319] = {.lex_state = 11}, + [1320] = {.lex_state = 11}, + [1321] = {.lex_state = 11}, + [1322] = {.lex_state = 11}, + [1323] = {.lex_state = 11}, + [1324] = {.lex_state = 11}, + [1325] = {.lex_state = 11}, + [1326] = {.lex_state = 11}, + [1327] = {.lex_state = 11}, + [1328] = {.lex_state = 11}, + [1329] = {.lex_state = 11}, + [1330] = {.lex_state = 11}, + [1331] = {.lex_state = 11}, + [1332] = {.lex_state = 11}, + [1333] = {.lex_state = 11}, + [1334] = {.lex_state = 11}, + [1335] = {.lex_state = 11}, + [1336] = {.lex_state = 11}, + [1337] = {.lex_state = 11}, + [1338] = {.lex_state = 11}, + [1339] = {.lex_state = 11}, + [1340] = {.lex_state = 11}, [1341] = {.lex_state = 11}, - [1342] = {.lex_state = 27}, - [1343] = {.lex_state = 27}, - [1344] = {.lex_state = 27}, - [1345] = {.lex_state = 27}, - [1346] = {.lex_state = 27}, - [1347] = {.lex_state = 27}, - [1348] = {.lex_state = 27}, - [1349] = {.lex_state = 27}, - [1350] = {.lex_state = 27}, - [1351] = {.lex_state = 27}, - [1352] = {.lex_state = 27}, - [1353] = {.lex_state = 27}, - [1354] = {.lex_state = 27}, - [1355] = {.lex_state = 27}, - [1356] = {.lex_state = 27}, - [1357] = {.lex_state = 27}, - [1358] = {.lex_state = 27}, - [1359] = {.lex_state = 27}, - [1360] = {.lex_state = 27}, - [1361] = {.lex_state = 27}, - [1362] = {.lex_state = 27}, - [1363] = {.lex_state = 27}, - [1364] = {.lex_state = 27}, - [1365] = {.lex_state = 27}, - [1366] = {.lex_state = 27}, + [1342] = {.lex_state = 11}, + [1343] = {.lex_state = 11}, + [1344] = {.lex_state = 11}, + [1345] = {.lex_state = 11}, + [1346] = {.lex_state = 11}, + [1347] = {.lex_state = 11}, + [1348] = {.lex_state = 11}, + [1349] = {.lex_state = 11}, + [1350] = {.lex_state = 11}, + [1351] = {.lex_state = 11}, + [1352] = {.lex_state = 11}, + [1353] = {.lex_state = 11}, + [1354] = {.lex_state = 11}, + [1355] = {.lex_state = 11}, + [1356] = {.lex_state = 11}, + [1357] = {.lex_state = 11}, + [1358] = {.lex_state = 11}, + [1359] = {.lex_state = 11}, + [1360] = {.lex_state = 11}, + [1361] = {.lex_state = 11}, + [1362] = {.lex_state = 11}, + [1363] = {.lex_state = 11}, + [1364] = {.lex_state = 11}, + [1365] = {.lex_state = 11}, + [1366] = {.lex_state = 11}, [1367] = {.lex_state = 11}, - [1368] = {.lex_state = 27}, - [1369] = {.lex_state = 27}, - [1370] = {.lex_state = 27}, - [1371] = {.lex_state = 27}, - [1372] = {.lex_state = 27}, - [1373] = {.lex_state = 27}, - [1374] = {.lex_state = 27}, - [1375] = {.lex_state = 27}, - [1376] = {.lex_state = 27}, - [1377] = {.lex_state = 27}, - [1378] = {.lex_state = 27}, + [1368] = {.lex_state = 11}, + [1369] = {.lex_state = 11}, + [1370] = {.lex_state = 11}, + [1371] = {.lex_state = 11}, + [1372] = {.lex_state = 11}, + [1373] = {.lex_state = 11}, + [1374] = {.lex_state = 11}, + [1375] = {.lex_state = 11}, + [1376] = {.lex_state = 11}, + [1377] = {.lex_state = 11}, + [1378] = {.lex_state = 11}, [1379] = {.lex_state = 11}, - [1380] = {.lex_state = 27}, - [1381] = {.lex_state = 27}, - [1382] = {.lex_state = 27}, + [1380] = {.lex_state = 11}, + [1381] = {.lex_state = 11}, + [1382] = {.lex_state = 11}, [1383] = {.lex_state = 11}, - [1384] = {.lex_state = 27}, + [1384] = {.lex_state = 11}, [1385] = {.lex_state = 11}, [1386] = {.lex_state = 11}, [1387] = {.lex_state = 11}, [1388] = {.lex_state = 11}, [1389] = {.lex_state = 11}, [1390] = {.lex_state = 11}, - [1391] = {.lex_state = 10}, + [1391] = {.lex_state = 11}, [1392] = {.lex_state = 11}, [1393] = {.lex_state = 11}, [1394] = {.lex_state = 11}, - [1395] = {.lex_state = 1}, + [1395] = {.lex_state = 11}, [1396] = {.lex_state = 11}, - [1397] = {.lex_state = 1}, + [1397] = {.lex_state = 11}, [1398] = {.lex_state = 11}, [1399] = {.lex_state = 11}, - [1400] = {.lex_state = 1}, + [1400] = {.lex_state = 11}, [1401] = {.lex_state = 11}, [1402] = {.lex_state = 11}, - [1403] = {.lex_state = 1}, - [1404] = {.lex_state = 1}, + [1403] = {.lex_state = 11}, + [1404] = {.lex_state = 11}, [1405] = {.lex_state = 11}, [1406] = {.lex_state = 11}, [1407] = {.lex_state = 11}, @@ -7768,312 +7880,312 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1409] = {.lex_state = 11}, [1410] = {.lex_state = 11}, [1411] = {.lex_state = 11}, - [1412] = {.lex_state = 1}, + [1412] = {.lex_state = 11}, [1413] = {.lex_state = 11}, [1414] = {.lex_state = 11}, [1415] = {.lex_state = 11}, [1416] = {.lex_state = 11}, - [1417] = {.lex_state = 1}, + [1417] = {.lex_state = 11}, [1418] = {.lex_state = 11}, [1419] = {.lex_state = 11}, - [1420] = {.lex_state = 11}, - [1421] = {.lex_state = 11}, - [1422] = {.lex_state = 11}, - [1423] = {.lex_state = 11}, - [1424] = {.lex_state = 11}, - [1425] = {.lex_state = 11}, - [1426] = {.lex_state = 11}, - [1427] = {.lex_state = 11}, - [1428] = {.lex_state = 11}, - [1429] = {.lex_state = 11}, - [1430] = {.lex_state = 11}, - [1431] = {.lex_state = 11}, - [1432] = {.lex_state = 11}, - [1433] = {.lex_state = 11}, - [1434] = {.lex_state = 11}, - [1435] = {.lex_state = 11}, - [1436] = {.lex_state = 11}, - [1437] = {.lex_state = 11}, - [1438] = {.lex_state = 11}, - [1439] = {.lex_state = 11}, - [1440] = {.lex_state = 11}, - [1441] = {.lex_state = 11}, - [1442] = {.lex_state = 11}, - [1443] = {.lex_state = 11}, - [1444] = {.lex_state = 11}, - [1445] = {.lex_state = 11}, - [1446] = {.lex_state = 11}, - [1447] = {.lex_state = 11}, - [1448] = {.lex_state = 11}, - [1449] = {.lex_state = 11}, - [1450] = {.lex_state = 11}, - [1451] = {.lex_state = 11}, - [1452] = {.lex_state = 11}, - [1453] = {.lex_state = 11}, - [1454] = {.lex_state = 11}, - [1455] = {.lex_state = 11}, - [1456] = {.lex_state = 11}, - [1457] = {.lex_state = 11}, - [1458] = {.lex_state = 11}, - [1459] = {.lex_state = 11}, - [1460] = {.lex_state = 11}, - [1461] = {.lex_state = 11}, - [1462] = {.lex_state = 11}, - [1463] = {.lex_state = 11}, - [1464] = {.lex_state = 11}, - [1465] = {.lex_state = 11}, - [1466] = {.lex_state = 11}, - [1467] = {.lex_state = 11}, - [1468] = {.lex_state = 11}, - [1469] = {.lex_state = 11}, - [1470] = {.lex_state = 11}, - [1471] = {.lex_state = 11}, - [1472] = {.lex_state = 11}, - [1473] = {.lex_state = 11}, - [1474] = {.lex_state = 11}, - [1475] = {.lex_state = 11}, - [1476] = {.lex_state = 11}, - [1477] = {.lex_state = 11}, - [1478] = {.lex_state = 11}, - [1479] = {.lex_state = 11}, - [1480] = {.lex_state = 11}, - [1481] = {.lex_state = 11}, - [1482] = {.lex_state = 11}, - [1483] = {.lex_state = 11}, - [1484] = {.lex_state = 1}, - [1485] = {.lex_state = 11}, - [1486] = {.lex_state = 1}, - [1487] = {.lex_state = 11}, - [1488] = {.lex_state = 11}, - [1489] = {.lex_state = 11}, - [1490] = {.lex_state = 11}, - [1491] = {.lex_state = 1}, - [1492] = {.lex_state = 11}, - [1493] = {.lex_state = 11}, - [1494] = {.lex_state = 11}, - [1495] = {.lex_state = 11}, - [1496] = {.lex_state = 11}, - [1497] = {.lex_state = 11}, - [1498] = {.lex_state = 11}, - [1499] = {.lex_state = 1}, - [1500] = {.lex_state = 11}, - [1501] = {.lex_state = 11}, - [1502] = {.lex_state = 1}, - [1503] = {.lex_state = 1}, - [1504] = {.lex_state = 11}, - [1505] = {.lex_state = 1}, - [1506] = {.lex_state = 11}, - [1507] = {.lex_state = 11}, - [1508] = {.lex_state = 11}, - [1509] = {.lex_state = 11}, - [1510] = {.lex_state = 11}, - [1511] = {.lex_state = 11}, - [1512] = {.lex_state = 11}, - [1513] = {.lex_state = 11}, - [1514] = {.lex_state = 11}, - [1515] = {.lex_state = 11}, - [1516] = {.lex_state = 11}, - [1517] = {.lex_state = 11}, - [1518] = {.lex_state = 11}, - [1519] = {.lex_state = 11}, - [1520] = {.lex_state = 11}, - [1521] = {.lex_state = 11}, - [1522] = {.lex_state = 11}, - [1523] = {.lex_state = 1}, - [1524] = {.lex_state = 11}, - [1525] = {.lex_state = 11}, - [1526] = {.lex_state = 1}, - [1527] = {.lex_state = 1}, - [1528] = {.lex_state = 1}, - [1529] = {.lex_state = 11}, - [1530] = {.lex_state = 1}, - [1531] = {.lex_state = 11}, - [1532] = {.lex_state = 1}, - [1533] = {.lex_state = 1}, - [1534] = {.lex_state = 282}, - [1535] = {.lex_state = 282}, - [1536] = {.lex_state = 282}, - [1537] = {.lex_state = 282}, - [1538] = {.lex_state = 282}, - [1539] = {.lex_state = 282}, - [1540] = {.lex_state = 282}, - [1541] = {.lex_state = 282}, - [1542] = {.lex_state = 282}, - [1543] = {.lex_state = 282}, - [1544] = {.lex_state = 282}, - [1545] = {.lex_state = 282}, - [1546] = {.lex_state = 282}, - [1547] = {.lex_state = 282}, - [1548] = {.lex_state = 282}, - [1549] = {.lex_state = 282}, - [1550] = {.lex_state = 282}, - [1551] = {.lex_state = 282}, - [1552] = {.lex_state = 282}, - [1553] = {.lex_state = 282}, - [1554] = {.lex_state = 282}, - [1555] = {.lex_state = 282}, - [1556] = {.lex_state = 282}, - [1557] = {.lex_state = 282}, - [1558] = {.lex_state = 282}, - [1559] = {.lex_state = 282}, - [1560] = {.lex_state = 282}, - [1561] = {.lex_state = 282}, - [1562] = {.lex_state = 283}, - [1563] = {.lex_state = 282}, - [1564] = {.lex_state = 282}, - [1565] = {.lex_state = 282}, - [1566] = {.lex_state = 282}, - [1567] = {.lex_state = 282}, - [1568] = {.lex_state = 282}, - [1569] = {.lex_state = 282}, - [1570] = {.lex_state = 282}, - [1571] = {.lex_state = 282}, - [1572] = {.lex_state = 282}, - [1573] = {.lex_state = 282}, - [1574] = {.lex_state = 282}, - [1575] = {.lex_state = 282}, - [1576] = {.lex_state = 282}, - [1577] = {.lex_state = 282}, - [1578] = {.lex_state = 282}, - [1579] = {.lex_state = 282}, - [1580] = {.lex_state = 282}, - [1581] = {.lex_state = 282}, - [1582] = {.lex_state = 282}, - [1583] = {.lex_state = 282}, - [1584] = {.lex_state = 282}, - [1585] = {.lex_state = 282}, - [1586] = {.lex_state = 282}, - [1587] = {.lex_state = 282}, - [1588] = {.lex_state = 282}, - [1589] = {.lex_state = 282}, - [1590] = {.lex_state = 282}, - [1591] = {.lex_state = 282}, - [1592] = {.lex_state = 282}, - [1593] = {.lex_state = 282}, - [1594] = {.lex_state = 282}, - [1595] = {.lex_state = 282}, - [1596] = {.lex_state = 282}, - [1597] = {.lex_state = 282}, - [1598] = {.lex_state = 282}, - [1599] = {.lex_state = 282}, - [1600] = {.lex_state = 282}, - [1601] = {.lex_state = 282}, - [1602] = {.lex_state = 282}, - [1603] = {.lex_state = 282}, - [1604] = {.lex_state = 282}, - [1605] = {.lex_state = 282}, - [1606] = {.lex_state = 282}, - [1607] = {.lex_state = 282}, - [1608] = {.lex_state = 282}, - [1609] = {.lex_state = 282}, - [1610] = {.lex_state = 282}, - [1611] = {.lex_state = 282}, - [1612] = {.lex_state = 282}, - [1613] = {.lex_state = 282}, - [1614] = {.lex_state = 282}, - [1615] = {.lex_state = 282}, - [1616] = {.lex_state = 282}, - [1617] = {.lex_state = 282}, - [1618] = {.lex_state = 282}, - [1619] = {.lex_state = 282}, - [1620] = {.lex_state = 282}, - [1621] = {.lex_state = 282}, - [1622] = {.lex_state = 282}, - [1623] = {.lex_state = 282}, - [1624] = {.lex_state = 282}, - [1625] = {.lex_state = 282}, - [1626] = {.lex_state = 282}, - [1627] = {.lex_state = 282}, - [1628] = {.lex_state = 282}, - [1629] = {.lex_state = 282}, - [1630] = {.lex_state = 282}, - [1631] = {.lex_state = 282}, - [1632] = {.lex_state = 282}, - [1633] = {.lex_state = 282}, - [1634] = {.lex_state = 282}, - [1635] = {.lex_state = 282}, - [1636] = {.lex_state = 282}, - [1637] = {.lex_state = 282}, - [1638] = {.lex_state = 282}, - [1639] = {.lex_state = 282}, - [1640] = {.lex_state = 282}, - [1641] = {.lex_state = 282}, - [1642] = {.lex_state = 282}, - [1643] = {.lex_state = 282}, - [1644] = {.lex_state = 282}, - [1645] = {.lex_state = 282}, - [1646] = {.lex_state = 282}, - [1647] = {.lex_state = 282}, - [1648] = {.lex_state = 282}, - [1649] = {.lex_state = 282}, - [1650] = {.lex_state = 282}, - [1651] = {.lex_state = 282}, - [1652] = {.lex_state = 282}, - [1653] = {.lex_state = 282}, - [1654] = {.lex_state = 282}, - [1655] = {.lex_state = 282}, - [1656] = {.lex_state = 15}, - [1657] = {.lex_state = 282}, - [1658] = {.lex_state = 282}, - [1659] = {.lex_state = 14}, - [1660] = {.lex_state = 1}, - [1661] = {.lex_state = 15}, - [1662] = {.lex_state = 15}, - [1663] = {.lex_state = 282}, - [1664] = {.lex_state = 282}, - [1665] = {.lex_state = 282}, - [1666] = {.lex_state = 282}, - [1667] = {.lex_state = 15}, - [1668] = {.lex_state = 15}, - [1669] = {.lex_state = 15}, - [1670] = {.lex_state = 15}, - [1671] = {.lex_state = 15}, - [1672] = {.lex_state = 15}, - [1673] = {.lex_state = 15}, - [1674] = {.lex_state = 15}, - [1675] = {.lex_state = 15}, + [1420] = {.lex_state = 1}, + [1421] = {.lex_state = 1}, + [1422] = {.lex_state = 1}, + [1423] = {.lex_state = 1}, + [1424] = {.lex_state = 1}, + [1425] = {.lex_state = 1}, + [1426] = {.lex_state = 1}, + [1427] = {.lex_state = 1}, + [1428] = {.lex_state = 1}, + [1429] = {.lex_state = 1}, + [1430] = {.lex_state = 1}, + [1431] = {.lex_state = 1}, + [1432] = {.lex_state = 1}, + [1433] = {.lex_state = 1}, + [1434] = {.lex_state = 1}, + [1435] = {.lex_state = 1}, + [1436] = {.lex_state = 1}, + [1437] = {.lex_state = 1}, + [1438] = {.lex_state = 1}, + [1439] = {.lex_state = 1}, + [1440] = {.lex_state = 1}, + [1441] = {.lex_state = 288}, + [1442] = {.lex_state = 288}, + [1443] = {.lex_state = 15}, + [1444] = {.lex_state = 288}, + [1445] = {.lex_state = 288}, + [1446] = {.lex_state = 288}, + [1447] = {.lex_state = 288}, + [1448] = {.lex_state = 288}, + [1449] = {.lex_state = 288}, + [1450] = {.lex_state = 288}, + [1451] = {.lex_state = 288}, + [1452] = {.lex_state = 288}, + [1453] = {.lex_state = 288}, + [1454] = {.lex_state = 288}, + [1455] = {.lex_state = 288}, + [1456] = {.lex_state = 288}, + [1457] = {.lex_state = 288}, + [1458] = {.lex_state = 288}, + [1459] = {.lex_state = 288}, + [1460] = {.lex_state = 288}, + [1461] = {.lex_state = 288}, + [1462] = {.lex_state = 288}, + [1463] = {.lex_state = 288}, + [1464] = {.lex_state = 288}, + [1465] = {.lex_state = 288}, + [1466] = {.lex_state = 288}, + [1467] = {.lex_state = 288}, + [1468] = {.lex_state = 288}, + [1469] = {.lex_state = 288}, + [1470] = {.lex_state = 288}, + [1471] = {.lex_state = 288}, + [1472] = {.lex_state = 288}, + [1473] = {.lex_state = 288}, + [1474] = {.lex_state = 288}, + [1475] = {.lex_state = 288}, + [1476] = {.lex_state = 288}, + [1477] = {.lex_state = 288}, + [1478] = {.lex_state = 288}, + [1479] = {.lex_state = 288}, + [1480] = {.lex_state = 288}, + [1481] = {.lex_state = 288}, + [1482] = {.lex_state = 288}, + [1483] = {.lex_state = 288}, + [1484] = {.lex_state = 288}, + [1485] = {.lex_state = 288}, + [1486] = {.lex_state = 288}, + [1487] = {.lex_state = 288}, + [1488] = {.lex_state = 288}, + [1489] = {.lex_state = 288}, + [1490] = {.lex_state = 288}, + [1491] = {.lex_state = 288}, + [1492] = {.lex_state = 288}, + [1493] = {.lex_state = 288}, + [1494] = {.lex_state = 288}, + [1495] = {.lex_state = 288}, + [1496] = {.lex_state = 288}, + [1497] = {.lex_state = 288}, + [1498] = {.lex_state = 288}, + [1499] = {.lex_state = 288}, + [1500] = {.lex_state = 288}, + [1501] = {.lex_state = 288}, + [1502] = {.lex_state = 288}, + [1503] = {.lex_state = 288}, + [1504] = {.lex_state = 288}, + [1505] = {.lex_state = 288}, + [1506] = {.lex_state = 288}, + [1507] = {.lex_state = 288}, + [1508] = {.lex_state = 288}, + [1509] = {.lex_state = 288}, + [1510] = {.lex_state = 288}, + [1511] = {.lex_state = 288}, + [1512] = {.lex_state = 288}, + [1513] = {.lex_state = 288}, + [1514] = {.lex_state = 288}, + [1515] = {.lex_state = 288}, + [1516] = {.lex_state = 288}, + [1517] = {.lex_state = 288}, + [1518] = {.lex_state = 288}, + [1519] = {.lex_state = 288}, + [1520] = {.lex_state = 288}, + [1521] = {.lex_state = 288}, + [1522] = {.lex_state = 288}, + [1523] = {.lex_state = 288}, + [1524] = {.lex_state = 288}, + [1525] = {.lex_state = 288}, + [1526] = {.lex_state = 288}, + [1527] = {.lex_state = 288}, + [1528] = {.lex_state = 288}, + [1529] = {.lex_state = 288}, + [1530] = {.lex_state = 288}, + [1531] = {.lex_state = 288}, + [1532] = {.lex_state = 288}, + [1533] = {.lex_state = 289}, + [1534] = {.lex_state = 288}, + [1535] = {.lex_state = 288}, + [1536] = {.lex_state = 288}, + [1537] = {.lex_state = 288}, + [1538] = {.lex_state = 288}, + [1539] = {.lex_state = 288}, + [1540] = {.lex_state = 288}, + [1541] = {.lex_state = 288}, + [1542] = {.lex_state = 288}, + [1543] = {.lex_state = 288}, + [1544] = {.lex_state = 288}, + [1545] = {.lex_state = 288}, + [1546] = {.lex_state = 288}, + [1547] = {.lex_state = 288}, + [1548] = {.lex_state = 288}, + [1549] = {.lex_state = 288}, + [1550] = {.lex_state = 288}, + [1551] = {.lex_state = 288}, + [1552] = {.lex_state = 288}, + [1553] = {.lex_state = 288}, + [1554] = {.lex_state = 288}, + [1555] = {.lex_state = 288}, + [1556] = {.lex_state = 288}, + [1557] = {.lex_state = 288}, + [1558] = {.lex_state = 288}, + [1559] = {.lex_state = 288}, + [1560] = {.lex_state = 288}, + [1561] = {.lex_state = 288}, + [1562] = {.lex_state = 288}, + [1563] = {.lex_state = 288}, + [1564] = {.lex_state = 288}, + [1565] = {.lex_state = 14}, + [1566] = {.lex_state = 288}, + [1567] = {.lex_state = 29}, + [1568] = {.lex_state = 288}, + [1569] = {.lex_state = 15}, + [1570] = {.lex_state = 288}, + [1571] = {.lex_state = 288}, + [1572] = {.lex_state = 15}, + [1573] = {.lex_state = 15}, + [1574] = {.lex_state = 15}, + [1575] = {.lex_state = 15}, + [1576] = {.lex_state = 15}, + [1577] = {.lex_state = 15}, + [1578] = {.lex_state = 15}, + [1579] = {.lex_state = 15}, + [1580] = {.lex_state = 288}, + [1581] = {.lex_state = 15}, + [1582] = {.lex_state = 15}, + [1583] = {.lex_state = 288}, + [1584] = {.lex_state = 15}, + [1585] = {.lex_state = 15}, + [1586] = {.lex_state = 15}, + [1587] = {.lex_state = 15}, + [1588] = {.lex_state = 15}, + [1589] = {.lex_state = 15}, + [1590] = {.lex_state = 15}, + [1591] = {.lex_state = 15}, + [1592] = {.lex_state = 15}, + [1593] = {.lex_state = 15}, + [1594] = {.lex_state = 15}, + [1595] = {.lex_state = 15}, + [1596] = {.lex_state = 15}, + [1597] = {.lex_state = 15}, + [1598] = {.lex_state = 15}, + [1599] = {.lex_state = 15}, + [1600] = {.lex_state = 15}, + [1601] = {.lex_state = 15}, + [1602] = {.lex_state = 15}, + [1603] = {.lex_state = 15}, + [1604] = {.lex_state = 15}, + [1605] = {.lex_state = 15}, + [1606] = {.lex_state = 15}, + [1607] = {.lex_state = 15}, + [1608] = {.lex_state = 15}, + [1609] = {.lex_state = 15}, + [1610] = {.lex_state = 15}, + [1611] = {.lex_state = 15}, + [1612] = {.lex_state = 15}, + [1613] = {.lex_state = 15}, + [1614] = {.lex_state = 15}, + [1615] = {.lex_state = 15}, + [1616] = {.lex_state = 15}, + [1617] = {.lex_state = 15}, + [1618] = {.lex_state = 15}, + [1619] = {.lex_state = 15}, + [1620] = {.lex_state = 15}, + [1621] = {.lex_state = 15}, + [1622] = {.lex_state = 15}, + [1623] = {.lex_state = 15}, + [1624] = {.lex_state = 15}, + [1625] = {.lex_state = 15}, + [1626] = {.lex_state = 15}, + [1627] = {.lex_state = 15}, + [1628] = {.lex_state = 15}, + [1629] = {.lex_state = 15}, + [1630] = {.lex_state = 15}, + [1631] = {.lex_state = 15}, + [1632] = {.lex_state = 288}, + [1633] = {.lex_state = 288}, + [1634] = {.lex_state = 288}, + [1635] = {.lex_state = 288}, + [1636] = {.lex_state = 288}, + [1637] = {.lex_state = 288}, + [1638] = {.lex_state = 288}, + [1639] = {.lex_state = 288}, + [1640] = {.lex_state = 288}, + [1641] = {.lex_state = 29}, + [1642] = {.lex_state = 29}, + [1643] = {.lex_state = 29}, + [1644] = {.lex_state = 29}, + [1645] = {.lex_state = 29}, + [1646] = {.lex_state = 29}, + [1647] = {.lex_state = 29}, + [1648] = {.lex_state = 29}, + [1649] = {.lex_state = 29}, + [1650] = {.lex_state = 29}, + [1651] = {.lex_state = 29}, + [1652] = {.lex_state = 29}, + [1653] = {.lex_state = 29}, + [1654] = {.lex_state = 29}, + [1655] = {.lex_state = 29}, + [1656] = {.lex_state = 29}, + [1657] = {.lex_state = 29}, + [1658] = {.lex_state = 29}, + [1659] = {.lex_state = 29}, + [1660] = {.lex_state = 29}, + [1661] = {.lex_state = 29}, + [1662] = {.lex_state = 29}, + [1663] = {.lex_state = 29}, + [1664] = {.lex_state = 29}, + [1665] = {.lex_state = 29}, + [1666] = {.lex_state = 29}, + [1667] = {.lex_state = 29}, + [1668] = {.lex_state = 29}, + [1669] = {.lex_state = 29}, + [1670] = {.lex_state = 29}, + [1671] = {.lex_state = 29}, + [1672] = {.lex_state = 29}, + [1673] = {.lex_state = 29}, + [1674] = {.lex_state = 29}, + [1675] = {.lex_state = 29}, [1676] = {.lex_state = 15}, - [1677] = {.lex_state = 15}, - [1678] = {.lex_state = 15}, + [1677] = {.lex_state = 288}, + [1678] = {.lex_state = 29}, [1679] = {.lex_state = 15}, [1680] = {.lex_state = 15}, [1681] = {.lex_state = 15}, [1682] = {.lex_state = 15}, - [1683] = {.lex_state = 282}, - [1684] = {.lex_state = 282}, - [1685] = {.lex_state = 15}, - [1686] = {.lex_state = 282}, - [1687] = {.lex_state = 282}, - [1688] = {.lex_state = 282}, - [1689] = {.lex_state = 282}, - [1690] = {.lex_state = 282}, - [1691] = {.lex_state = 282}, - [1692] = {.lex_state = 282}, - [1693] = {.lex_state = 282}, - [1694] = {.lex_state = 282}, - [1695] = {.lex_state = 282}, - [1696] = {.lex_state = 15}, - [1697] = {.lex_state = 15}, + [1683] = {.lex_state = 15}, + [1684] = {.lex_state = 15}, + [1685] = {.lex_state = 29}, + [1686] = {.lex_state = 15}, + [1687] = {.lex_state = 15}, + [1688] = {.lex_state = 15}, + [1689] = {.lex_state = 15}, + [1690] = {.lex_state = 15}, + [1691] = {.lex_state = 29}, + [1692] = {.lex_state = 15}, + [1693] = {.lex_state = 15}, + [1694] = {.lex_state = 15}, + [1695] = {.lex_state = 288}, + [1696] = {.lex_state = 29}, + [1697] = {.lex_state = 29}, [1698] = {.lex_state = 15}, - [1699] = {.lex_state = 15}, - [1700] = {.lex_state = 15}, - [1701] = {.lex_state = 15}, + [1699] = {.lex_state = 29}, + [1700] = {.lex_state = 29}, + [1701] = {.lex_state = 29}, [1702] = {.lex_state = 15}, [1703] = {.lex_state = 15}, [1704] = {.lex_state = 15}, - [1705] = {.lex_state = 15}, - [1706] = {.lex_state = 15}, + [1705] = {.lex_state = 29}, + [1706] = {.lex_state = 29}, [1707] = {.lex_state = 15}, [1708] = {.lex_state = 15}, [1709] = {.lex_state = 15}, - [1710] = {.lex_state = 15}, + [1710] = {.lex_state = 29}, [1711] = {.lex_state = 15}, - [1712] = {.lex_state = 15}, - [1713] = {.lex_state = 15}, + [1712] = {.lex_state = 1}, + [1713] = {.lex_state = 29}, [1714] = {.lex_state = 15}, - [1715] = {.lex_state = 15}, - [1716] = {.lex_state = 15}, - [1717] = {.lex_state = 282}, + [1715] = {.lex_state = 29}, + [1716] = {.lex_state = 288}, + [1717] = {.lex_state = 15}, [1718] = {.lex_state = 15}, [1719] = {.lex_state = 15}, [1720] = {.lex_state = 15}, @@ -8085,118 +8197,118 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1726] = {.lex_state = 15}, [1727] = {.lex_state = 15}, [1728] = {.lex_state = 15}, - [1729] = {.lex_state = 15}, + [1729] = {.lex_state = 29}, [1730] = {.lex_state = 15}, [1731] = {.lex_state = 15}, [1732] = {.lex_state = 15}, - [1733] = {.lex_state = 15}, - [1734] = {.lex_state = 15}, - [1735] = {.lex_state = 15}, - [1736] = {.lex_state = 15}, - [1737] = {.lex_state = 15}, + [1733] = {.lex_state = 29}, + [1734] = {.lex_state = 29}, + [1735] = {.lex_state = 29}, + [1736] = {.lex_state = 288}, + [1737] = {.lex_state = 29}, [1738] = {.lex_state = 15}, - [1739] = {.lex_state = 15}, - [1740] = {.lex_state = 282}, - [1741] = {.lex_state = 282}, - [1742] = {.lex_state = 15}, - [1743] = {.lex_state = 15}, - [1744] = {.lex_state = 15}, - [1745] = {.lex_state = 282}, - [1746] = {.lex_state = 282}, - [1747] = {.lex_state = 15}, - [1748] = {.lex_state = 282}, - [1749] = {.lex_state = 282}, + [1739] = {.lex_state = 29}, + [1740] = {.lex_state = 29}, + [1741] = {.lex_state = 29}, + [1742] = {.lex_state = 288}, + [1743] = {.lex_state = 29}, + [1744] = {.lex_state = 288}, + [1745] = {.lex_state = 288}, + [1746] = {.lex_state = 15}, + [1747] = {.lex_state = 29}, + [1748] = {.lex_state = 15}, + [1749] = {.lex_state = 29}, [1750] = {.lex_state = 15}, - [1751] = {.lex_state = 282}, - [1752] = {.lex_state = 282}, - [1753] = {.lex_state = 15}, - [1754] = {.lex_state = 282}, - [1755] = {.lex_state = 282}, - [1756] = {.lex_state = 282}, - [1757] = {.lex_state = 282}, - [1758] = {.lex_state = 282}, - [1759] = {.lex_state = 282}, + [1751] = {.lex_state = 288}, + [1752] = {.lex_state = 15}, + [1753] = {.lex_state = 288}, + [1754] = {.lex_state = 15}, + [1755] = {.lex_state = 15}, + [1756] = {.lex_state = 15}, + [1757] = {.lex_state = 15}, + [1758] = {.lex_state = 15}, + [1759] = {.lex_state = 15}, [1760] = {.lex_state = 15}, [1761] = {.lex_state = 15}, [1762] = {.lex_state = 15}, [1763] = {.lex_state = 15}, [1764] = {.lex_state = 15}, [1765] = {.lex_state = 15}, - [1766] = {.lex_state = 15}, - [1767] = {.lex_state = 15}, - [1768] = {.lex_state = 15}, + [1766] = {.lex_state = 29}, + [1767] = {.lex_state = 29}, + [1768] = {.lex_state = 288}, [1769] = {.lex_state = 15}, - [1770] = {.lex_state = 15}, - [1771] = {.lex_state = 15}, - [1772] = {.lex_state = 15}, - [1773] = {.lex_state = 15}, - [1774] = {.lex_state = 15}, - [1775] = {.lex_state = 15}, - [1776] = {.lex_state = 15}, - [1777] = {.lex_state = 15}, - [1778] = {.lex_state = 282}, + [1770] = {.lex_state = 288}, + [1771] = {.lex_state = 288}, + [1772] = {.lex_state = 288}, + [1773] = {.lex_state = 288}, + [1774] = {.lex_state = 288}, + [1775] = {.lex_state = 288}, + [1776] = {.lex_state = 288}, + [1777] = {.lex_state = 288}, + [1778] = {.lex_state = 288}, [1779] = {.lex_state = 15}, - [1780] = {.lex_state = 15}, + [1780] = {.lex_state = 288}, [1781] = {.lex_state = 15}, [1782] = {.lex_state = 15}, [1783] = {.lex_state = 15}, - [1784] = {.lex_state = 15}, - [1785] = {.lex_state = 15}, - [1786] = {.lex_state = 27}, - [1787] = {.lex_state = 15}, - [1788] = {.lex_state = 15}, - [1789] = {.lex_state = 15}, - [1790] = {.lex_state = 15}, + [1784] = {.lex_state = 29}, + [1785] = {.lex_state = 288}, + [1786] = {.lex_state = 29}, + [1787] = {.lex_state = 288}, + [1788] = {.lex_state = 29}, + [1789] = {.lex_state = 29}, + [1790] = {.lex_state = 288}, [1791] = {.lex_state = 15}, - [1792] = {.lex_state = 15}, - [1793] = {.lex_state = 15}, - [1794] = {.lex_state = 15}, - [1795] = {.lex_state = 15}, - [1796] = {.lex_state = 15}, - [1797] = {.lex_state = 15}, - [1798] = {.lex_state = 15}, - [1799] = {.lex_state = 15}, - [1800] = {.lex_state = 15}, - [1801] = {.lex_state = 15}, - [1802] = {.lex_state = 15}, - [1803] = {.lex_state = 15}, - [1804] = {.lex_state = 15}, - [1805] = {.lex_state = 15}, - [1806] = {.lex_state = 15}, - [1807] = {.lex_state = 15}, - [1808] = {.lex_state = 15}, - [1809] = {.lex_state = 15}, - [1810] = {.lex_state = 15}, - [1811] = {.lex_state = 15}, - [1812] = {.lex_state = 15}, - [1813] = {.lex_state = 15}, - [1814] = {.lex_state = 282}, - [1815] = {.lex_state = 15}, - [1816] = {.lex_state = 282}, - [1817] = {.lex_state = 27}, - [1818] = {.lex_state = 27}, - [1819] = {.lex_state = 282}, - [1820] = {.lex_state = 282}, - [1821] = {.lex_state = 282}, - [1822] = {.lex_state = 282}, - [1823] = {.lex_state = 282}, - [1824] = {.lex_state = 282}, - [1825] = {.lex_state = 282}, - [1826] = {.lex_state = 282}, - [1827] = {.lex_state = 282}, + [1792] = {.lex_state = 29}, + [1793] = {.lex_state = 29}, + [1794] = {.lex_state = 288}, + [1795] = {.lex_state = 29}, + [1796] = {.lex_state = 29}, + [1797] = {.lex_state = 29}, + [1798] = {.lex_state = 29}, + [1799] = {.lex_state = 29}, + [1800] = {.lex_state = 29}, + [1801] = {.lex_state = 29}, + [1802] = {.lex_state = 29}, + [1803] = {.lex_state = 29}, + [1804] = {.lex_state = 29}, + [1805] = {.lex_state = 29}, + [1806] = {.lex_state = 29}, + [1807] = {.lex_state = 29}, + [1808] = {.lex_state = 29}, + [1809] = {.lex_state = 29}, + [1810] = {.lex_state = 29}, + [1811] = {.lex_state = 29}, + [1812] = {.lex_state = 29}, + [1813] = {.lex_state = 288}, + [1814] = {.lex_state = 29}, + [1815] = {.lex_state = 29}, + [1816] = {.lex_state = 29}, + [1817] = {.lex_state = 29}, + [1818] = {.lex_state = 29}, + [1819] = {.lex_state = 288}, + [1820] = {.lex_state = 288}, + [1821] = {.lex_state = 288}, + [1822] = {.lex_state = 288}, + [1823] = {.lex_state = 29}, + [1824] = {.lex_state = 29}, + [1825] = {.lex_state = 288}, + [1826] = {.lex_state = 288}, + [1827] = {.lex_state = 25}, [1828] = {.lex_state = 25}, - [1829] = {.lex_state = 25}, - [1830] = {.lex_state = 282}, - [1831] = {.lex_state = 27}, - [1832] = {.lex_state = 282}, - [1833] = {.lex_state = 282}, - [1834] = {.lex_state = 282}, - [1835] = {.lex_state = 282}, + [1829] = {.lex_state = 288}, + [1830] = {.lex_state = 288}, + [1831] = {.lex_state = 288}, + [1832] = {.lex_state = 288}, + [1833] = {.lex_state = 25}, + [1834] = {.lex_state = 25}, + [1835] = {.lex_state = 25}, [1836] = {.lex_state = 25}, [1837] = {.lex_state = 25}, [1838] = {.lex_state = 25}, - [1839] = {.lex_state = 282}, - [1840] = {.lex_state = 27}, + [1839] = {.lex_state = 25}, + [1840] = {.lex_state = 25}, [1841] = {.lex_state = 25}, [1842] = {.lex_state = 25}, [1843] = {.lex_state = 25}, @@ -8208,332 +8320,332 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1849] = {.lex_state = 25}, [1850] = {.lex_state = 25}, [1851] = {.lex_state = 25}, - [1852] = {.lex_state = 27}, - [1853] = {.lex_state = 27}, - [1854] = {.lex_state = 27}, - [1855] = {.lex_state = 27}, - [1856] = {.lex_state = 27}, - [1857] = {.lex_state = 27}, - [1858] = {.lex_state = 27}, - [1859] = {.lex_state = 27}, - [1860] = {.lex_state = 27}, - [1861] = {.lex_state = 27}, - [1862] = {.lex_state = 1}, - [1863] = {.lex_state = 1}, - [1864] = {.lex_state = 1}, - [1865] = {.lex_state = 27}, - [1866] = {.lex_state = 27}, - [1867] = {.lex_state = 27}, - [1868] = {.lex_state = 27}, - [1869] = {.lex_state = 27}, - [1870] = {.lex_state = 27}, - [1871] = {.lex_state = 27}, - [1872] = {.lex_state = 27}, - [1873] = {.lex_state = 27}, - [1874] = {.lex_state = 27}, - [1875] = {.lex_state = 27}, - [1876] = {.lex_state = 27}, - [1877] = {.lex_state = 27}, - [1878] = {.lex_state = 27}, - [1879] = {.lex_state = 27}, - [1880] = {.lex_state = 27}, - [1881] = {.lex_state = 27}, - [1882] = {.lex_state = 27}, - [1883] = {.lex_state = 27}, - [1884] = {.lex_state = 27}, - [1885] = {.lex_state = 27}, - [1886] = {.lex_state = 27}, - [1887] = {.lex_state = 27}, - [1888] = {.lex_state = 27}, - [1889] = {.lex_state = 27}, - [1890] = {.lex_state = 27}, - [1891] = {.lex_state = 27}, - [1892] = {.lex_state = 27}, - [1893] = {.lex_state = 27}, - [1894] = {.lex_state = 27}, - [1895] = {.lex_state = 27}, - [1896] = {.lex_state = 27}, - [1897] = {.lex_state = 27}, - [1898] = {.lex_state = 27}, - [1899] = {.lex_state = 27}, - [1900] = {.lex_state = 27}, - [1901] = {.lex_state = 27}, - [1902] = {.lex_state = 27}, - [1903] = {.lex_state = 27}, - [1904] = {.lex_state = 27}, - [1905] = {.lex_state = 27}, - [1906] = {.lex_state = 27}, - [1907] = {.lex_state = 27}, - [1908] = {.lex_state = 27}, - [1909] = {.lex_state = 27}, - [1910] = {.lex_state = 27}, - [1911] = {.lex_state = 27}, - [1912] = {.lex_state = 27}, - [1913] = {.lex_state = 27}, - [1914] = {.lex_state = 27}, - [1915] = {.lex_state = 27}, - [1916] = {.lex_state = 27}, - [1917] = {.lex_state = 27}, - [1918] = {.lex_state = 27}, - [1919] = {.lex_state = 27}, - [1920] = {.lex_state = 27}, - [1921] = {.lex_state = 27}, - [1922] = {.lex_state = 27}, - [1923] = {.lex_state = 27}, - [1924] = {.lex_state = 27}, - [1925] = {.lex_state = 27}, - [1926] = {.lex_state = 27}, - [1927] = {.lex_state = 27}, - [1928] = {.lex_state = 27}, - [1929] = {.lex_state = 27}, - [1930] = {.lex_state = 27}, - [1931] = {.lex_state = 27}, - [1932] = {.lex_state = 27}, - [1933] = {.lex_state = 27}, - [1934] = {.lex_state = 27}, - [1935] = {.lex_state = 27}, - [1936] = {.lex_state = 27}, - [1937] = {.lex_state = 27}, - [1938] = {.lex_state = 27}, - [1939] = {.lex_state = 27}, - [1940] = {.lex_state = 27}, - [1941] = {.lex_state = 27}, - [1942] = {.lex_state = 27}, - [1943] = {.lex_state = 27}, - [1944] = {.lex_state = 27}, - [1945] = {.lex_state = 27}, - [1946] = {.lex_state = 27}, - [1947] = {.lex_state = 27}, - [1948] = {.lex_state = 27}, - [1949] = {.lex_state = 27}, - [1950] = {.lex_state = 27}, - [1951] = {.lex_state = 27}, - [1952] = {.lex_state = 27}, - [1953] = {.lex_state = 27}, - [1954] = {.lex_state = 27}, - [1955] = {.lex_state = 27}, - [1956] = {.lex_state = 27}, - [1957] = {.lex_state = 27}, - [1958] = {.lex_state = 27}, - [1959] = {.lex_state = 27}, - [1960] = {.lex_state = 27}, - [1961] = {.lex_state = 27}, - [1962] = {.lex_state = 27}, - [1963] = {.lex_state = 27}, - [1964] = {.lex_state = 27}, - [1965] = {.lex_state = 27}, - [1966] = {.lex_state = 27}, - [1967] = {.lex_state = 27}, - [1968] = {.lex_state = 27}, - [1969] = {.lex_state = 27}, - [1970] = {.lex_state = 27}, - [1971] = {.lex_state = 27}, - [1972] = {.lex_state = 27}, - [1973] = {.lex_state = 27}, - [1974] = {.lex_state = 27}, - [1975] = {.lex_state = 27}, - [1976] = {.lex_state = 27}, - [1977] = {.lex_state = 27}, - [1978] = {.lex_state = 27}, - [1979] = {.lex_state = 27}, - [1980] = {.lex_state = 27}, - [1981] = {.lex_state = 27}, - [1982] = {.lex_state = 27}, - [1983] = {.lex_state = 27}, - [1984] = {.lex_state = 27}, - [1985] = {.lex_state = 27}, - [1986] = {.lex_state = 27}, - [1987] = {.lex_state = 27}, - [1988] = {.lex_state = 27}, - [1989] = {.lex_state = 27}, - [1990] = {.lex_state = 27}, - [1991] = {.lex_state = 27}, - [1992] = {.lex_state = 27}, - [1993] = {.lex_state = 27}, - [1994] = {.lex_state = 27}, - [1995] = {.lex_state = 27}, - [1996] = {.lex_state = 29}, - [1997] = {.lex_state = 29}, - [1998] = {.lex_state = 29}, - [1999] = {.lex_state = 29}, - [2000] = {.lex_state = 29}, - [2001] = {.lex_state = 29}, - [2002] = {.lex_state = 29}, - [2003] = {.lex_state = 29}, - [2004] = {.lex_state = 29}, - [2005] = {.lex_state = 29}, - [2006] = {.lex_state = 29}, - [2007] = {.lex_state = 29}, - [2008] = {.lex_state = 1}, - [2009] = {.lex_state = 1}, - [2010] = {.lex_state = 19}, - [2011] = {.lex_state = 19}, - [2012] = {.lex_state = 19}, - [2013] = {.lex_state = 29}, - [2014] = {.lex_state = 19}, - [2015] = {.lex_state = 19}, - [2016] = {.lex_state = 19}, - [2017] = {.lex_state = 19}, - [2018] = {.lex_state = 19}, - [2019] = {.lex_state = 19}, - [2020] = {.lex_state = 19}, - [2021] = {.lex_state = 19}, - [2022] = {.lex_state = 19}, - [2023] = {.lex_state = 29}, - [2024] = {.lex_state = 29}, - [2025] = {.lex_state = 29}, - [2026] = {.lex_state = 29}, - [2027] = {.lex_state = 30}, - [2028] = {.lex_state = 17}, - [2029] = {.lex_state = 30}, - [2030] = {.lex_state = 17}, - [2031] = {.lex_state = 17}, - [2032] = {.lex_state = 30}, - [2033] = {.lex_state = 17}, - [2034] = {.lex_state = 17}, - [2035] = {.lex_state = 17}, - [2036] = {.lex_state = 30}, - [2037] = {.lex_state = 30}, - [2038] = {.lex_state = 17}, - [2039] = {.lex_state = 17}, - [2040] = {.lex_state = 29}, - [2041] = {.lex_state = 17}, - [2042] = {.lex_state = 30}, - [2043] = {.lex_state = 17}, - [2044] = {.lex_state = 17}, - [2045] = {.lex_state = 17}, - [2046] = {.lex_state = 17}, - [2047] = {.lex_state = 17}, - [2048] = {.lex_state = 30}, - [2049] = {.lex_state = 17}, - [2050] = {.lex_state = 30}, - [2051] = {.lex_state = 30}, - [2052] = {.lex_state = 30}, - [2053] = {.lex_state = 17}, - [2054] = {.lex_state = 28}, - [2055] = {.lex_state = 17}, - [2056] = {.lex_state = 30}, - [2057] = {.lex_state = 17}, - [2058] = {.lex_state = 17}, - [2059] = {.lex_state = 17}, - [2060] = {.lex_state = 17}, - [2061] = {.lex_state = 17}, - [2062] = {.lex_state = 30}, - [2063] = {.lex_state = 17}, - [2064] = {.lex_state = 30}, - [2065] = {.lex_state = 30}, - [2066] = {.lex_state = 17}, - [2067] = {.lex_state = 17}, - [2068] = {.lex_state = 17}, - [2069] = {.lex_state = 29}, - [2070] = {.lex_state = 29}, - [2071] = {.lex_state = 29}, - [2072] = {.lex_state = 29}, - [2073] = {.lex_state = 29}, - [2074] = {.lex_state = 29}, - [2075] = {.lex_state = 22}, - [2076] = {.lex_state = 29}, - [2077] = {.lex_state = 29}, - [2078] = {.lex_state = 29}, - [2079] = {.lex_state = 29}, - [2080] = {.lex_state = 29}, - [2081] = {.lex_state = 22}, - [2082] = {.lex_state = 29}, - [2083] = {.lex_state = 29}, - [2084] = {.lex_state = 29}, - [2085] = {.lex_state = 29}, - [2086] = {.lex_state = 29}, - [2087] = {.lex_state = 22}, - [2088] = {.lex_state = 29}, - [2089] = {.lex_state = 22}, + [1852] = {.lex_state = 25}, + [1853] = {.lex_state = 25}, + [1854] = {.lex_state = 25}, + [1855] = {.lex_state = 25}, + [1856] = {.lex_state = 25}, + [1857] = {.lex_state = 25}, + [1858] = {.lex_state = 25}, + [1859] = {.lex_state = 25}, + [1860] = {.lex_state = 25}, + [1861] = {.lex_state = 25}, + [1862] = {.lex_state = 25}, + [1863] = {.lex_state = 25}, + [1864] = {.lex_state = 25}, + [1865] = {.lex_state = 25}, + [1866] = {.lex_state = 25}, + [1867] = {.lex_state = 25}, + [1868] = {.lex_state = 25}, + [1869] = {.lex_state = 25}, + [1870] = {.lex_state = 25}, + [1871] = {.lex_state = 25}, + [1872] = {.lex_state = 25}, + [1873] = {.lex_state = 25}, + [1874] = {.lex_state = 25}, + [1875] = {.lex_state = 25}, + [1876] = {.lex_state = 25}, + [1877] = {.lex_state = 25}, + [1878] = {.lex_state = 25}, + [1879] = {.lex_state = 25}, + [1880] = {.lex_state = 25}, + [1881] = {.lex_state = 25}, + [1882] = {.lex_state = 25}, + [1883] = {.lex_state = 25}, + [1884] = {.lex_state = 25}, + [1885] = {.lex_state = 25}, + [1886] = {.lex_state = 25}, + [1887] = {.lex_state = 25}, + [1888] = {.lex_state = 25}, + [1889] = {.lex_state = 25}, + [1890] = {.lex_state = 25}, + [1891] = {.lex_state = 25}, + [1892] = {.lex_state = 25}, + [1893] = {.lex_state = 25}, + [1894] = {.lex_state = 25}, + [1895] = {.lex_state = 25}, + [1896] = {.lex_state = 25}, + [1897] = {.lex_state = 25}, + [1898] = {.lex_state = 25}, + [1899] = {.lex_state = 25}, + [1900] = {.lex_state = 25}, + [1901] = {.lex_state = 25}, + [1902] = {.lex_state = 25}, + [1903] = {.lex_state = 25}, + [1904] = {.lex_state = 25}, + [1905] = {.lex_state = 25}, + [1906] = {.lex_state = 25}, + [1907] = {.lex_state = 25}, + [1908] = {.lex_state = 25}, + [1909] = {.lex_state = 25}, + [1910] = {.lex_state = 25}, + [1911] = {.lex_state = 25}, + [1912] = {.lex_state = 25}, + [1913] = {.lex_state = 25}, + [1914] = {.lex_state = 25}, + [1915] = {.lex_state = 25}, + [1916] = {.lex_state = 25}, + [1917] = {.lex_state = 25}, + [1918] = {.lex_state = 25}, + [1919] = {.lex_state = 25}, + [1920] = {.lex_state = 25}, + [1921] = {.lex_state = 25}, + [1922] = {.lex_state = 25}, + [1923] = {.lex_state = 25}, + [1924] = {.lex_state = 25}, + [1925] = {.lex_state = 25}, + [1926] = {.lex_state = 25}, + [1927] = {.lex_state = 25}, + [1928] = {.lex_state = 25}, + [1929] = {.lex_state = 25}, + [1930] = {.lex_state = 25}, + [1931] = {.lex_state = 25}, + [1932] = {.lex_state = 25}, + [1933] = {.lex_state = 25}, + [1934] = {.lex_state = 25}, + [1935] = {.lex_state = 25}, + [1936] = {.lex_state = 25}, + [1937] = {.lex_state = 25}, + [1938] = {.lex_state = 25}, + [1939] = {.lex_state = 25}, + [1940] = {.lex_state = 25}, + [1941] = {.lex_state = 25}, + [1942] = {.lex_state = 25}, + [1943] = {.lex_state = 25}, + [1944] = {.lex_state = 25}, + [1945] = {.lex_state = 25}, + [1946] = {.lex_state = 25}, + [1947] = {.lex_state = 25}, + [1948] = {.lex_state = 25}, + [1949] = {.lex_state = 25}, + [1950] = {.lex_state = 25}, + [1951] = {.lex_state = 25}, + [1952] = {.lex_state = 25}, + [1953] = {.lex_state = 25}, + [1954] = {.lex_state = 25}, + [1955] = {.lex_state = 1}, + [1956] = {.lex_state = 1}, + [1957] = {.lex_state = 1}, + [1958] = {.lex_state = 25}, + [1959] = {.lex_state = 25}, + [1960] = {.lex_state = 25}, + [1961] = {.lex_state = 25}, + [1962] = {.lex_state = 25}, + [1963] = {.lex_state = 25}, + [1964] = {.lex_state = 25}, + [1965] = {.lex_state = 25}, + [1966] = {.lex_state = 25}, + [1967] = {.lex_state = 25}, + [1968] = {.lex_state = 25}, + [1969] = {.lex_state = 25}, + [1970] = {.lex_state = 25}, + [1971] = {.lex_state = 25}, + [1972] = {.lex_state = 25}, + [1973] = {.lex_state = 25}, + [1974] = {.lex_state = 25}, + [1975] = {.lex_state = 25}, + [1976] = {.lex_state = 25}, + [1977] = {.lex_state = 25}, + [1978] = {.lex_state = 25}, + [1979] = {.lex_state = 25}, + [1980] = {.lex_state = 25}, + [1981] = {.lex_state = 25}, + [1982] = {.lex_state = 25}, + [1983] = {.lex_state = 25}, + [1984] = {.lex_state = 25}, + [1985] = {.lex_state = 25}, + [1986] = {.lex_state = 25}, + [1987] = {.lex_state = 25}, + [1988] = {.lex_state = 25}, + [1989] = {.lex_state = 25}, + [1990] = {.lex_state = 25}, + [1991] = {.lex_state = 25}, + [1992] = {.lex_state = 25}, + [1993] = {.lex_state = 25}, + [1994] = {.lex_state = 25}, + [1995] = {.lex_state = 25}, + [1996] = {.lex_state = 25}, + [1997] = {.lex_state = 25}, + [1998] = {.lex_state = 25}, + [1999] = {.lex_state = 25}, + [2000] = {.lex_state = 25}, + [2001] = {.lex_state = 25}, + [2002] = {.lex_state = 25}, + [2003] = {.lex_state = 25}, + [2004] = {.lex_state = 25}, + [2005] = {.lex_state = 25}, + [2006] = {.lex_state = 25}, + [2007] = {.lex_state = 25}, + [2008] = {.lex_state = 25}, + [2009] = {.lex_state = 25}, + [2010] = {.lex_state = 25}, + [2011] = {.lex_state = 25}, + [2012] = {.lex_state = 25}, + [2013] = {.lex_state = 25}, + [2014] = {.lex_state = 25}, + [2015] = {.lex_state = 25}, + [2016] = {.lex_state = 25}, + [2017] = {.lex_state = 25}, + [2018] = {.lex_state = 25}, + [2019] = {.lex_state = 25}, + [2020] = {.lex_state = 25}, + [2021] = {.lex_state = 25}, + [2022] = {.lex_state = 25}, + [2023] = {.lex_state = 25}, + [2024] = {.lex_state = 25}, + [2025] = {.lex_state = 25}, + [2026] = {.lex_state = 25}, + [2027] = {.lex_state = 25}, + [2028] = {.lex_state = 25}, + [2029] = {.lex_state = 25}, + [2030] = {.lex_state = 25}, + [2031] = {.lex_state = 25}, + [2032] = {.lex_state = 25}, + [2033] = {.lex_state = 25}, + [2034] = {.lex_state = 25}, + [2035] = {.lex_state = 25}, + [2036] = {.lex_state = 25}, + [2037] = {.lex_state = 25}, + [2038] = {.lex_state = 25}, + [2039] = {.lex_state = 25}, + [2040] = {.lex_state = 25}, + [2041] = {.lex_state = 25}, + [2042] = {.lex_state = 25}, + [2043] = {.lex_state = 25}, + [2044] = {.lex_state = 25}, + [2045] = {.lex_state = 25}, + [2046] = {.lex_state = 25}, + [2047] = {.lex_state = 25}, + [2048] = {.lex_state = 25}, + [2049] = {.lex_state = 25}, + [2050] = {.lex_state = 25}, + [2051] = {.lex_state = 25}, + [2052] = {.lex_state = 25}, + [2053] = {.lex_state = 25}, + [2054] = {.lex_state = 25}, + [2055] = {.lex_state = 25}, + [2056] = {.lex_state = 25}, + [2057] = {.lex_state = 25}, + [2058] = {.lex_state = 25}, + [2059] = {.lex_state = 25}, + [2060] = {.lex_state = 25}, + [2061] = {.lex_state = 25}, + [2062] = {.lex_state = 25}, + [2063] = {.lex_state = 25}, + [2064] = {.lex_state = 25}, + [2065] = {.lex_state = 25}, + [2066] = {.lex_state = 25}, + [2067] = {.lex_state = 25}, + [2068] = {.lex_state = 25}, + [2069] = {.lex_state = 25}, + [2070] = {.lex_state = 25}, + [2071] = {.lex_state = 25}, + [2072] = {.lex_state = 25}, + [2073] = {.lex_state = 25}, + [2074] = {.lex_state = 25}, + [2075] = {.lex_state = 25}, + [2076] = {.lex_state = 25}, + [2077] = {.lex_state = 25}, + [2078] = {.lex_state = 25}, + [2079] = {.lex_state = 25}, + [2080] = {.lex_state = 25}, + [2081] = {.lex_state = 25}, + [2082] = {.lex_state = 25}, + [2083] = {.lex_state = 25}, + [2084] = {.lex_state = 25}, + [2085] = {.lex_state = 25}, + [2086] = {.lex_state = 25}, + [2087] = {.lex_state = 25}, + [2088] = {.lex_state = 25}, + [2089] = {.lex_state = 29}, [2090] = {.lex_state = 29}, [2091] = {.lex_state = 29}, [2092] = {.lex_state = 29}, [2093] = {.lex_state = 29}, [2094] = {.lex_state = 29}, - [2095] = {.lex_state = 22}, + [2095] = {.lex_state = 29}, [2096] = {.lex_state = 29}, - [2097] = {.lex_state = 22}, + [2097] = {.lex_state = 29}, [2098] = {.lex_state = 29}, [2099] = {.lex_state = 29}, [2100] = {.lex_state = 29}, - [2101] = {.lex_state = 29}, - [2102] = {.lex_state = 29}, - [2103] = {.lex_state = 29}, - [2104] = {.lex_state = 29}, + [2101] = {.lex_state = 1}, + [2102] = {.lex_state = 1}, + [2103] = {.lex_state = 19}, + [2104] = {.lex_state = 19}, [2105] = {.lex_state = 29}, - [2106] = {.lex_state = 29}, - [2107] = {.lex_state = 22}, - [2108] = {.lex_state = 29}, - [2109] = {.lex_state = 22}, - [2110] = {.lex_state = 29}, - [2111] = {.lex_state = 29}, - [2112] = {.lex_state = 29}, - [2113] = {.lex_state = 29}, - [2114] = {.lex_state = 29}, - [2115] = {.lex_state = 29}, + [2106] = {.lex_state = 19}, + [2107] = {.lex_state = 19}, + [2108] = {.lex_state = 19}, + [2109] = {.lex_state = 19}, + [2110] = {.lex_state = 19}, + [2111] = {.lex_state = 19}, + [2112] = {.lex_state = 19}, + [2113] = {.lex_state = 19}, + [2114] = {.lex_state = 19}, + [2115] = {.lex_state = 19}, [2116] = {.lex_state = 29}, [2117] = {.lex_state = 29}, [2118] = {.lex_state = 29}, [2119] = {.lex_state = 29}, - [2120] = {.lex_state = 29}, - [2121] = {.lex_state = 29}, - [2122] = {.lex_state = 29}, - [2123] = {.lex_state = 29}, - [2124] = {.lex_state = 29}, - [2125] = {.lex_state = 29}, - [2126] = {.lex_state = 29}, - [2127] = {.lex_state = 29}, - [2128] = {.lex_state = 29}, - [2129] = {.lex_state = 29}, - [2130] = {.lex_state = 29}, - [2131] = {.lex_state = 29}, - [2132] = {.lex_state = 29}, - [2133] = {.lex_state = 29}, - [2134] = {.lex_state = 29}, - [2135] = {.lex_state = 29}, - [2136] = {.lex_state = 29}, - [2137] = {.lex_state = 22}, - [2138] = {.lex_state = 29}, - [2139] = {.lex_state = 29}, - [2140] = {.lex_state = 29}, - [2141] = {.lex_state = 29}, - [2142] = {.lex_state = 29}, - [2143] = {.lex_state = 29}, - [2144] = {.lex_state = 29}, - [2145] = {.lex_state = 29}, - [2146] = {.lex_state = 29}, - [2147] = {.lex_state = 29}, - [2148] = {.lex_state = 29}, - [2149] = {.lex_state = 29}, - [2150] = {.lex_state = 29}, - [2151] = {.lex_state = 29}, - [2152] = {.lex_state = 29}, - [2153] = {.lex_state = 29}, - [2154] = {.lex_state = 29}, - [2155] = {.lex_state = 29}, - [2156] = {.lex_state = 29}, - [2157] = {.lex_state = 29}, - [2158] = {.lex_state = 29}, - [2159] = {.lex_state = 29}, + [2120] = {.lex_state = 17}, + [2121] = {.lex_state = 30}, + [2122] = {.lex_state = 17}, + [2123] = {.lex_state = 17}, + [2124] = {.lex_state = 17}, + [2125] = {.lex_state = 17}, + [2126] = {.lex_state = 17}, + [2127] = {.lex_state = 17}, + [2128] = {.lex_state = 17}, + [2129] = {.lex_state = 17}, + [2130] = {.lex_state = 17}, + [2131] = {.lex_state = 17}, + [2132] = {.lex_state = 17}, + [2133] = {.lex_state = 30}, + [2134] = {.lex_state = 30}, + [2135] = {.lex_state = 17}, + [2136] = {.lex_state = 30}, + [2137] = {.lex_state = 30}, + [2138] = {.lex_state = 30}, + [2139] = {.lex_state = 17}, + [2140] = {.lex_state = 17}, + [2141] = {.lex_state = 17}, + [2142] = {.lex_state = 17}, + [2143] = {.lex_state = 17}, + [2144] = {.lex_state = 17}, + [2145] = {.lex_state = 17}, + [2146] = {.lex_state = 30}, + [2147] = {.lex_state = 17}, + [2148] = {.lex_state = 17}, + [2149] = {.lex_state = 17}, + [2150] = {.lex_state = 30}, + [2151] = {.lex_state = 30}, + [2152] = {.lex_state = 30}, + [2153] = {.lex_state = 30}, + [2154] = {.lex_state = 30}, + [2155] = {.lex_state = 30}, + [2156] = {.lex_state = 30}, + [2157] = {.lex_state = 17}, + [2158] = {.lex_state = 17}, + [2159] = {.lex_state = 17}, [2160] = {.lex_state = 29}, - [2161] = {.lex_state = 29}, - [2162] = {.lex_state = 29}, + [2161] = {.lex_state = 22}, + [2162] = {.lex_state = 22}, [2163] = {.lex_state = 29}, - [2164] = {.lex_state = 22}, + [2164] = {.lex_state = 29}, [2165] = {.lex_state = 29}, [2166] = {.lex_state = 29}, - [2167] = {.lex_state = 22}, + [2167] = {.lex_state = 29}, [2168] = {.lex_state = 29}, [2169] = {.lex_state = 29}, [2170] = {.lex_state = 29}, [2171] = {.lex_state = 29}, [2172] = {.lex_state = 29}, - [2173] = {.lex_state = 29}, - [2174] = {.lex_state = 29}, - [2175] = {.lex_state = 29}, - [2176] = {.lex_state = 29}, - [2177] = {.lex_state = 29}, + [2173] = {.lex_state = 22}, + [2174] = {.lex_state = 22}, + [2175] = {.lex_state = 22}, + [2176] = {.lex_state = 22}, + [2177] = {.lex_state = 22}, [2178] = {.lex_state = 29}, [2179] = {.lex_state = 29}, [2180] = {.lex_state = 29}, @@ -8541,60 +8653,60 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [2182] = {.lex_state = 29}, [2183] = {.lex_state = 29}, [2184] = {.lex_state = 29}, - [2185] = {.lex_state = 29}, + [2185] = {.lex_state = 22}, [2186] = {.lex_state = 29}, [2187] = {.lex_state = 29}, - [2188] = {.lex_state = 29}, + [2188] = {.lex_state = 22}, [2189] = {.lex_state = 29}, - [2190] = {.lex_state = 29}, - [2191] = {.lex_state = 22}, + [2190] = {.lex_state = 22}, + [2191] = {.lex_state = 29}, [2192] = {.lex_state = 29}, - [2193] = {.lex_state = 29}, + [2193] = {.lex_state = 22}, [2194] = {.lex_state = 29}, [2195] = {.lex_state = 29}, [2196] = {.lex_state = 29}, - [2197] = {.lex_state = 29}, - [2198] = {.lex_state = 29}, + [2197] = {.lex_state = 22}, + [2198] = {.lex_state = 22}, [2199] = {.lex_state = 22}, [2200] = {.lex_state = 22}, - [2201] = {.lex_state = 27}, - [2202] = {.lex_state = 22}, + [2201] = {.lex_state = 22}, + [2202] = {.lex_state = 29}, [2203] = {.lex_state = 22}, - [2204] = {.lex_state = 22}, - [2205] = {.lex_state = 22}, - [2206] = {.lex_state = 22}, + [2204] = {.lex_state = 29}, + [2205] = {.lex_state = 29}, + [2206] = {.lex_state = 29}, [2207] = {.lex_state = 22}, - [2208] = {.lex_state = 22}, + [2208] = {.lex_state = 29}, [2209] = {.lex_state = 22}, - [2210] = {.lex_state = 27}, + [2210] = {.lex_state = 22}, [2211] = {.lex_state = 22}, [2212] = {.lex_state = 22}, - [2213] = {.lex_state = 27}, + [2213] = {.lex_state = 25}, [2214] = {.lex_state = 22}, - [2215] = {.lex_state = 27}, + [2215] = {.lex_state = 22}, [2216] = {.lex_state = 22}, [2217] = {.lex_state = 22}, [2218] = {.lex_state = 22}, [2219] = {.lex_state = 22}, [2220] = {.lex_state = 22}, - [2221] = {.lex_state = 27}, - [2222] = {.lex_state = 27}, - [2223] = {.lex_state = 27}, - [2224] = {.lex_state = 27}, - [2225] = {.lex_state = 30}, - [2226] = {.lex_state = 27}, - [2227] = {.lex_state = 27}, - [2228] = {.lex_state = 27}, - [2229] = {.lex_state = 27}, - [2230] = {.lex_state = 27}, - [2231] = {.lex_state = 27}, - [2232] = {.lex_state = 27}, - [2233] = {.lex_state = 30}, - [2234] = {.lex_state = 27}, + [2221] = {.lex_state = 22}, + [2222] = {.lex_state = 30}, + [2223] = {.lex_state = 29}, + [2224] = {.lex_state = 29}, + [2225] = {.lex_state = 29}, + [2226] = {.lex_state = 29}, + [2227] = {.lex_state = 29}, + [2228] = {.lex_state = 30}, + [2229] = {.lex_state = 29}, + [2230] = {.lex_state = 29}, + [2231] = {.lex_state = 28}, + [2232] = {.lex_state = 29}, + [2233] = {.lex_state = 29}, + [2234] = {.lex_state = 29}, [2235] = {.lex_state = 29}, - [2236] = {.lex_state = 30}, - [2237] = {.lex_state = 18}, - [2238] = {.lex_state = 19}, + [2236] = {.lex_state = 19}, + [2237] = {.lex_state = 30}, + [2238] = {.lex_state = 18}, [2239] = {.lex_state = 19}, [2240] = {.lex_state = 19}, [2241] = {.lex_state = 19}, @@ -8620,11 +8732,11 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [2261] = {.lex_state = 19}, [2262] = {.lex_state = 19}, [2263] = {.lex_state = 19}, - [2264] = {.lex_state = 19}, - [2265] = {.lex_state = 1}, + [2264] = {.lex_state = 1}, + [2265] = {.lex_state = 19}, [2266] = {.lex_state = 19}, [2267] = {.lex_state = 19}, - [2268] = {.lex_state = 1}, + [2268] = {.lex_state = 19}, [2269] = {.lex_state = 19}, [2270] = {.lex_state = 19}, [2271] = {.lex_state = 19}, @@ -8642,12 +8754,12 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [2283] = {.lex_state = 19}, [2284] = {.lex_state = 19}, [2285] = {.lex_state = 19}, - [2286] = {.lex_state = 1}, + [2286] = {.lex_state = 19}, [2287] = {.lex_state = 19}, [2288] = {.lex_state = 19}, [2289] = {.lex_state = 19}, [2290] = {.lex_state = 19}, - [2291] = {.lex_state = 19}, + [2291] = {.lex_state = 1}, [2292] = {.lex_state = 19}, [2293] = {.lex_state = 19}, [2294] = {.lex_state = 19}, @@ -8655,7 +8767,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [2296] = {.lex_state = 19}, [2297] = {.lex_state = 19}, [2298] = {.lex_state = 19}, - [2299] = {.lex_state = 19}, + [2299] = {.lex_state = 1}, [2300] = {.lex_state = 19}, [2301] = {.lex_state = 19}, [2302] = {.lex_state = 19}, @@ -8692,1168 +8804,1170 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [2333] = {.lex_state = 19}, [2334] = {.lex_state = 19}, [2335] = {.lex_state = 19}, - [2336] = {.lex_state = 282}, - [2337] = {.lex_state = 282}, - [2338] = {.lex_state = 282}, - [2339] = {.lex_state = 282}, - [2340] = {.lex_state = 19}, - [2341] = {.lex_state = 282}, - [2342] = {.lex_state = 282}, - [2343] = {.lex_state = 282}, - [2344] = {.lex_state = 19}, - [2345] = {.lex_state = 282}, - [2346] = {.lex_state = 282}, - [2347] = {.lex_state = 282}, - [2348] = {.lex_state = 282}, - [2349] = {.lex_state = 282}, - [2350] = {.lex_state = 282}, - [2351] = {.lex_state = 282}, - [2352] = {.lex_state = 282}, - [2353] = {.lex_state = 282}, - [2354] = {.lex_state = 282}, - [2355] = {.lex_state = 282}, - [2356] = {.lex_state = 282}, - [2357] = {.lex_state = 282}, - [2358] = {.lex_state = 282}, - [2359] = {.lex_state = 282}, - [2360] = {.lex_state = 282}, - [2361] = {.lex_state = 282}, - [2362] = {.lex_state = 282}, - [2363] = {.lex_state = 282}, - [2364] = {.lex_state = 282}, - [2365] = {.lex_state = 282}, - [2366] = {.lex_state = 282}, - [2367] = {.lex_state = 282}, - [2368] = {.lex_state = 282}, - [2369] = {.lex_state = 282}, - [2370] = {.lex_state = 282}, - [2371] = {.lex_state = 282}, - [2372] = {.lex_state = 282}, - [2373] = {.lex_state = 282}, - [2374] = {.lex_state = 282}, - [2375] = {.lex_state = 282}, - [2376] = {.lex_state = 282}, - [2377] = {.lex_state = 282}, - [2378] = {.lex_state = 282}, - [2379] = {.lex_state = 282}, - [2380] = {.lex_state = 282}, - [2381] = {.lex_state = 1}, + [2336] = {.lex_state = 288}, + [2337] = {.lex_state = 288}, + [2338] = {.lex_state = 288}, + [2339] = {.lex_state = 288}, + [2340] = {.lex_state = 288}, + [2341] = {.lex_state = 288}, + [2342] = {.lex_state = 288}, + [2343] = {.lex_state = 19}, + [2344] = {.lex_state = 288}, + [2345] = {.lex_state = 288}, + [2346] = {.lex_state = 288}, + [2347] = {.lex_state = 288}, + [2348] = {.lex_state = 288}, + [2349] = {.lex_state = 288}, + [2350] = {.lex_state = 288}, + [2351] = {.lex_state = 19}, + [2352] = {.lex_state = 288}, + [2353] = {.lex_state = 288}, + [2354] = {.lex_state = 288}, + [2355] = {.lex_state = 288}, + [2356] = {.lex_state = 288}, + [2357] = {.lex_state = 288}, + [2358] = {.lex_state = 288}, + [2359] = {.lex_state = 288}, + [2360] = {.lex_state = 288}, + [2361] = {.lex_state = 288}, + [2362] = {.lex_state = 288}, + [2363] = {.lex_state = 288}, + [2364] = {.lex_state = 288}, + [2365] = {.lex_state = 288}, + [2366] = {.lex_state = 288}, + [2367] = {.lex_state = 288}, + [2368] = {.lex_state = 288}, + [2369] = {.lex_state = 288}, + [2370] = {.lex_state = 288}, + [2371] = {.lex_state = 288}, + [2372] = {.lex_state = 288}, + [2373] = {.lex_state = 288}, + [2374] = {.lex_state = 288}, + [2375] = {.lex_state = 288}, + [2376] = {.lex_state = 288}, + [2377] = {.lex_state = 288}, + [2378] = {.lex_state = 288}, + [2379] = {.lex_state = 25}, + [2380] = {.lex_state = 19}, + [2381] = {.lex_state = 19}, [2382] = {.lex_state = 19}, - [2383] = {.lex_state = 282}, + [2383] = {.lex_state = 19}, [2384] = {.lex_state = 19}, - [2385] = {.lex_state = 282}, + [2385] = {.lex_state = 19}, [2386] = {.lex_state = 19}, [2387] = {.lex_state = 19}, - [2388] = {.lex_state = 282}, - [2389] = {.lex_state = 282}, - [2390] = {.lex_state = 19}, + [2388] = {.lex_state = 288}, + [2389] = {.lex_state = 19}, + [2390] = {.lex_state = 288}, [2391] = {.lex_state = 19}, [2392] = {.lex_state = 19}, - [2393] = {.lex_state = 282}, + [2393] = {.lex_state = 19}, [2394] = {.lex_state = 19}, - [2395] = {.lex_state = 282}, - [2396] = {.lex_state = 282}, - [2397] = {.lex_state = 22}, - [2398] = {.lex_state = 282}, - [2399] = {.lex_state = 28}, - [2400] = {.lex_state = 1}, + [2395] = {.lex_state = 19}, + [2396] = {.lex_state = 19}, + [2397] = {.lex_state = 19}, + [2398] = {.lex_state = 288}, + [2399] = {.lex_state = 19}, + [2400] = {.lex_state = 19}, [2401] = {.lex_state = 19}, - [2402] = {.lex_state = 19}, + [2402] = {.lex_state = 288}, [2403] = {.lex_state = 19}, [2404] = {.lex_state = 19}, - [2405] = {.lex_state = 27}, + [2405] = {.lex_state = 19}, [2406] = {.lex_state = 19}, - [2407] = {.lex_state = 19}, + [2407] = {.lex_state = 288}, [2408] = {.lex_state = 19}, - [2409] = {.lex_state = 282}, + [2409] = {.lex_state = 19}, [2410] = {.lex_state = 19}, - [2411] = {.lex_state = 19}, - [2412] = {.lex_state = 19}, + [2411] = {.lex_state = 28}, + [2412] = {.lex_state = 1}, [2413] = {.lex_state = 19}, - [2414] = {.lex_state = 19}, - [2415] = {.lex_state = 19}, + [2414] = {.lex_state = 288}, + [2415] = {.lex_state = 22}, [2416] = {.lex_state = 19}, - [2417] = {.lex_state = 19}, - [2418] = {.lex_state = 19}, - [2419] = {.lex_state = 19}, - [2420] = {.lex_state = 282}, - [2421] = {.lex_state = 19}, - [2422] = {.lex_state = 19}, - [2423] = {.lex_state = 19}, - [2424] = {.lex_state = 282}, - [2425] = {.lex_state = 282}, - [2426] = {.lex_state = 282}, - [2427] = {.lex_state = 27}, - [2428] = {.lex_state = 27}, - [2429] = {.lex_state = 27}, - [2430] = {.lex_state = 27}, - [2431] = {.lex_state = 27}, - [2432] = {.lex_state = 27}, - [2433] = {.lex_state = 27}, - [2434] = {.lex_state = 27}, - [2435] = {.lex_state = 27}, - [2436] = {.lex_state = 27}, - [2437] = {.lex_state = 27}, - [2438] = {.lex_state = 27}, - [2439] = {.lex_state = 27}, - [2440] = {.lex_state = 27}, - [2441] = {.lex_state = 27}, - [2442] = {.lex_state = 27}, - [2443] = {.lex_state = 27}, - [2444] = {.lex_state = 27}, - [2445] = {.lex_state = 27}, - [2446] = {.lex_state = 27}, - [2447] = {.lex_state = 27}, - [2448] = {.lex_state = 27}, - [2449] = {.lex_state = 27}, - [2450] = {.lex_state = 27}, - [2451] = {.lex_state = 27}, - [2452] = {.lex_state = 27}, - [2453] = {.lex_state = 27}, - [2454] = {.lex_state = 27}, - [2455] = {.lex_state = 27}, - [2456] = {.lex_state = 27}, - [2457] = {.lex_state = 27}, - [2458] = {.lex_state = 27}, - [2459] = {.lex_state = 27}, - [2460] = {.lex_state = 27}, - [2461] = {.lex_state = 27}, - [2462] = {.lex_state = 27}, - [2463] = {.lex_state = 27}, - [2464] = {.lex_state = 27}, - [2465] = {.lex_state = 27}, - [2466] = {.lex_state = 27}, - [2467] = {.lex_state = 27}, - [2468] = {.lex_state = 27}, - [2469] = {.lex_state = 27}, - [2470] = {.lex_state = 27}, - [2471] = {.lex_state = 27}, - [2472] = {.lex_state = 27}, - [2473] = {.lex_state = 27}, - [2474] = {.lex_state = 27}, - [2475] = {.lex_state = 27}, - [2476] = {.lex_state = 27}, - [2477] = {.lex_state = 27}, - [2478] = {.lex_state = 27}, - [2479] = {.lex_state = 27}, - [2480] = {.lex_state = 27}, - [2481] = {.lex_state = 27}, - [2482] = {.lex_state = 27}, - [2483] = {.lex_state = 27}, - [2484] = {.lex_state = 27}, - [2485] = {.lex_state = 27}, - [2486] = {.lex_state = 27}, - [2487] = {.lex_state = 27}, - [2488] = {.lex_state = 27}, - [2489] = {.lex_state = 27}, - [2490] = {.lex_state = 27}, - [2491] = {.lex_state = 27}, - [2492] = {.lex_state = 27}, - [2493] = {.lex_state = 27}, - [2494] = {.lex_state = 27}, - [2495] = {.lex_state = 27}, - [2496] = {.lex_state = 27}, - [2497] = {.lex_state = 27}, - [2498] = {.lex_state = 27}, - [2499] = {.lex_state = 27}, - [2500] = {.lex_state = 27}, - [2501] = {.lex_state = 27}, - [2502] = {.lex_state = 27}, - [2503] = {.lex_state = 27}, - [2504] = {.lex_state = 27}, - [2505] = {.lex_state = 27}, - [2506] = {.lex_state = 27}, - [2507] = {.lex_state = 27}, - [2508] = {.lex_state = 27}, - [2509] = {.lex_state = 27}, - [2510] = {.lex_state = 27}, - [2511] = {.lex_state = 27}, - [2512] = {.lex_state = 27}, - [2513] = {.lex_state = 27}, - [2514] = {.lex_state = 27}, - [2515] = {.lex_state = 27}, - [2516] = {.lex_state = 27}, - [2517] = {.lex_state = 27}, - [2518] = {.lex_state = 27}, - [2519] = {.lex_state = 27}, - [2520] = {.lex_state = 27}, - [2521] = {.lex_state = 27}, - [2522] = {.lex_state = 27}, - [2523] = {.lex_state = 27}, - [2524] = {.lex_state = 27}, - [2525] = {.lex_state = 27}, - [2526] = {.lex_state = 27}, - [2527] = {.lex_state = 27}, - [2528] = {.lex_state = 27}, - [2529] = {.lex_state = 27}, - [2530] = {.lex_state = 27}, - [2531] = {.lex_state = 27}, - [2532] = {.lex_state = 27}, - [2533] = {.lex_state = 27}, - [2534] = {.lex_state = 27}, - [2535] = {.lex_state = 27}, - [2536] = {.lex_state = 27}, - [2537] = {.lex_state = 27}, - [2538] = {.lex_state = 27}, - [2539] = {.lex_state = 27}, - [2540] = {.lex_state = 27}, - [2541] = {.lex_state = 27}, - [2542] = {.lex_state = 27}, - [2543] = {.lex_state = 27}, - [2544] = {.lex_state = 27}, - [2545] = {.lex_state = 27}, - [2546] = {.lex_state = 27}, - [2547] = {.lex_state = 27}, - [2548] = {.lex_state = 27}, - [2549] = {.lex_state = 27}, - [2550] = {.lex_state = 27}, - [2551] = {.lex_state = 27}, - [2552] = {.lex_state = 27}, - [2553] = {.lex_state = 27}, - [2554] = {.lex_state = 27}, - [2555] = {.lex_state = 27}, - [2556] = {.lex_state = 27}, - [2557] = {.lex_state = 27}, - [2558] = {.lex_state = 27}, - [2559] = {.lex_state = 27}, - [2560] = {.lex_state = 27}, - [2561] = {.lex_state = 27}, - [2562] = {.lex_state = 27}, - [2563] = {.lex_state = 27}, - [2564] = {.lex_state = 27}, - [2565] = {.lex_state = 27}, - [2566] = {.lex_state = 27}, - [2567] = {.lex_state = 27}, - [2568] = {.lex_state = 27}, - [2569] = {.lex_state = 27}, - [2570] = {.lex_state = 27}, - [2571] = {.lex_state = 27}, - [2572] = {.lex_state = 27}, - [2573] = {.lex_state = 27}, - [2574] = {.lex_state = 27}, - [2575] = {.lex_state = 27}, - [2576] = {.lex_state = 27}, - [2577] = {.lex_state = 27}, - [2578] = {.lex_state = 27}, - [2579] = {.lex_state = 27}, - [2580] = {.lex_state = 27}, - [2581] = {.lex_state = 27}, - [2582] = {.lex_state = 27}, - [2583] = {.lex_state = 27}, - [2584] = {.lex_state = 27}, - [2585] = {.lex_state = 27}, - [2586] = {.lex_state = 27}, - [2587] = {.lex_state = 27}, - [2588] = {.lex_state = 27}, - [2589] = {.lex_state = 27}, - [2590] = {.lex_state = 27}, - [2591] = {.lex_state = 27}, - [2592] = {.lex_state = 27}, - [2593] = {.lex_state = 27}, - [2594] = {.lex_state = 27}, - [2595] = {.lex_state = 27}, - [2596] = {.lex_state = 27}, - [2597] = {.lex_state = 27}, - [2598] = {.lex_state = 27}, - [2599] = {.lex_state = 27}, - [2600] = {.lex_state = 27}, - [2601] = {.lex_state = 27}, - [2602] = {.lex_state = 27}, - [2603] = {.lex_state = 27}, - [2604] = {.lex_state = 22}, - [2605] = {.lex_state = 27}, - [2606] = {.lex_state = 27}, - [2607] = {.lex_state = 27}, - [2608] = {.lex_state = 27}, - [2609] = {.lex_state = 27}, - [2610] = {.lex_state = 27}, - [2611] = {.lex_state = 27}, - [2612] = {.lex_state = 27}, - [2613] = {.lex_state = 27}, - [2614] = {.lex_state = 27}, - [2615] = {.lex_state = 27}, - [2616] = {.lex_state = 27}, - [2617] = {.lex_state = 27}, - [2618] = {.lex_state = 27}, - [2619] = {.lex_state = 27}, - [2620] = {.lex_state = 27}, - [2621] = {.lex_state = 27}, - [2622] = {.lex_state = 27}, - [2623] = {.lex_state = 27}, - [2624] = {.lex_state = 27}, - [2625] = {.lex_state = 27}, - [2626] = {.lex_state = 27}, - [2627] = {.lex_state = 27}, - [2628] = {.lex_state = 27}, - [2629] = {.lex_state = 27}, - [2630] = {.lex_state = 27}, - [2631] = {.lex_state = 27}, - [2632] = {.lex_state = 27}, - [2633] = {.lex_state = 27}, - [2634] = {.lex_state = 27}, - [2635] = {.lex_state = 27}, - [2636] = {.lex_state = 27}, - [2637] = {.lex_state = 27}, - [2638] = {.lex_state = 27}, - [2639] = {.lex_state = 27}, - [2640] = {.lex_state = 27}, - [2641] = {.lex_state = 27}, - [2642] = {.lex_state = 27}, - [2643] = {.lex_state = 27}, - [2644] = {.lex_state = 27}, - [2645] = {.lex_state = 27}, - [2646] = {.lex_state = 27}, - [2647] = {.lex_state = 27}, - [2648] = {.lex_state = 27}, - [2649] = {.lex_state = 27}, - [2650] = {.lex_state = 27}, - [2651] = {.lex_state = 27}, - [2652] = {.lex_state = 27}, - [2653] = {.lex_state = 27}, - [2654] = {.lex_state = 27}, - [2655] = {.lex_state = 27}, - [2656] = {.lex_state = 27}, - [2657] = {.lex_state = 27}, - [2658] = {.lex_state = 26}, - [2659] = {.lex_state = 27}, - [2660] = {.lex_state = 27}, - [2661] = {.lex_state = 27}, - [2662] = {.lex_state = 27}, - [2663] = {.lex_state = 27}, - [2664] = {.lex_state = 27}, - [2665] = {.lex_state = 27}, - [2666] = {.lex_state = 27}, - [2667] = {.lex_state = 27}, - [2668] = {.lex_state = 27}, - [2669] = {.lex_state = 27}, - [2670] = {.lex_state = 27}, - [2671] = {.lex_state = 27}, - [2672] = {.lex_state = 27}, - [2673] = {.lex_state = 27}, - [2674] = {.lex_state = 27}, - [2675] = {.lex_state = 27}, + [2417] = {.lex_state = 288}, + [2418] = {.lex_state = 288}, + [2419] = {.lex_state = 288}, + [2420] = {.lex_state = 1}, + [2421] = {.lex_state = 288}, + [2422] = {.lex_state = 288}, + [2423] = {.lex_state = 288}, + [2424] = {.lex_state = 288}, + [2425] = {.lex_state = 288}, + [2426] = {.lex_state = 288}, + [2427] = {.lex_state = 25}, + [2428] = {.lex_state = 25}, + [2429] = {.lex_state = 25}, + [2430] = {.lex_state = 25}, + [2431] = {.lex_state = 25}, + [2432] = {.lex_state = 25}, + [2433] = {.lex_state = 25}, + [2434] = {.lex_state = 25}, + [2435] = {.lex_state = 25}, + [2436] = {.lex_state = 25}, + [2437] = {.lex_state = 25}, + [2438] = {.lex_state = 25}, + [2439] = {.lex_state = 25}, + [2440] = {.lex_state = 25}, + [2441] = {.lex_state = 25}, + [2442] = {.lex_state = 25}, + [2443] = {.lex_state = 25}, + [2444] = {.lex_state = 25}, + [2445] = {.lex_state = 25}, + [2446] = {.lex_state = 25}, + [2447] = {.lex_state = 25}, + [2448] = {.lex_state = 25}, + [2449] = {.lex_state = 25}, + [2450] = {.lex_state = 25}, + [2451] = {.lex_state = 25}, + [2452] = {.lex_state = 25}, + [2453] = {.lex_state = 25}, + [2454] = {.lex_state = 25}, + [2455] = {.lex_state = 25}, + [2456] = {.lex_state = 25}, + [2457] = {.lex_state = 25}, + [2458] = {.lex_state = 25}, + [2459] = {.lex_state = 25}, + [2460] = {.lex_state = 25}, + [2461] = {.lex_state = 25}, + [2462] = {.lex_state = 25}, + [2463] = {.lex_state = 25}, + [2464] = {.lex_state = 25}, + [2465] = {.lex_state = 25}, + [2466] = {.lex_state = 25}, + [2467] = {.lex_state = 25}, + [2468] = {.lex_state = 25}, + [2469] = {.lex_state = 25}, + [2470] = {.lex_state = 25}, + [2471] = {.lex_state = 22}, + [2472] = {.lex_state = 25}, + [2473] = {.lex_state = 25}, + [2474] = {.lex_state = 25}, + [2475] = {.lex_state = 25}, + [2476] = {.lex_state = 25}, + [2477] = {.lex_state = 25}, + [2478] = {.lex_state = 25}, + [2479] = {.lex_state = 25}, + [2480] = {.lex_state = 25}, + [2481] = {.lex_state = 25}, + [2482] = {.lex_state = 25}, + [2483] = {.lex_state = 25}, + [2484] = {.lex_state = 25}, + [2485] = {.lex_state = 25}, + [2486] = {.lex_state = 25}, + [2487] = {.lex_state = 25}, + [2488] = {.lex_state = 25}, + [2489] = {.lex_state = 25}, + [2490] = {.lex_state = 25}, + [2491] = {.lex_state = 25}, + [2492] = {.lex_state = 25}, + [2493] = {.lex_state = 22}, + [2494] = {.lex_state = 25}, + [2495] = {.lex_state = 25}, + [2496] = {.lex_state = 25}, + [2497] = {.lex_state = 22}, + [2498] = {.lex_state = 25}, + [2499] = {.lex_state = 25}, + [2500] = {.lex_state = 22}, + [2501] = {.lex_state = 25}, + [2502] = {.lex_state = 25}, + [2503] = {.lex_state = 25}, + [2504] = {.lex_state = 25}, + [2505] = {.lex_state = 25}, + [2506] = {.lex_state = 25}, + [2507] = {.lex_state = 25}, + [2508] = {.lex_state = 25}, + [2509] = {.lex_state = 25}, + [2510] = {.lex_state = 25}, + [2511] = {.lex_state = 25}, + [2512] = {.lex_state = 25}, + [2513] = {.lex_state = 25}, + [2514] = {.lex_state = 25}, + [2515] = {.lex_state = 25}, + [2516] = {.lex_state = 25}, + [2517] = {.lex_state = 25}, + [2518] = {.lex_state = 25}, + [2519] = {.lex_state = 25}, + [2520] = {.lex_state = 25}, + [2521] = {.lex_state = 25}, + [2522] = {.lex_state = 25}, + [2523] = {.lex_state = 25}, + [2524] = {.lex_state = 25}, + [2525] = {.lex_state = 25}, + [2526] = {.lex_state = 25}, + [2527] = {.lex_state = 25}, + [2528] = {.lex_state = 25}, + [2529] = {.lex_state = 25}, + [2530] = {.lex_state = 25}, + [2531] = {.lex_state = 25}, + [2532] = {.lex_state = 25}, + [2533] = {.lex_state = 25}, + [2534] = {.lex_state = 25}, + [2535] = {.lex_state = 25}, + [2536] = {.lex_state = 25}, + [2537] = {.lex_state = 25}, + [2538] = {.lex_state = 25}, + [2539] = {.lex_state = 25}, + [2540] = {.lex_state = 25}, + [2541] = {.lex_state = 25}, + [2542] = {.lex_state = 25}, + [2543] = {.lex_state = 25}, + [2544] = {.lex_state = 25}, + [2545] = {.lex_state = 25}, + [2546] = {.lex_state = 25}, + [2547] = {.lex_state = 25}, + [2548] = {.lex_state = 25}, + [2549] = {.lex_state = 25}, + [2550] = {.lex_state = 25}, + [2551] = {.lex_state = 25}, + [2552] = {.lex_state = 25}, + [2553] = {.lex_state = 25}, + [2554] = {.lex_state = 25}, + [2555] = {.lex_state = 25}, + [2556] = {.lex_state = 25}, + [2557] = {.lex_state = 25}, + [2558] = {.lex_state = 25}, + [2559] = {.lex_state = 25}, + [2560] = {.lex_state = 25}, + [2561] = {.lex_state = 25}, + [2562] = {.lex_state = 25}, + [2563] = {.lex_state = 25}, + [2564] = {.lex_state = 25}, + [2565] = {.lex_state = 25}, + [2566] = {.lex_state = 25}, + [2567] = {.lex_state = 25}, + [2568] = {.lex_state = 25}, + [2569] = {.lex_state = 25}, + [2570] = {.lex_state = 25}, + [2571] = {.lex_state = 25}, + [2572] = {.lex_state = 22}, + [2573] = {.lex_state = 25}, + [2574] = {.lex_state = 25}, + [2575] = {.lex_state = 25}, + [2576] = {.lex_state = 25}, + [2577] = {.lex_state = 25}, + [2578] = {.lex_state = 25}, + [2579] = {.lex_state = 25}, + [2580] = {.lex_state = 25}, + [2581] = {.lex_state = 25}, + [2582] = {.lex_state = 25}, + [2583] = {.lex_state = 25}, + [2584] = {.lex_state = 25}, + [2585] = {.lex_state = 25}, + [2586] = {.lex_state = 25}, + [2587] = {.lex_state = 22}, + [2588] = {.lex_state = 25}, + [2589] = {.lex_state = 22}, + [2590] = {.lex_state = 25}, + [2591] = {.lex_state = 25}, + [2592] = {.lex_state = 25}, + [2593] = {.lex_state = 22}, + [2594] = {.lex_state = 25}, + [2595] = {.lex_state = 25}, + [2596] = {.lex_state = 25}, + [2597] = {.lex_state = 25}, + [2598] = {.lex_state = 25}, + [2599] = {.lex_state = 25}, + [2600] = {.lex_state = 25}, + [2601] = {.lex_state = 25}, + [2602] = {.lex_state = 25}, + [2603] = {.lex_state = 25}, + [2604] = {.lex_state = 25}, + [2605] = {.lex_state = 25}, + [2606] = {.lex_state = 25}, + [2607] = {.lex_state = 25}, + [2608] = {.lex_state = 25}, + [2609] = {.lex_state = 25}, + [2610] = {.lex_state = 25}, + [2611] = {.lex_state = 25}, + [2612] = {.lex_state = 25}, + [2613] = {.lex_state = 25}, + [2614] = {.lex_state = 25}, + [2615] = {.lex_state = 25}, + [2616] = {.lex_state = 25}, + [2617] = {.lex_state = 25}, + [2618] = {.lex_state = 25}, + [2619] = {.lex_state = 25}, + [2620] = {.lex_state = 25}, + [2621] = {.lex_state = 25}, + [2622] = {.lex_state = 25}, + [2623] = {.lex_state = 25}, + [2624] = {.lex_state = 25}, + [2625] = {.lex_state = 25}, + [2626] = {.lex_state = 25}, + [2627] = {.lex_state = 25}, + [2628] = {.lex_state = 25}, + [2629] = {.lex_state = 25}, + [2630] = {.lex_state = 25}, + [2631] = {.lex_state = 25}, + [2632] = {.lex_state = 25}, + [2633] = {.lex_state = 25}, + [2634] = {.lex_state = 25}, + [2635] = {.lex_state = 25}, + [2636] = {.lex_state = 25}, + [2637] = {.lex_state = 25}, + [2638] = {.lex_state = 25}, + [2639] = {.lex_state = 25}, + [2640] = {.lex_state = 25}, + [2641] = {.lex_state = 25}, + [2642] = {.lex_state = 25}, + [2643] = {.lex_state = 25}, + [2644] = {.lex_state = 25}, + [2645] = {.lex_state = 25}, + [2646] = {.lex_state = 25}, + [2647] = {.lex_state = 25}, + [2648] = {.lex_state = 25}, + [2649] = {.lex_state = 25}, + [2650] = {.lex_state = 25}, + [2651] = {.lex_state = 25}, + [2652] = {.lex_state = 25}, + [2653] = {.lex_state = 25}, + [2654] = {.lex_state = 25}, + [2655] = {.lex_state = 25}, + [2656] = {.lex_state = 25}, + [2657] = {.lex_state = 25}, + [2658] = {.lex_state = 25}, + [2659] = {.lex_state = 25}, + [2660] = {.lex_state = 25}, + [2661] = {.lex_state = 25}, + [2662] = {.lex_state = 25}, + [2663] = {.lex_state = 25}, + [2664] = {.lex_state = 25}, + [2665] = {.lex_state = 25}, + [2666] = {.lex_state = 25}, + [2667] = {.lex_state = 25}, + [2668] = {.lex_state = 25}, + [2669] = {.lex_state = 25}, + [2670] = {.lex_state = 25}, + [2671] = {.lex_state = 25}, + [2672] = {.lex_state = 25}, + [2673] = {.lex_state = 25}, + [2674] = {.lex_state = 25}, + [2675] = {.lex_state = 25}, [2676] = {.lex_state = 22}, - [2677] = {.lex_state = 27}, - [2678] = {.lex_state = 27}, - [2679] = {.lex_state = 27}, - [2680] = {.lex_state = 22}, - [2681] = {.lex_state = 27}, - [2682] = {.lex_state = 27}, - [2683] = {.lex_state = 22}, - [2684] = {.lex_state = 27}, - [2685] = {.lex_state = 27}, - [2686] = {.lex_state = 27}, - [2687] = {.lex_state = 27}, - [2688] = {.lex_state = 27}, - [2689] = {.lex_state = 27}, - [2690] = {.lex_state = 27}, - [2691] = {.lex_state = 27}, - [2692] = {.lex_state = 27}, - [2693] = {.lex_state = 27}, - [2694] = {.lex_state = 27}, - [2695] = {.lex_state = 27}, - [2696] = {.lex_state = 27}, - [2697] = {.lex_state = 27}, - [2698] = {.lex_state = 27}, - [2699] = {.lex_state = 27}, - [2700] = {.lex_state = 27}, - [2701] = {.lex_state = 27}, - [2702] = {.lex_state = 27}, - [2703] = {.lex_state = 27}, - [2704] = {.lex_state = 27}, - [2705] = {.lex_state = 27}, - [2706] = {.lex_state = 27}, - [2707] = {.lex_state = 27}, - [2708] = {.lex_state = 27}, - [2709] = {.lex_state = 27}, - [2710] = {.lex_state = 27}, - [2711] = {.lex_state = 27}, - [2712] = {.lex_state = 27}, - [2713] = {.lex_state = 27}, - [2714] = {.lex_state = 27}, - [2715] = {.lex_state = 27}, - [2716] = {.lex_state = 27}, - [2717] = {.lex_state = 27}, - [2718] = {.lex_state = 27}, - [2719] = {.lex_state = 22}, - [2720] = {.lex_state = 27}, - [2721] = {.lex_state = 27}, - [2722] = {.lex_state = 27}, - [2723] = {.lex_state = 27}, - [2724] = {.lex_state = 27}, - [2725] = {.lex_state = 27}, - [2726] = {.lex_state = 27}, - [2727] = {.lex_state = 27}, - [2728] = {.lex_state = 27}, - [2729] = {.lex_state = 27}, - [2730] = {.lex_state = 27}, - [2731] = {.lex_state = 27}, + [2677] = {.lex_state = 25}, + [2678] = {.lex_state = 25}, + [2679] = {.lex_state = 25}, + [2680] = {.lex_state = 25}, + [2681] = {.lex_state = 25}, + [2682] = {.lex_state = 22}, + [2683] = {.lex_state = 25}, + [2684] = {.lex_state = 22}, + [2685] = {.lex_state = 25}, + [2686] = {.lex_state = 25}, + [2687] = {.lex_state = 25}, + [2688] = {.lex_state = 25}, + [2689] = {.lex_state = 22}, + [2690] = {.lex_state = 25}, + [2691] = {.lex_state = 25}, + [2692] = {.lex_state = 25}, + [2693] = {.lex_state = 25}, + [2694] = {.lex_state = 25}, + [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}, + [2702] = {.lex_state = 25}, + [2703] = {.lex_state = 25}, + [2704] = {.lex_state = 25}, + [2705] = {.lex_state = 25}, + [2706] = {.lex_state = 25}, + [2707] = {.lex_state = 22}, + [2708] = {.lex_state = 25}, + [2709] = {.lex_state = 25}, + [2710] = {.lex_state = 25}, + [2711] = {.lex_state = 25}, + [2712] = {.lex_state = 25}, + [2713] = {.lex_state = 26}, + [2714] = {.lex_state = 25}, + [2715] = {.lex_state = 25}, + [2716] = {.lex_state = 25}, + [2717] = {.lex_state = 25}, + [2718] = {.lex_state = 25}, + [2719] = {.lex_state = 25}, + [2720] = {.lex_state = 25}, + [2721] = {.lex_state = 25}, + [2722] = {.lex_state = 25}, + [2723] = {.lex_state = 25}, + [2724] = {.lex_state = 25}, + [2725] = {.lex_state = 25}, + [2726] = {.lex_state = 25}, + [2727] = {.lex_state = 25}, + [2728] = {.lex_state = 26}, + [2729] = {.lex_state = 25}, + [2730] = {.lex_state = 25}, + [2731] = {.lex_state = 25}, [2732] = {.lex_state = 22}, - [2733] = {.lex_state = 22}, - [2734] = {.lex_state = 22}, - [2735] = {.lex_state = 27}, - [2736] = {.lex_state = 27}, - [2737] = {.lex_state = 27}, - [2738] = {.lex_state = 27}, - [2739] = {.lex_state = 27}, - [2740] = {.lex_state = 27}, - [2741] = {.lex_state = 27}, - [2742] = {.lex_state = 27}, - [2743] = {.lex_state = 22}, - [2744] = {.lex_state = 22}, - [2745] = {.lex_state = 22}, - [2746] = {.lex_state = 22}, - [2747] = {.lex_state = 22}, - [2748] = {.lex_state = 22}, - [2749] = {.lex_state = 22}, - [2750] = {.lex_state = 27}, + [2733] = {.lex_state = 25}, + [2734] = {.lex_state = 25}, + [2735] = {.lex_state = 25}, + [2736] = {.lex_state = 25}, + [2737] = {.lex_state = 25}, + [2738] = {.lex_state = 25}, + [2739] = {.lex_state = 25}, + [2740] = {.lex_state = 25}, + [2741] = {.lex_state = 25}, + [2742] = {.lex_state = 25}, + [2743] = {.lex_state = 25}, + [2744] = {.lex_state = 25}, + [2745] = {.lex_state = 25}, + [2746] = {.lex_state = 25}, + [2747] = {.lex_state = 25}, + [2748] = {.lex_state = 25}, + [2749] = {.lex_state = 25}, + [2750] = {.lex_state = 22}, [2751] = {.lex_state = 22}, - [2752] = {.lex_state = 282}, - [2753] = {.lex_state = 282}, - [2754] = {.lex_state = 282}, - [2755] = {.lex_state = 282}, - [2756] = {.lex_state = 282}, - [2757] = {.lex_state = 282}, - [2758] = {.lex_state = 282}, - [2759] = {.lex_state = 282}, - [2760] = {.lex_state = 282}, - [2761] = {.lex_state = 282}, - [2762] = {.lex_state = 282}, - [2763] = {.lex_state = 282}, - [2764] = {.lex_state = 282}, - [2765] = {.lex_state = 282}, - [2766] = {.lex_state = 282}, - [2767] = {.lex_state = 282}, - [2768] = {.lex_state = 282}, - [2769] = {.lex_state = 282}, - [2770] = {.lex_state = 282}, - [2771] = {.lex_state = 282}, - [2772] = {.lex_state = 282}, - [2773] = {.lex_state = 282}, - [2774] = {.lex_state = 282}, - [2775] = {.lex_state = 282}, - [2776] = {.lex_state = 282}, - [2777] = {.lex_state = 282}, - [2778] = {.lex_state = 282}, - [2779] = {.lex_state = 282}, - [2780] = {.lex_state = 282}, - [2781] = {.lex_state = 282}, - [2782] = {.lex_state = 282}, - [2783] = {.lex_state = 282}, - [2784] = {.lex_state = 282}, - [2785] = {.lex_state = 282}, - [2786] = {.lex_state = 282}, - [2787] = {.lex_state = 282}, - [2788] = {.lex_state = 282}, - [2789] = {.lex_state = 282}, - [2790] = {.lex_state = 282}, - [2791] = {.lex_state = 282}, - [2792] = {.lex_state = 282}, - [2793] = {.lex_state = 282}, - [2794] = {.lex_state = 282}, - [2795] = {.lex_state = 282}, - [2796] = {.lex_state = 282}, - [2797] = {.lex_state = 282}, - [2798] = {.lex_state = 282}, - [2799] = {.lex_state = 282}, - [2800] = {.lex_state = 282}, - [2801] = {.lex_state = 282}, - [2802] = {.lex_state = 282}, - [2803] = {.lex_state = 282}, - [2804] = {.lex_state = 282}, - [2805] = {.lex_state = 282}, - [2806] = {.lex_state = 282}, - [2807] = {.lex_state = 282}, - [2808] = {.lex_state = 282}, - [2809] = {.lex_state = 282}, - [2810] = {.lex_state = 282}, - [2811] = {.lex_state = 282}, - [2812] = {.lex_state = 282}, - [2813] = {.lex_state = 282}, - [2814] = {.lex_state = 282}, - [2815] = {.lex_state = 282}, - [2816] = {.lex_state = 282}, - [2817] = {.lex_state = 282}, - [2818] = {.lex_state = 282}, - [2819] = {.lex_state = 282}, - [2820] = {.lex_state = 282}, - [2821] = {.lex_state = 282}, - [2822] = {.lex_state = 282}, - [2823] = {.lex_state = 282}, - [2824] = {.lex_state = 282}, - [2825] = {.lex_state = 282}, - [2826] = {.lex_state = 282}, - [2827] = {.lex_state = 282}, - [2828] = {.lex_state = 282}, - [2829] = {.lex_state = 282}, - [2830] = {.lex_state = 282}, - [2831] = {.lex_state = 282}, - [2832] = {.lex_state = 282}, - [2833] = {.lex_state = 282}, - [2834] = {.lex_state = 282}, - [2835] = {.lex_state = 282}, - [2836] = {.lex_state = 282}, - [2837] = {.lex_state = 282}, - [2838] = {.lex_state = 282}, - [2839] = {.lex_state = 282}, - [2840] = {.lex_state = 282}, - [2841] = {.lex_state = 282}, - [2842] = {.lex_state = 282}, - [2843] = {.lex_state = 282}, - [2844] = {.lex_state = 282}, - [2845] = {.lex_state = 282}, - [2846] = {.lex_state = 282}, - [2847] = {.lex_state = 282}, - [2848] = {.lex_state = 282}, - [2849] = {.lex_state = 282}, - [2850] = {.lex_state = 282}, - [2851] = {.lex_state = 282}, - [2852] = {.lex_state = 282}, - [2853] = {.lex_state = 282}, - [2854] = {.lex_state = 282}, - [2855] = {.lex_state = 282}, - [2856] = {.lex_state = 282}, - [2857] = {.lex_state = 282}, - [2858] = {.lex_state = 282}, - [2859] = {.lex_state = 282}, - [2860] = {.lex_state = 282}, - [2861] = {.lex_state = 282}, - [2862] = {.lex_state = 282}, - [2863] = {.lex_state = 282}, - [2864] = {.lex_state = 282}, - [2865] = {.lex_state = 282}, - [2866] = {.lex_state = 282}, - [2867] = {.lex_state = 282}, - [2868] = {.lex_state = 282}, - [2869] = {.lex_state = 282}, - [2870] = {.lex_state = 282}, - [2871] = {.lex_state = 282}, - [2872] = {.lex_state = 282}, - [2873] = {.lex_state = 282}, - [2874] = {.lex_state = 282}, - [2875] = {.lex_state = 282}, - [2876] = {.lex_state = 282}, - [2877] = {.lex_state = 282}, - [2878] = {.lex_state = 282}, - [2879] = {.lex_state = 282}, - [2880] = {.lex_state = 282}, - [2881] = {.lex_state = 282}, - [2882] = {.lex_state = 282}, - [2883] = {.lex_state = 282}, - [2884] = {.lex_state = 282}, - [2885] = {.lex_state = 282}, - [2886] = {.lex_state = 282}, - [2887] = {.lex_state = 282}, - [2888] = {.lex_state = 282}, - [2889] = {.lex_state = 282}, - [2890] = {.lex_state = 282}, - [2891] = {.lex_state = 282}, - [2892] = {.lex_state = 282}, - [2893] = {.lex_state = 282}, - [2894] = {.lex_state = 282}, - [2895] = {.lex_state = 282}, - [2896] = {.lex_state = 282}, - [2897] = {.lex_state = 282}, - [2898] = {.lex_state = 282}, - [2899] = {.lex_state = 282}, - [2900] = {.lex_state = 282}, - [2901] = {.lex_state = 282}, - [2902] = {.lex_state = 282}, - [2903] = {.lex_state = 282}, - [2904] = {.lex_state = 282}, - [2905] = {.lex_state = 282}, - [2906] = {.lex_state = 282}, - [2907] = {.lex_state = 282}, - [2908] = {.lex_state = 282}, - [2909] = {.lex_state = 282}, - [2910] = {.lex_state = 282}, - [2911] = {.lex_state = 282}, - [2912] = {.lex_state = 282}, - [2913] = {.lex_state = 282}, - [2914] = {.lex_state = 282}, - [2915] = {.lex_state = 282}, - [2916] = {.lex_state = 282}, - [2917] = {.lex_state = 282}, - [2918] = {.lex_state = 282}, - [2919] = {.lex_state = 282}, - [2920] = {.lex_state = 282}, - [2921] = {.lex_state = 282}, - [2922] = {.lex_state = 282}, - [2923] = {.lex_state = 282}, - [2924] = {.lex_state = 282}, - [2925] = {.lex_state = 282}, - [2926] = {.lex_state = 282}, - [2927] = {.lex_state = 282}, - [2928] = {.lex_state = 282}, - [2929] = {.lex_state = 282}, - [2930] = {.lex_state = 282}, - [2931] = {.lex_state = 282}, - [2932] = {.lex_state = 282}, - [2933] = {.lex_state = 282}, - [2934] = {.lex_state = 282}, - [2935] = {.lex_state = 282}, - [2936] = {.lex_state = 282}, - [2937] = {.lex_state = 282}, - [2938] = {.lex_state = 282}, - [2939] = {.lex_state = 282}, - [2940] = {.lex_state = 282}, - [2941] = {.lex_state = 282}, - [2942] = {.lex_state = 282}, - [2943] = {.lex_state = 282}, - [2944] = {.lex_state = 282}, - [2945] = {.lex_state = 282}, - [2946] = {.lex_state = 282}, - [2947] = {.lex_state = 282}, - [2948] = {.lex_state = 282}, - [2949] = {.lex_state = 282}, - [2950] = {.lex_state = 282}, - [2951] = {.lex_state = 282}, - [2952] = {.lex_state = 282}, - [2953] = {.lex_state = 282}, - [2954] = {.lex_state = 282}, - [2955] = {.lex_state = 282}, - [2956] = {.lex_state = 282}, - [2957] = {.lex_state = 282}, - [2958] = {.lex_state = 282}, - [2959] = {.lex_state = 282}, - [2960] = {.lex_state = 282}, - [2961] = {.lex_state = 282}, - [2962] = {.lex_state = 282}, - [2963] = {.lex_state = 282}, - [2964] = {.lex_state = 282}, - [2965] = {.lex_state = 282}, - [2966] = {.lex_state = 282}, - [2967] = {.lex_state = 282}, - [2968] = {.lex_state = 282}, - [2969] = {.lex_state = 282}, - [2970] = {.lex_state = 282}, - [2971] = {.lex_state = 282}, - [2972] = {.lex_state = 282}, - [2973] = {.lex_state = 282}, - [2974] = {.lex_state = 282}, - [2975] = {.lex_state = 282}, - [2976] = {.lex_state = 282}, - [2977] = {.lex_state = 282}, - [2978] = {.lex_state = 282}, - [2979] = {.lex_state = 282}, - [2980] = {.lex_state = 282}, - [2981] = {.lex_state = 282}, - [2982] = {.lex_state = 282}, - [2983] = {.lex_state = 282}, - [2984] = {.lex_state = 282}, - [2985] = {.lex_state = 282}, - [2986] = {.lex_state = 282}, - [2987] = {.lex_state = 282}, - [2988] = {.lex_state = 282}, - [2989] = {.lex_state = 282}, - [2990] = {.lex_state = 282}, - [2991] = {.lex_state = 282}, - [2992] = {.lex_state = 282}, - [2993] = {.lex_state = 282}, - [2994] = {.lex_state = 282}, - [2995] = {.lex_state = 282}, - [2996] = {.lex_state = 282}, - [2997] = {.lex_state = 282}, - [2998] = {.lex_state = 282}, - [2999] = {.lex_state = 282}, - [3000] = {.lex_state = 282}, - [3001] = {.lex_state = 282}, - [3002] = {.lex_state = 282}, - [3003] = {.lex_state = 282}, - [3004] = {.lex_state = 282}, - [3005] = {.lex_state = 282}, - [3006] = {.lex_state = 282}, - [3007] = {.lex_state = 282}, - [3008] = {.lex_state = 282}, - [3009] = {.lex_state = 282}, - [3010] = {.lex_state = 282}, - [3011] = {.lex_state = 282}, - [3012] = {.lex_state = 282}, - [3013] = {.lex_state = 282}, - [3014] = {.lex_state = 282}, - [3015] = {.lex_state = 282}, - [3016] = {.lex_state = 282}, - [3017] = {.lex_state = 282}, - [3018] = {.lex_state = 282}, - [3019] = {.lex_state = 282}, - [3020] = {.lex_state = 282}, - [3021] = {.lex_state = 282}, - [3022] = {.lex_state = 282}, - [3023] = {.lex_state = 282}, - [3024] = {.lex_state = 282}, - [3025] = {.lex_state = 282}, - [3026] = {.lex_state = 282}, - [3027] = {.lex_state = 282}, - [3028] = {.lex_state = 282}, - [3029] = {.lex_state = 282}, - [3030] = {.lex_state = 282}, - [3031] = {.lex_state = 282}, - [3032] = {.lex_state = 282}, - [3033] = {.lex_state = 282}, - [3034] = {.lex_state = 282}, - [3035] = {.lex_state = 282}, - [3036] = {.lex_state = 282}, - [3037] = {.lex_state = 282}, - [3038] = {.lex_state = 282}, - [3039] = {.lex_state = 282}, - [3040] = {.lex_state = 282}, - [3041] = {.lex_state = 282}, - [3042] = {.lex_state = 282}, - [3043] = {.lex_state = 282}, - [3044] = {.lex_state = 282}, - [3045] = {.lex_state = 282}, - [3046] = {.lex_state = 282}, - [3047] = {.lex_state = 282}, - [3048] = {.lex_state = 282}, - [3049] = {.lex_state = 282}, - [3050] = {.lex_state = 282}, - [3051] = {.lex_state = 282}, - [3052] = {.lex_state = 282}, - [3053] = {.lex_state = 282}, - [3054] = {.lex_state = 282}, - [3055] = {.lex_state = 282}, - [3056] = {.lex_state = 282}, - [3057] = {.lex_state = 282}, - [3058] = {.lex_state = 282}, - [3059] = {.lex_state = 282}, - [3060] = {.lex_state = 282}, - [3061] = {.lex_state = 282}, - [3062] = {.lex_state = 282}, - [3063] = {.lex_state = 282}, - [3064] = {.lex_state = 282}, - [3065] = {.lex_state = 282}, - [3066] = {.lex_state = 282}, - [3067] = {.lex_state = 282}, - [3068] = {.lex_state = 282}, - [3069] = {.lex_state = 282}, - [3070] = {.lex_state = 282}, - [3071] = {.lex_state = 282}, - [3072] = {.lex_state = 282}, - [3073] = {.lex_state = 282}, - [3074] = {.lex_state = 34}, - [3075] = {.lex_state = 282}, - [3076] = {.lex_state = 282}, - [3077] = {.lex_state = 282}, - [3078] = {.lex_state = 282}, - [3079] = {.lex_state = 282}, - [3080] = {.lex_state = 282}, - [3081] = {.lex_state = 282}, - [3082] = {.lex_state = 282}, - [3083] = {.lex_state = 282}, - [3084] = {.lex_state = 282}, - [3085] = {.lex_state = 282}, - [3086] = {.lex_state = 282}, - [3087] = {.lex_state = 282}, - [3088] = {.lex_state = 282}, - [3089] = {.lex_state = 282}, - [3090] = {.lex_state = 282}, - [3091] = {.lex_state = 282}, - [3092] = {.lex_state = 282}, - [3093] = {.lex_state = 282}, - [3094] = {.lex_state = 282}, - [3095] = {.lex_state = 282}, - [3096] = {.lex_state = 282}, - [3097] = {.lex_state = 282}, - [3098] = {.lex_state = 282}, - [3099] = {.lex_state = 34}, - [3100] = {.lex_state = 282}, - [3101] = {.lex_state = 282}, - [3102] = {.lex_state = 34}, - [3103] = {.lex_state = 282}, - [3104] = {.lex_state = 282}, - [3105] = {.lex_state = 282}, - [3106] = {.lex_state = 282}, - [3107] = {.lex_state = 282}, - [3108] = {.lex_state = 282}, - [3109] = {.lex_state = 282}, - [3110] = {.lex_state = 282}, - [3111] = {.lex_state = 282}, - [3112] = {.lex_state = 282}, - [3113] = {.lex_state = 282}, - [3114] = {.lex_state = 282}, - [3115] = {.lex_state = 282}, - [3116] = {.lex_state = 282}, - [3117] = {.lex_state = 282}, - [3118] = {.lex_state = 282}, - [3119] = {.lex_state = 34}, - [3120] = {.lex_state = 282}, - [3121] = {.lex_state = 282}, - [3122] = {.lex_state = 282}, - [3123] = {.lex_state = 282}, - [3124] = {.lex_state = 282}, - [3125] = {.lex_state = 282}, - [3126] = {.lex_state = 282}, - [3127] = {.lex_state = 282}, - [3128] = {.lex_state = 282}, - [3129] = {.lex_state = 282}, - [3130] = {.lex_state = 282}, - [3131] = {.lex_state = 282}, - [3132] = {.lex_state = 34}, - [3133] = {.lex_state = 282}, - [3134] = {.lex_state = 282}, - [3135] = {.lex_state = 282}, - [3136] = {.lex_state = 282}, - [3137] = {.lex_state = 282}, - [3138] = {.lex_state = 282}, - [3139] = {.lex_state = 282}, - [3140] = {.lex_state = 282}, - [3141] = {.lex_state = 282}, - [3142] = {.lex_state = 282}, - [3143] = {.lex_state = 282}, - [3144] = {.lex_state = 282}, - [3145] = {.lex_state = 282}, - [3146] = {.lex_state = 282}, - [3147] = {.lex_state = 282}, - [3148] = {.lex_state = 282}, - [3149] = {.lex_state = 282}, - [3150] = {.lex_state = 282}, - [3151] = {.lex_state = 282}, - [3152] = {.lex_state = 282}, - [3153] = {.lex_state = 282}, - [3154] = {.lex_state = 34}, - [3155] = {.lex_state = 282}, - [3156] = {.lex_state = 282}, - [3157] = {.lex_state = 282}, - [3158] = {.lex_state = 282}, - [3159] = {.lex_state = 34}, - [3160] = {.lex_state = 282}, - [3161] = {.lex_state = 282}, - [3162] = {.lex_state = 282}, - [3163] = {.lex_state = 282}, - [3164] = {.lex_state = 282}, - [3165] = {.lex_state = 282}, - [3166] = {.lex_state = 282}, - [3167] = {.lex_state = 282}, - [3168] = {.lex_state = 282}, - [3169] = {.lex_state = 282}, - [3170] = {.lex_state = 282}, - [3171] = {.lex_state = 282}, - [3172] = {.lex_state = 282}, - [3173] = {.lex_state = 282}, - [3174] = {.lex_state = 282}, - [3175] = {.lex_state = 282}, - [3176] = {.lex_state = 282}, - [3177] = {.lex_state = 282}, - [3178] = {.lex_state = 282}, - [3179] = {.lex_state = 282}, - [3180] = {.lex_state = 282}, - [3181] = {.lex_state = 282}, - [3182] = {.lex_state = 282}, - [3183] = {.lex_state = 282}, - [3184] = {.lex_state = 34}, - [3185] = {.lex_state = 282}, - [3186] = {.lex_state = 282}, - [3187] = {.lex_state = 282}, - [3188] = {.lex_state = 282}, - [3189] = {.lex_state = 282}, - [3190] = {.lex_state = 282}, - [3191] = {.lex_state = 282}, - [3192] = {.lex_state = 282}, - [3193] = {.lex_state = 34}, - [3194] = {.lex_state = 282}, - [3195] = {.lex_state = 282}, - [3196] = {.lex_state = 282}, - [3197] = {.lex_state = 282}, - [3198] = {.lex_state = 282}, - [3199] = {.lex_state = 282}, - [3200] = {.lex_state = 282}, - [3201] = {.lex_state = 282}, - [3202] = {.lex_state = 282}, - [3203] = {.lex_state = 282}, - [3204] = {.lex_state = 282}, - [3205] = {.lex_state = 282}, - [3206] = {.lex_state = 282}, - [3207] = {.lex_state = 282}, - [3208] = {.lex_state = 282}, - [3209] = {.lex_state = 34}, - [3210] = {.lex_state = 282}, - [3211] = {.lex_state = 282}, - [3212] = {.lex_state = 282}, - [3213] = {.lex_state = 282}, - [3214] = {.lex_state = 282}, - [3215] = {.lex_state = 282}, - [3216] = {.lex_state = 20}, - [3217] = {.lex_state = 282}, - [3218] = {.lex_state = 282}, - [3219] = {.lex_state = 282}, - [3220] = {.lex_state = 282}, - [3221] = {.lex_state = 282}, - [3222] = {.lex_state = 20}, - [3223] = {.lex_state = 282}, - [3224] = {.lex_state = 282}, - [3225] = {.lex_state = 282}, - [3226] = {.lex_state = 20}, - [3227] = {.lex_state = 282}, - [3228] = {.lex_state = 282}, - [3229] = {.lex_state = 282}, - [3230] = {.lex_state = 282}, - [3231] = {.lex_state = 20}, - [3232] = {.lex_state = 20}, + [2752] = {.lex_state = 25}, + [2753] = {.lex_state = 288}, + [2754] = {.lex_state = 288}, + [2755] = {.lex_state = 288}, + [2756] = {.lex_state = 288}, + [2757] = {.lex_state = 288}, + [2758] = {.lex_state = 288}, + [2759] = {.lex_state = 288}, + [2760] = {.lex_state = 288}, + [2761] = {.lex_state = 288}, + [2762] = {.lex_state = 288}, + [2763] = {.lex_state = 288}, + [2764] = {.lex_state = 288}, + [2765] = {.lex_state = 288}, + [2766] = {.lex_state = 288}, + [2767] = {.lex_state = 288}, + [2768] = {.lex_state = 288}, + [2769] = {.lex_state = 288}, + [2770] = {.lex_state = 288}, + [2771] = {.lex_state = 288}, + [2772] = {.lex_state = 288}, + [2773] = {.lex_state = 288}, + [2774] = {.lex_state = 288}, + [2775] = {.lex_state = 288}, + [2776] = {.lex_state = 288}, + [2777] = {.lex_state = 288}, + [2778] = {.lex_state = 288}, + [2779] = {.lex_state = 288}, + [2780] = {.lex_state = 288}, + [2781] = {.lex_state = 288}, + [2782] = {.lex_state = 288}, + [2783] = {.lex_state = 288}, + [2784] = {.lex_state = 288}, + [2785] = {.lex_state = 288}, + [2786] = {.lex_state = 288}, + [2787] = {.lex_state = 288}, + [2788] = {.lex_state = 288}, + [2789] = {.lex_state = 288}, + [2790] = {.lex_state = 288}, + [2791] = {.lex_state = 288}, + [2792] = {.lex_state = 288}, + [2793] = {.lex_state = 288}, + [2794] = {.lex_state = 288}, + [2795] = {.lex_state = 288}, + [2796] = {.lex_state = 288}, + [2797] = {.lex_state = 288}, + [2798] = {.lex_state = 288}, + [2799] = {.lex_state = 288}, + [2800] = {.lex_state = 288}, + [2801] = {.lex_state = 288}, + [2802] = {.lex_state = 288}, + [2803] = {.lex_state = 288}, + [2804] = {.lex_state = 288}, + [2805] = {.lex_state = 288}, + [2806] = {.lex_state = 288}, + [2807] = {.lex_state = 288}, + [2808] = {.lex_state = 288}, + [2809] = {.lex_state = 288}, + [2810] = {.lex_state = 288}, + [2811] = {.lex_state = 288}, + [2812] = {.lex_state = 288}, + [2813] = {.lex_state = 288}, + [2814] = {.lex_state = 288}, + [2815] = {.lex_state = 288}, + [2816] = {.lex_state = 288}, + [2817] = {.lex_state = 288}, + [2818] = {.lex_state = 288}, + [2819] = {.lex_state = 288}, + [2820] = {.lex_state = 288}, + [2821] = {.lex_state = 288}, + [2822] = {.lex_state = 288}, + [2823] = {.lex_state = 288}, + [2824] = {.lex_state = 288}, + [2825] = {.lex_state = 288}, + [2826] = {.lex_state = 288}, + [2827] = {.lex_state = 288}, + [2828] = {.lex_state = 288}, + [2829] = {.lex_state = 288}, + [2830] = {.lex_state = 288}, + [2831] = {.lex_state = 288}, + [2832] = {.lex_state = 288}, + [2833] = {.lex_state = 288}, + [2834] = {.lex_state = 288}, + [2835] = {.lex_state = 288}, + [2836] = {.lex_state = 288}, + [2837] = {.lex_state = 288}, + [2838] = {.lex_state = 288}, + [2839] = {.lex_state = 288}, + [2840] = {.lex_state = 288}, + [2841] = {.lex_state = 288}, + [2842] = {.lex_state = 288}, + [2843] = {.lex_state = 288}, + [2844] = {.lex_state = 288}, + [2845] = {.lex_state = 288}, + [2846] = {.lex_state = 288}, + [2847] = {.lex_state = 288}, + [2848] = {.lex_state = 288}, + [2849] = {.lex_state = 288}, + [2850] = {.lex_state = 288}, + [2851] = {.lex_state = 288}, + [2852] = {.lex_state = 288}, + [2853] = {.lex_state = 288}, + [2854] = {.lex_state = 288}, + [2855] = {.lex_state = 288}, + [2856] = {.lex_state = 288}, + [2857] = {.lex_state = 288}, + [2858] = {.lex_state = 288}, + [2859] = {.lex_state = 288}, + [2860] = {.lex_state = 288}, + [2861] = {.lex_state = 288}, + [2862] = {.lex_state = 288}, + [2863] = {.lex_state = 288}, + [2864] = {.lex_state = 288}, + [2865] = {.lex_state = 288}, + [2866] = {.lex_state = 288}, + [2867] = {.lex_state = 288}, + [2868] = {.lex_state = 288}, + [2869] = {.lex_state = 288}, + [2870] = {.lex_state = 288}, + [2871] = {.lex_state = 288}, + [2872] = {.lex_state = 288}, + [2873] = {.lex_state = 288}, + [2874] = {.lex_state = 288}, + [2875] = {.lex_state = 288}, + [2876] = {.lex_state = 288}, + [2877] = {.lex_state = 288}, + [2878] = {.lex_state = 288}, + [2879] = {.lex_state = 288}, + [2880] = {.lex_state = 288}, + [2881] = {.lex_state = 288}, + [2882] = {.lex_state = 288}, + [2883] = {.lex_state = 288}, + [2884] = {.lex_state = 288}, + [2885] = {.lex_state = 288}, + [2886] = {.lex_state = 288}, + [2887] = {.lex_state = 288}, + [2888] = {.lex_state = 288}, + [2889] = {.lex_state = 288}, + [2890] = {.lex_state = 288}, + [2891] = {.lex_state = 288}, + [2892] = {.lex_state = 288}, + [2893] = {.lex_state = 288}, + [2894] = {.lex_state = 288}, + [2895] = {.lex_state = 288}, + [2896] = {.lex_state = 288}, + [2897] = {.lex_state = 288}, + [2898] = {.lex_state = 288}, + [2899] = {.lex_state = 288}, + [2900] = {.lex_state = 288}, + [2901] = {.lex_state = 288}, + [2902] = {.lex_state = 288}, + [2903] = {.lex_state = 288}, + [2904] = {.lex_state = 288}, + [2905] = {.lex_state = 288}, + [2906] = {.lex_state = 288}, + [2907] = {.lex_state = 288}, + [2908] = {.lex_state = 288}, + [2909] = {.lex_state = 288}, + [2910] = {.lex_state = 288}, + [2911] = {.lex_state = 288}, + [2912] = {.lex_state = 288}, + [2913] = {.lex_state = 288}, + [2914] = {.lex_state = 288}, + [2915] = {.lex_state = 288}, + [2916] = {.lex_state = 288}, + [2917] = {.lex_state = 288}, + [2918] = {.lex_state = 288}, + [2919] = {.lex_state = 288}, + [2920] = {.lex_state = 288}, + [2921] = {.lex_state = 288}, + [2922] = {.lex_state = 288}, + [2923] = {.lex_state = 288}, + [2924] = {.lex_state = 288}, + [2925] = {.lex_state = 288}, + [2926] = {.lex_state = 288}, + [2927] = {.lex_state = 288}, + [2928] = {.lex_state = 288}, + [2929] = {.lex_state = 288}, + [2930] = {.lex_state = 288}, + [2931] = {.lex_state = 288}, + [2932] = {.lex_state = 288}, + [2933] = {.lex_state = 288}, + [2934] = {.lex_state = 288}, + [2935] = {.lex_state = 288}, + [2936] = {.lex_state = 288}, + [2937] = {.lex_state = 288}, + [2938] = {.lex_state = 288}, + [2939] = {.lex_state = 288}, + [2940] = {.lex_state = 288}, + [2941] = {.lex_state = 288}, + [2942] = {.lex_state = 288}, + [2943] = {.lex_state = 288}, + [2944] = {.lex_state = 288}, + [2945] = {.lex_state = 288}, + [2946] = {.lex_state = 288}, + [2947] = {.lex_state = 288}, + [2948] = {.lex_state = 288}, + [2949] = {.lex_state = 288}, + [2950] = {.lex_state = 288}, + [2951] = {.lex_state = 288}, + [2952] = {.lex_state = 288}, + [2953] = {.lex_state = 288}, + [2954] = {.lex_state = 288}, + [2955] = {.lex_state = 288}, + [2956] = {.lex_state = 288}, + [2957] = {.lex_state = 288}, + [2958] = {.lex_state = 288}, + [2959] = {.lex_state = 288}, + [2960] = {.lex_state = 288}, + [2961] = {.lex_state = 288}, + [2962] = {.lex_state = 288}, + [2963] = {.lex_state = 288}, + [2964] = {.lex_state = 288}, + [2965] = {.lex_state = 288}, + [2966] = {.lex_state = 288}, + [2967] = {.lex_state = 288}, + [2968] = {.lex_state = 288}, + [2969] = {.lex_state = 288}, + [2970] = {.lex_state = 288}, + [2971] = {.lex_state = 288}, + [2972] = {.lex_state = 288}, + [2973] = {.lex_state = 288}, + [2974] = {.lex_state = 288}, + [2975] = {.lex_state = 288}, + [2976] = {.lex_state = 288}, + [2977] = {.lex_state = 288}, + [2978] = {.lex_state = 288}, + [2979] = {.lex_state = 288}, + [2980] = {.lex_state = 288}, + [2981] = {.lex_state = 288}, + [2982] = {.lex_state = 288}, + [2983] = {.lex_state = 288}, + [2984] = {.lex_state = 288}, + [2985] = {.lex_state = 288}, + [2986] = {.lex_state = 288}, + [2987] = {.lex_state = 288}, + [2988] = {.lex_state = 288}, + [2989] = {.lex_state = 288}, + [2990] = {.lex_state = 288}, + [2991] = {.lex_state = 288}, + [2992] = {.lex_state = 288}, + [2993] = {.lex_state = 288}, + [2994] = {.lex_state = 288}, + [2995] = {.lex_state = 288}, + [2996] = {.lex_state = 288}, + [2997] = {.lex_state = 288}, + [2998] = {.lex_state = 288}, + [2999] = {.lex_state = 288}, + [3000] = {.lex_state = 288}, + [3001] = {.lex_state = 288}, + [3002] = {.lex_state = 288}, + [3003] = {.lex_state = 288}, + [3004] = {.lex_state = 288}, + [3005] = {.lex_state = 288}, + [3006] = {.lex_state = 288}, + [3007] = {.lex_state = 288}, + [3008] = {.lex_state = 288}, + [3009] = {.lex_state = 288}, + [3010] = {.lex_state = 288}, + [3011] = {.lex_state = 288}, + [3012] = {.lex_state = 288}, + [3013] = {.lex_state = 288}, + [3014] = {.lex_state = 288}, + [3015] = {.lex_state = 288}, + [3016] = {.lex_state = 288}, + [3017] = {.lex_state = 288}, + [3018] = {.lex_state = 288}, + [3019] = {.lex_state = 288}, + [3020] = {.lex_state = 288}, + [3021] = {.lex_state = 288}, + [3022] = {.lex_state = 288}, + [3023] = {.lex_state = 288}, + [3024] = {.lex_state = 288}, + [3025] = {.lex_state = 288}, + [3026] = {.lex_state = 288}, + [3027] = {.lex_state = 288}, + [3028] = {.lex_state = 288}, + [3029] = {.lex_state = 288}, + [3030] = {.lex_state = 288}, + [3031] = {.lex_state = 288}, + [3032] = {.lex_state = 288}, + [3033] = {.lex_state = 288}, + [3034] = {.lex_state = 288}, + [3035] = {.lex_state = 288}, + [3036] = {.lex_state = 288}, + [3037] = {.lex_state = 288}, + [3038] = {.lex_state = 288}, + [3039] = {.lex_state = 288}, + [3040] = {.lex_state = 288}, + [3041] = {.lex_state = 288}, + [3042] = {.lex_state = 288}, + [3043] = {.lex_state = 288}, + [3044] = {.lex_state = 288}, + [3045] = {.lex_state = 288}, + [3046] = {.lex_state = 288}, + [3047] = {.lex_state = 288}, + [3048] = {.lex_state = 288}, + [3049] = {.lex_state = 288}, + [3050] = {.lex_state = 288}, + [3051] = {.lex_state = 288}, + [3052] = {.lex_state = 34}, + [3053] = {.lex_state = 288}, + [3054] = {.lex_state = 288}, + [3055] = {.lex_state = 288}, + [3056] = {.lex_state = 288}, + [3057] = {.lex_state = 288}, + [3058] = {.lex_state = 288}, + [3059] = {.lex_state = 288}, + [3060] = {.lex_state = 288}, + [3061] = {.lex_state = 288}, + [3062] = {.lex_state = 288}, + [3063] = {.lex_state = 288}, + [3064] = {.lex_state = 34}, + [3065] = {.lex_state = 288}, + [3066] = {.lex_state = 288}, + [3067] = {.lex_state = 288}, + [3068] = {.lex_state = 288}, + [3069] = {.lex_state = 288}, + [3070] = {.lex_state = 288}, + [3071] = {.lex_state = 288}, + [3072] = {.lex_state = 288}, + [3073] = {.lex_state = 288}, + [3074] = {.lex_state = 288}, + [3075] = {.lex_state = 288}, + [3076] = {.lex_state = 288}, + [3077] = {.lex_state = 288}, + [3078] = {.lex_state = 288}, + [3079] = {.lex_state = 288}, + [3080] = {.lex_state = 288}, + [3081] = {.lex_state = 34}, + [3082] = {.lex_state = 288}, + [3083] = {.lex_state = 288}, + [3084] = {.lex_state = 288}, + [3085] = {.lex_state = 288}, + [3086] = {.lex_state = 288}, + [3087] = {.lex_state = 288}, + [3088] = {.lex_state = 288}, + [3089] = {.lex_state = 288}, + [3090] = {.lex_state = 288}, + [3091] = {.lex_state = 288}, + [3092] = {.lex_state = 288}, + [3093] = {.lex_state = 288}, + [3094] = {.lex_state = 288}, + [3095] = {.lex_state = 288}, + [3096] = {.lex_state = 288}, + [3097] = {.lex_state = 288}, + [3098] = {.lex_state = 288}, + [3099] = {.lex_state = 288}, + [3100] = {.lex_state = 288}, + [3101] = {.lex_state = 288}, + [3102] = {.lex_state = 288}, + [3103] = {.lex_state = 288}, + [3104] = {.lex_state = 288}, + [3105] = {.lex_state = 288}, + [3106] = {.lex_state = 288}, + [3107] = {.lex_state = 34}, + [3108] = {.lex_state = 288}, + [3109] = {.lex_state = 288}, + [3110] = {.lex_state = 288}, + [3111] = {.lex_state = 288}, + [3112] = {.lex_state = 288}, + [3113] = {.lex_state = 288}, + [3114] = {.lex_state = 288}, + [3115] = {.lex_state = 34}, + [3116] = {.lex_state = 288}, + [3117] = {.lex_state = 288}, + [3118] = {.lex_state = 288}, + [3119] = {.lex_state = 288}, + [3120] = {.lex_state = 288}, + [3121] = {.lex_state = 288}, + [3122] = {.lex_state = 288}, + [3123] = {.lex_state = 288}, + [3124] = {.lex_state = 288}, + [3125] = {.lex_state = 288}, + [3126] = {.lex_state = 288}, + [3127] = {.lex_state = 288}, + [3128] = {.lex_state = 288}, + [3129] = {.lex_state = 288}, + [3130] = {.lex_state = 288}, + [3131] = {.lex_state = 288}, + [3132] = {.lex_state = 288}, + [3133] = {.lex_state = 288}, + [3134] = {.lex_state = 34}, + [3135] = {.lex_state = 288}, + [3136] = {.lex_state = 288}, + [3137] = {.lex_state = 288}, + [3138] = {.lex_state = 288}, + [3139] = {.lex_state = 288}, + [3140] = {.lex_state = 288}, + [3141] = {.lex_state = 288}, + [3142] = {.lex_state = 288}, + [3143] = {.lex_state = 288}, + [3144] = {.lex_state = 288}, + [3145] = {.lex_state = 288}, + [3146] = {.lex_state = 288}, + [3147] = {.lex_state = 288}, + [3148] = {.lex_state = 288}, + [3149] = {.lex_state = 288}, + [3150] = {.lex_state = 288}, + [3151] = {.lex_state = 288}, + [3152] = {.lex_state = 288}, + [3153] = {.lex_state = 288}, + [3154] = {.lex_state = 288}, + [3155] = {.lex_state = 288}, + [3156] = {.lex_state = 288}, + [3157] = {.lex_state = 288}, + [3158] = {.lex_state = 288}, + [3159] = {.lex_state = 288}, + [3160] = {.lex_state = 288}, + [3161] = {.lex_state = 34}, + [3162] = {.lex_state = 288}, + [3163] = {.lex_state = 288}, + [3164] = {.lex_state = 288}, + [3165] = {.lex_state = 288}, + [3166] = {.lex_state = 288}, + [3167] = {.lex_state = 288}, + [3168] = {.lex_state = 288}, + [3169] = {.lex_state = 34}, + [3170] = {.lex_state = 288}, + [3171] = {.lex_state = 288}, + [3172] = {.lex_state = 288}, + [3173] = {.lex_state = 288}, + [3174] = {.lex_state = 288}, + [3175] = {.lex_state = 288}, + [3176] = {.lex_state = 288}, + [3177] = {.lex_state = 288}, + [3178] = {.lex_state = 288}, + [3179] = {.lex_state = 288}, + [3180] = {.lex_state = 288}, + [3181] = {.lex_state = 288}, + [3182] = {.lex_state = 288}, + [3183] = {.lex_state = 288}, + [3184] = {.lex_state = 288}, + [3185] = {.lex_state = 288}, + [3186] = {.lex_state = 34}, + [3187] = {.lex_state = 288}, + [3188] = {.lex_state = 288}, + [3189] = {.lex_state = 288}, + [3190] = {.lex_state = 288}, + [3191] = {.lex_state = 288}, + [3192] = {.lex_state = 288}, + [3193] = {.lex_state = 288}, + [3194] = {.lex_state = 288}, + [3195] = {.lex_state = 288}, + [3196] = {.lex_state = 288}, + [3197] = {.lex_state = 288}, + [3198] = {.lex_state = 288}, + [3199] = {.lex_state = 288}, + [3200] = {.lex_state = 288}, + [3201] = {.lex_state = 288}, + [3202] = {.lex_state = 288}, + [3203] = {.lex_state = 288}, + [3204] = {.lex_state = 288}, + [3205] = {.lex_state = 288}, + [3206] = {.lex_state = 288}, + [3207] = {.lex_state = 288}, + [3208] = {.lex_state = 288}, + [3209] = {.lex_state = 288}, + [3210] = {.lex_state = 288}, + [3211] = {.lex_state = 34}, + [3212] = {.lex_state = 288}, + [3213] = {.lex_state = 288}, + [3214] = {.lex_state = 288}, + [3215] = {.lex_state = 288}, + [3216] = {.lex_state = 288}, + [3217] = {.lex_state = 20}, + [3218] = {.lex_state = 288}, + [3219] = {.lex_state = 288}, + [3220] = {.lex_state = 20}, + [3221] = {.lex_state = 288}, + [3222] = {.lex_state = 288}, + [3223] = {.lex_state = 20}, + [3224] = {.lex_state = 288}, + [3225] = {.lex_state = 288}, + [3226] = {.lex_state = 288}, + [3227] = {.lex_state = 288}, + [3228] = {.lex_state = 288}, + [3229] = {.lex_state = 288}, + [3230] = {.lex_state = 288}, + [3231] = {.lex_state = 288}, + [3232] = {.lex_state = 288}, [3233] = {.lex_state = 20}, - [3234] = {.lex_state = 282}, - [3235] = {.lex_state = 282}, - [3236] = {.lex_state = 282}, - [3237] = {.lex_state = 282}, - [3238] = {.lex_state = 282}, - [3239] = {.lex_state = 282}, - [3240] = {.lex_state = 282}, - [3241] = {.lex_state = 20}, - [3242] = {.lex_state = 282}, - [3243] = {.lex_state = 282}, - [3244] = {.lex_state = 282}, - [3245] = {.lex_state = 20}, - [3246] = {.lex_state = 282}, - [3247] = {.lex_state = 282}, - [3248] = {.lex_state = 282}, - [3249] = {.lex_state = 282}, - [3250] = {.lex_state = 282}, - [3251] = {.lex_state = 282}, - [3252] = {.lex_state = 282}, - [3253] = {.lex_state = 282}, - [3254] = {.lex_state = 282}, - [3255] = {.lex_state = 20}, - [3256] = {.lex_state = 282}, - [3257] = {.lex_state = 282}, - [3258] = {.lex_state = 282}, - [3259] = {.lex_state = 282}, - [3260] = {.lex_state = 282}, - [3261] = {.lex_state = 282}, - [3262] = {.lex_state = 20}, - [3263] = {.lex_state = 282}, - [3264] = {.lex_state = 282}, - [3265] = {.lex_state = 20}, - [3266] = {.lex_state = 282}, - [3267] = {.lex_state = 282}, - [3268] = {.lex_state = 20}, - [3269] = {.lex_state = 282}, + [3234] = {.lex_state = 288}, + [3235] = {.lex_state = 288}, + [3236] = {.lex_state = 20}, + [3237] = {.lex_state = 288}, + [3238] = {.lex_state = 288}, + [3239] = {.lex_state = 288}, + [3240] = {.lex_state = 288}, + [3241] = {.lex_state = 288}, + [3242] = {.lex_state = 288}, + [3243] = {.lex_state = 288}, + [3244] = {.lex_state = 288}, + [3245] = {.lex_state = 288}, + [3246] = {.lex_state = 288}, + [3247] = {.lex_state = 20}, + [3248] = {.lex_state = 20}, + [3249] = {.lex_state = 20}, + [3250] = {.lex_state = 288}, + [3251] = {.lex_state = 288}, + [3252] = {.lex_state = 288}, + [3253] = {.lex_state = 20}, + [3254] = {.lex_state = 288}, + [3255] = {.lex_state = 288}, + [3256] = {.lex_state = 20}, + [3257] = {.lex_state = 288}, + [3258] = {.lex_state = 288}, + [3259] = {.lex_state = 288}, + [3260] = {.lex_state = 288}, + [3261] = {.lex_state = 288}, + [3262] = {.lex_state = 288}, + [3263] = {.lex_state = 288}, + [3264] = {.lex_state = 288}, + [3265] = {.lex_state = 288}, + [3266] = {.lex_state = 288}, + [3267] = {.lex_state = 288}, + [3268] = {.lex_state = 288}, + [3269] = {.lex_state = 288}, [3270] = {.lex_state = 20}, - [3271] = {.lex_state = 282}, - [3272] = {.lex_state = 282}, - [3273] = {.lex_state = 282}, - [3274] = {.lex_state = 282}, - [3275] = {.lex_state = 282}, - [3276] = {.lex_state = 282}, - [3277] = {.lex_state = 282}, - [3278] = {.lex_state = 282}, - [3279] = {.lex_state = 282}, - [3280] = {.lex_state = 282}, - [3281] = {.lex_state = 20}, - [3282] = {.lex_state = 282}, - [3283] = {.lex_state = 282}, - [3284] = {.lex_state = 282}, - [3285] = {.lex_state = 282}, - [3286] = {.lex_state = 282}, - [3287] = {.lex_state = 20}, - [3288] = {.lex_state = 282}, - [3289] = {.lex_state = 282}, - [3290] = {.lex_state = 282}, + [3271] = {.lex_state = 288}, + [3272] = {.lex_state = 288}, + [3273] = {.lex_state = 288}, + [3274] = {.lex_state = 288}, + [3275] = {.lex_state = 288}, + [3276] = {.lex_state = 20}, + [3277] = {.lex_state = 20}, + [3278] = {.lex_state = 288}, + [3279] = {.lex_state = 288}, + [3280] = {.lex_state = 20}, + [3281] = {.lex_state = 288}, + [3282] = {.lex_state = 288}, + [3283] = {.lex_state = 288}, + [3284] = {.lex_state = 288}, + [3285] = {.lex_state = 288}, + [3286] = {.lex_state = 288}, + [3287] = {.lex_state = 288}, + [3288] = {.lex_state = 288}, + [3289] = {.lex_state = 288}, + [3290] = {.lex_state = 288}, [3291] = {.lex_state = 20}, - [3292] = {.lex_state = 282}, - [3293] = {.lex_state = 282}, - [3294] = {.lex_state = 282}, - [3295] = {.lex_state = 282}, - [3296] = {.lex_state = 282}, + [3292] = {.lex_state = 1}, + [3293] = {.lex_state = 20}, + [3294] = {.lex_state = 20}, + [3295] = {.lex_state = 288}, + [3296] = {.lex_state = 288}, [3297] = {.lex_state = 20}, - [3298] = {.lex_state = 282}, - [3299] = {.lex_state = 282}, - [3300] = {.lex_state = 282}, - [3301] = {.lex_state = 282}, - [3302] = {.lex_state = 282}, - [3303] = {.lex_state = 282}, - [3304] = {.lex_state = 20}, - [3305] = {.lex_state = 1}, - [3306] = {.lex_state = 282}, - [3307] = {.lex_state = 282}, - [3308] = {.lex_state = 282}, - [3309] = {.lex_state = 282}, - [3310] = {.lex_state = 282}, - [3311] = {.lex_state = 282}, - [3312] = {.lex_state = 282}, - [3313] = {.lex_state = 20}, - [3314] = {.lex_state = 20}, - [3315] = {.lex_state = 282}, - [3316] = {.lex_state = 282}, - [3317] = {.lex_state = 282}, - [3318] = {.lex_state = 282}, - [3319] = {.lex_state = 282}, - [3320] = {.lex_state = 282}, - [3321] = {.lex_state = 20}, - [3322] = {.lex_state = 282}, - [3323] = {.lex_state = 282}, - [3324] = {.lex_state = 282}, - [3325] = {.lex_state = 282}, - [3326] = {.lex_state = 25}, - [3327] = {.lex_state = 25}, - [3328] = {.lex_state = 25}, - [3329] = {.lex_state = 33}, - [3330] = {.lex_state = 25}, - [3331] = {.lex_state = 25}, + [3298] = {.lex_state = 288}, + [3299] = {.lex_state = 288}, + [3300] = {.lex_state = 288}, + [3301] = {.lex_state = 288}, + [3302] = {.lex_state = 288}, + [3303] = {.lex_state = 288}, + [3304] = {.lex_state = 288}, + [3305] = {.lex_state = 288}, + [3306] = {.lex_state = 288}, + [3307] = {.lex_state = 288}, + [3308] = {.lex_state = 288}, + [3309] = {.lex_state = 288}, + [3310] = {.lex_state = 288}, + [3311] = {.lex_state = 288}, + [3312] = {.lex_state = 20}, + [3313] = {.lex_state = 288}, + [3314] = {.lex_state = 288}, + [3315] = {.lex_state = 288}, + [3316] = {.lex_state = 288}, + [3317] = {.lex_state = 288}, + [3318] = {.lex_state = 288}, + [3319] = {.lex_state = 288}, + [3320] = {.lex_state = 288}, + [3321] = {.lex_state = 288}, + [3322] = {.lex_state = 288}, + [3323] = {.lex_state = 20}, + [3324] = {.lex_state = 288}, + [3325] = {.lex_state = 288}, + [3326] = {.lex_state = 20}, + [3327] = {.lex_state = 33}, + [3328] = {.lex_state = 35}, + [3329] = {.lex_state = 31}, + [3330] = {.lex_state = 35}, + [3331] = {.lex_state = 35}, [3332] = {.lex_state = 31}, - [3333] = {.lex_state = 25}, - [3334] = {.lex_state = 25}, - [3335] = {.lex_state = 25}, - [3336] = {.lex_state = 31}, - [3337] = {.lex_state = 25}, - [3338] = {.lex_state = 25}, - [3339] = {.lex_state = 20}, - [3340] = {.lex_state = 31}, + [3333] = {.lex_state = 35}, + [3334] = {.lex_state = 35}, + [3335] = {.lex_state = 35}, + [3336] = {.lex_state = 35}, + [3337] = {.lex_state = 35}, + [3338] = {.lex_state = 35}, + [3339] = {.lex_state = 35}, + [3340] = {.lex_state = 20}, [3341] = {.lex_state = 20}, [3342] = {.lex_state = 20}, [3343] = {.lex_state = 20}, [3344] = {.lex_state = 20}, - [3345] = {.lex_state = 20}, + [3345] = {.lex_state = 31}, [3346] = {.lex_state = 20}, [3347] = {.lex_state = 20}, [3348] = {.lex_state = 20}, - [3349] = {.lex_state = 32}, + [3349] = {.lex_state = 20}, [3350] = {.lex_state = 32}, - [3351] = {.lex_state = 282}, - [3352] = {.lex_state = 32}, - [3353] = {.lex_state = 22}, + [3351] = {.lex_state = 32}, + [3352] = {.lex_state = 31}, + [3353] = {.lex_state = 288}, [3354] = {.lex_state = 32}, - [3355] = {.lex_state = 31}, + [3355] = {.lex_state = 32}, [3356] = {.lex_state = 32}, [3357] = {.lex_state = 32}, [3358] = {.lex_state = 32}, - [3359] = {.lex_state = 32}, - [3360] = {.lex_state = 27}, - [3361] = {.lex_state = 19}, - [3362] = {.lex_state = 282}, - [3363] = {.lex_state = 282}, - [3364] = {.lex_state = 19}, - [3365] = {.lex_state = 19}, + [3359] = {.lex_state = 22}, + [3360] = {.lex_state = 32}, + [3361] = {.lex_state = 288}, + [3362] = {.lex_state = 25}, + [3363] = {.lex_state = 288}, + [3364] = {.lex_state = 288}, + [3365] = {.lex_state = 25}, [3366] = {.lex_state = 19}, - [3367] = {.lex_state = 282}, - [3368] = {.lex_state = 282}, - [3369] = {.lex_state = 282}, - [3370] = {.lex_state = 19}, - [3371] = {.lex_state = 19}, - [3372] = {.lex_state = 282}, + [3367] = {.lex_state = 19}, + [3368] = {.lex_state = 288}, + [3369] = {.lex_state = 19}, + [3370] = {.lex_state = 25}, + [3371] = {.lex_state = 25}, + [3372] = {.lex_state = 288}, [3373] = {.lex_state = 19}, - [3374] = {.lex_state = 282}, - [3375] = {.lex_state = 27}, + [3374] = {.lex_state = 288}, + [3375] = {.lex_state = 288}, [3376] = {.lex_state = 19}, - [3377] = {.lex_state = 19}, - [3378] = {.lex_state = 27}, - [3379] = {.lex_state = 282}, - [3380] = {.lex_state = 282}, - [3381] = {.lex_state = 19}, - [3382] = {.lex_state = 282}, - [3383] = {.lex_state = 282}, - [3384] = {.lex_state = 282}, - [3385] = {.lex_state = 19}, - [3386] = {.lex_state = 282}, - [3387] = {.lex_state = 282}, - [3388] = {.lex_state = 282}, - [3389] = {.lex_state = 282}, - [3390] = {.lex_state = 19}, - [3391] = {.lex_state = 27}, - [3392] = {.lex_state = 27}, - [3393] = {.lex_state = 27}, - [3394] = {.lex_state = 27}, - [3395] = {.lex_state = 282}, - [3396] = {.lex_state = 282}, - [3397] = {.lex_state = 27}, - [3398] = {.lex_state = 282}, - [3399] = {.lex_state = 19}, - [3400] = {.lex_state = 282}, - [3401] = {.lex_state = 19}, - [3402] = {.lex_state = 19}, - [3403] = {.lex_state = 282}, - [3404] = {.lex_state = 282}, - [3405] = {.lex_state = 19}, - [3406] = {.lex_state = 282}, - [3407] = {.lex_state = 19}, - [3408] = {.lex_state = 282}, - [3409] = {.lex_state = 282}, - [3410] = {.lex_state = 27}, - [3411] = {.lex_state = 19}, - [3412] = {.lex_state = 282}, - [3413] = {.lex_state = 27}, - [3414] = {.lex_state = 19}, - [3415] = {.lex_state = 19}, - [3416] = {.lex_state = 282}, + [3377] = {.lex_state = 288}, + [3378] = {.lex_state = 25}, + [3379] = {.lex_state = 19}, + [3380] = {.lex_state = 19}, + [3381] = {.lex_state = 25}, + [3382] = {.lex_state = 19}, + [3383] = {.lex_state = 288}, + [3384] = {.lex_state = 25}, + [3385] = {.lex_state = 288}, + [3386] = {.lex_state = 288}, + [3387] = {.lex_state = 19}, + [3388] = {.lex_state = 25}, + [3389] = {.lex_state = 288}, + [3390] = {.lex_state = 288}, + [3391] = {.lex_state = 19}, + [3392] = {.lex_state = 19}, + [3393] = {.lex_state = 19}, + [3394] = {.lex_state = 288}, + [3395] = {.lex_state = 288}, + [3396] = {.lex_state = 288}, + [3397] = {.lex_state = 288}, + [3398] = {.lex_state = 288}, + [3399] = {.lex_state = 288}, + [3400] = {.lex_state = 19}, + [3401] = {.lex_state = 288}, + [3402] = {.lex_state = 288}, + [3403] = {.lex_state = 25}, + [3404] = {.lex_state = 19}, + [3405] = {.lex_state = 288}, + [3406] = {.lex_state = 19}, + [3407] = {.lex_state = 288}, + [3408] = {.lex_state = 288}, + [3409] = {.lex_state = 288}, + [3410] = {.lex_state = 288}, + [3411] = {.lex_state = 25}, + [3412] = {.lex_state = 288}, + [3413] = {.lex_state = 19}, + [3414] = {.lex_state = 25}, + [3415] = {.lex_state = 25}, + [3416] = {.lex_state = 19}, [3417] = {.lex_state = 19}, - [3418] = {.lex_state = 282}, - [3419] = {.lex_state = 282}, - [3420] = {.lex_state = 282}, - [3421] = {.lex_state = 27}, - [3422] = {.lex_state = 27}, - [3423] = {.lex_state = 282}, - [3424] = {.lex_state = 282}, - [3425] = {.lex_state = 282}, - [3426] = {.lex_state = 282}, - [3427] = {.lex_state = 282}, - [3428] = {.lex_state = 282}, + [3418] = {.lex_state = 25}, + [3419] = {.lex_state = 19}, + [3420] = {.lex_state = 288}, + [3421] = {.lex_state = 288}, + [3422] = {.lex_state = 288}, + [3423] = {.lex_state = 288}, + [3424] = {.lex_state = 19}, + [3425] = {.lex_state = 19}, + [3426] = {.lex_state = 22}, + [3427] = {.lex_state = 288}, + [3428] = {.lex_state = 22}, [3429] = {.lex_state = 22}, - [3430] = {.lex_state = 22}, - [3431] = {.lex_state = 282}, - [3432] = {.lex_state = 282}, + [3430] = {.lex_state = 288}, + [3431] = {.lex_state = 288}, + [3432] = {.lex_state = 22}, [3433] = {.lex_state = 22}, - [3434] = {.lex_state = 282}, - [3435] = {.lex_state = 282}, - [3436] = {.lex_state = 282}, + [3434] = {.lex_state = 288}, + [3435] = {.lex_state = 22}, + [3436] = {.lex_state = 288}, [3437] = {.lex_state = 22}, - [3438] = {.lex_state = 27}, - [3439] = {.lex_state = 282}, - [3440] = {.lex_state = 282}, - [3441] = {.lex_state = 22}, - [3442] = {.lex_state = 282}, - [3443] = {.lex_state = 22}, + [3438] = {.lex_state = 288}, + [3439] = {.lex_state = 288}, + [3440] = {.lex_state = 22}, + [3441] = {.lex_state = 288}, + [3442] = {.lex_state = 22}, + [3443] = {.lex_state = 288}, [3444] = {.lex_state = 22}, - [3445] = {.lex_state = 282}, - [3446] = {.lex_state = 22}, - [3447] = {.lex_state = 282}, - [3448] = {.lex_state = 282}, - [3449] = {.lex_state = 282}, - [3450] = {.lex_state = 282}, - [3451] = {.lex_state = 22}, - [3452] = {.lex_state = 282}, - [3453] = {.lex_state = 22}, - [3454] = {.lex_state = 282}, - [3455] = {.lex_state = 27}, - [3456] = {.lex_state = 282}, - [3457] = {.lex_state = 282}, - [3458] = {.lex_state = 282}, - [3459] = {.lex_state = 282}, - [3460] = {.lex_state = 282}, + [3445] = {.lex_state = 288}, + [3446] = {.lex_state = 288}, + [3447] = {.lex_state = 22}, + [3448] = {.lex_state = 288}, + [3449] = {.lex_state = 288}, + [3450] = {.lex_state = 288}, + [3451] = {.lex_state = 288}, + [3452] = {.lex_state = 22}, + [3453] = {.lex_state = 288}, + [3454] = {.lex_state = 288}, + [3455] = {.lex_state = 288}, + [3456] = {.lex_state = 22}, + [3457] = {.lex_state = 288}, + [3458] = {.lex_state = 288}, + [3459] = {.lex_state = 288}, + [3460] = {.lex_state = 288}, [3461] = {.lex_state = 22}, - [3462] = {.lex_state = 282}, - [3463] = {.lex_state = 282}, - [3464] = {.lex_state = 22}, - [3465] = {.lex_state = 282}, + [3462] = {.lex_state = 288}, + [3463] = {.lex_state = 288}, + [3464] = {.lex_state = 288}, + [3465] = {.lex_state = 288}, [3466] = {.lex_state = 22}, - [3467] = {.lex_state = 282}, + [3467] = {.lex_state = 288}, [3468] = {.lex_state = 22}, - [3469] = {.lex_state = 282}, - [3470] = {.lex_state = 282}, - [3471] = {.lex_state = 22}, - [3472] = {.lex_state = 27}, - [3473] = {.lex_state = 22}, + [3469] = {.lex_state = 22}, + [3470] = {.lex_state = 288}, + [3471] = {.lex_state = 288}, + [3472] = {.lex_state = 22}, + [3473] = {.lex_state = 288}, [3474] = {.lex_state = 22}, - [3475] = {.lex_state = 27}, - [3476] = {.lex_state = 282}, - [3477] = {.lex_state = 282}, - [3478] = {.lex_state = 282}, + [3475] = {.lex_state = 22}, + [3476] = {.lex_state = 288}, + [3477] = {.lex_state = 288}, + [3478] = {.lex_state = 22}, [3479] = {.lex_state = 22}, - [3480] = {.lex_state = 22}, - [3481] = {.lex_state = 282}, - [3482] = {.lex_state = 22}, - [3483] = {.lex_state = 282}, - [3484] = {.lex_state = 282}, - [3485] = {.lex_state = 35}, - [3486] = {.lex_state = 22}, - [3487] = {.lex_state = 22}, - [3488] = {.lex_state = 282}, - [3489] = {.lex_state = 22}, - [3490] = {.lex_state = 22}, - [3491] = {.lex_state = 22}, - [3492] = {.lex_state = 282}, + [3480] = {.lex_state = 288}, + [3481] = {.lex_state = 25}, + [3482] = {.lex_state = 25}, + [3483] = {.lex_state = 288}, + [3484] = {.lex_state = 288}, + [3485] = {.lex_state = 22}, + [3486] = {.lex_state = 288}, + [3487] = {.lex_state = 288}, + [3488] = {.lex_state = 288}, + [3489] = {.lex_state = 288}, + [3490] = {.lex_state = 288}, + [3491] = {.lex_state = 25}, + [3492] = {.lex_state = 22}, [3493] = {.lex_state = 22}, - [3494] = {.lex_state = 282}, - [3495] = {.lex_state = 22}, - [3496] = {.lex_state = 282}, - [3497] = {.lex_state = 282}, + [3494] = {.lex_state = 25}, + [3495] = {.lex_state = 288}, + [3496] = {.lex_state = 22}, + [3497] = {.lex_state = 22}, + [3498] = {.lex_state = 288}, + [3499] = {.lex_state = 36}, }; static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -9918,38 +10032,38 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUNDc] = ACTIONS(1), }, [1] = { - [sym_source] = STATE(3426), - [sym__gap] = STATE(99), - [sym_dis_expr] = STATE(99), - [sym__form] = STATE(1814), - [sym_num_lit] = STATE(1814), - [sym_kwd_lit] = STATE(1814), - [sym_str_lit] = STATE(1814), - [sym_char_lit] = STATE(1814), - [sym_sym_lit] = STATE(1610), - [sym__metadata_lit] = STATE(2236), - [sym_meta_lit] = STATE(2222), - [sym_old_meta_lit] = STATE(2221), - [sym_list_lit] = STATE(1814), - [sym__bare_list_lit] = STATE(1609), - [sym_vec_lit] = STATE(1814), - [sym_set_lit] = STATE(1814), - [sym__bare_set_lit] = STATE(1608), - [sym_read_cond_lit] = STATE(1814), - [sym_splicing_read_cond_lit] = STATE(1814), - [sym_var_quoting_lit] = STATE(1814), - [sym_quoting_lit] = STATE(1814), - [sym_syn_quoting_lit] = STATE(1814), - [sym_unquote_splicing_lit] = STATE(1814), - [sym_unquoting_lit] = STATE(1814), - [sym_defun] = STATE(1609), - [sym_loop_macro] = STATE(1609), - [sym_path_lit] = STATE(1814), - [sym_package_lit] = STATE(1814), - [sym_include_reader_macro] = STATE(1814), - [sym_complex_num_lit] = STATE(1814), - [aux_sym_source_repeat1] = STATE(99), - [aux_sym_list_lit_repeat1] = STATE(2052), + [sym_source] = STATE(3427), + [sym__gap] = STATE(90), + [sym_dis_expr] = STATE(90), + [sym__form] = STATE(1677), + [sym_num_lit] = STATE(1677), + [sym_kwd_lit] = STATE(1677), + [sym_str_lit] = STATE(1677), + [sym_char_lit] = STATE(1677), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1677), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1677), + [sym_set_lit] = STATE(1677), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1677), + [sym_splicing_read_cond_lit] = STATE(1677), + [sym_var_quoting_lit] = STATE(1677), + [sym_quoting_lit] = STATE(1677), + [sym_syn_quoting_lit] = STATE(1677), + [sym_unquote_splicing_lit] = STATE(1677), + [sym_unquoting_lit] = STATE(1677), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1677), + [sym_package_lit] = STATE(1677), + [sym_include_reader_macro] = STATE(1677), + [sym_complex_num_lit] = STATE(1677), + [aux_sym_source_repeat1] = STATE(90), + [aux_sym_list_lit_repeat1] = STATE(2153), [ts_builtin_sym_end] = ACTIONS(5), [sym__ws] = ACTIONS(7), [sym_comment] = ACTIONS(7), @@ -9979,216 +10093,132 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_cl] = ACTIONS(49), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [anon_sym_POUND_PLUS] = ACTIONS(53), - [anon_sym_POUND_DASH] = ACTIONS(53), - [anon_sym_POUNDC] = ACTIONS(55), - [anon_sym_POUNDc] = ACTIONS(55), + [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), }, [2] = { - [sym__gap] = STATE(226), - [sym_dis_expr] = STATE(226), - [sym__form] = STATE(815), - [sym_num_lit] = STATE(815), - [sym_kwd_lit] = STATE(815), - [sym_str_lit] = STATE(815), - [sym_char_lit] = STATE(815), - [sym_sym_lit] = STATE(877), - [sym__metadata_lit] = STATE(2236), - [sym_meta_lit] = STATE(2222), - [sym_old_meta_lit] = STATE(2221), - [sym_list_lit] = STATE(815), - [sym__bare_list_lit] = STATE(939), - [sym_vec_lit] = STATE(815), - [sym_set_lit] = STATE(815), - [sym__bare_set_lit] = STATE(938), - [sym_read_cond_lit] = STATE(815), - [sym_splicing_read_cond_lit] = STATE(815), - [sym_var_quoting_lit] = STATE(815), - [sym_quoting_lit] = STATE(815), - [sym_syn_quoting_lit] = STATE(815), - [sym_unquote_splicing_lit] = STATE(815), - [sym_unquoting_lit] = STATE(815), - [sym_defun] = STATE(939), - [sym_loop_macro] = STATE(939), - [sym_path_lit] = STATE(815), - [sym_package_lit] = STATE(815), - [sym_include_reader_macro] = STATE(815), - [sym_complex_num_lit] = STATE(815), - [aux_sym_dis_expr_repeat1] = STATE(226), - [aux_sym_list_lit_repeat1] = STATE(2065), - [aux_sym_do_clause_repeat1] = STATE(4), - [sym__ws] = ACTIONS(57), - [sym_comment] = ACTIONS(57), - [anon_sym_POUND_] = ACTIONS(57), - [anon_sym_POUND] = ACTIONS(59), - [anon_sym_DOT] = ACTIONS(61), - [aux_sym_num_lit_token1] = ACTIONS(63), - [anon_sym_COLON] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [sym_nil_lit] = ACTIONS(61), - [aux_sym_sym_lit_token1] = ACTIONS(71), - [anon_sym_CARET] = ACTIONS(57), - [anon_sym_POUND_CARET] = ACTIONS(57), - [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_RPAREN] = ACTIONS(57), - [anon_sym_POUND0A] = ACTIONS(73), - [anon_sym_POUND0a] = ACTIONS(73), - [anon_sym_POUND_QMARK] = ACTIONS(75), - [anon_sym_POUND_QMARK_AT] = ACTIONS(77), - [anon_sym_POUND_SQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [anon_sym_BQUOTE] = ACTIONS(83), - [anon_sym_COMMA_AT] = ACTIONS(85), - [anon_sym_COMMA] = ACTIONS(87), + [sym__gap] = STATE(227), + [sym_dis_expr] = STATE(227), + [sym__form] = STATE(817), + [sym_num_lit] = STATE(817), + [sym_kwd_lit] = STATE(817), + [sym_str_lit] = STATE(817), + [sym_char_lit] = STATE(817), + [sym_sym_lit] = STATE(862), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(817), + [sym__bare_list_lit] = STATE(863), + [sym_vec_lit] = STATE(817), + [sym_set_lit] = STATE(817), + [sym__bare_set_lit] = STATE(870), + [sym_read_cond_lit] = STATE(817), + [sym_splicing_read_cond_lit] = STATE(817), + [sym_var_quoting_lit] = STATE(817), + [sym_quoting_lit] = STATE(817), + [sym_syn_quoting_lit] = STATE(817), + [sym_unquote_splicing_lit] = STATE(817), + [sym_unquoting_lit] = STATE(817), + [sym_defun] = STATE(863), + [sym_loop_macro] = STATE(863), + [sym_path_lit] = STATE(817), + [sym_package_lit] = STATE(817), + [sym_include_reader_macro] = STATE(817), + [sym_complex_num_lit] = STATE(817), + [aux_sym_dis_expr_repeat1] = STATE(227), + [aux_sym_list_lit_repeat1] = STATE(2156), + [aux_sym_do_clause_repeat1] = STATE(3), + [sym__ws] = ACTIONS(59), + [sym_comment] = ACTIONS(59), + [anon_sym_POUND_] = ACTIONS(59), + [anon_sym_POUND] = ACTIONS(61), + [anon_sym_DOT] = ACTIONS(63), + [aux_sym_num_lit_token1] = ACTIONS(65), + [anon_sym_COLON] = ACTIONS(67), + [anon_sym_COLON_COLON] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [sym_nil_lit] = ACTIONS(63), + [aux_sym_sym_lit_token1] = ACTIONS(73), + [anon_sym_CARET] = ACTIONS(59), + [anon_sym_POUND_CARET] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(59), + [anon_sym_RPAREN] = ACTIONS(59), + [anon_sym_POUND0A] = ACTIONS(75), + [anon_sym_POUND0a] = ACTIONS(75), + [anon_sym_POUND_QMARK] = ACTIONS(77), + [anon_sym_POUND_QMARK_AT] = ACTIONS(79), + [anon_sym_POUND_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_BQUOTE] = ACTIONS(85), + [anon_sym_COMMA_AT] = ACTIONS(87), + [anon_sym_COMMA] = ACTIONS(89), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(61), - [anon_sym_cl] = ACTIONS(89), - [aux_sym_accumulation_verb_token1] = ACTIONS(89), - [anon_sym_for] = ACTIONS(89), - [anon_sym_and] = ACTIONS(89), - [anon_sym_as] = ACTIONS(89), - [anon_sym_with] = ACTIONS(89), - [anon_sym_do] = ACTIONS(89), - [anon_sym_while] = ACTIONS(89), - [anon_sym_until] = ACTIONS(89), - [anon_sym_repeat] = ACTIONS(89), - [anon_sym_when] = ACTIONS(89), - [anon_sym_if] = ACTIONS(89), - [anon_sym_unless] = ACTIONS(89), - [anon_sym_always] = ACTIONS(89), - [anon_sym_thereis] = ACTIONS(89), - [anon_sym_never] = ACTIONS(89), - [anon_sym_else] = ACTIONS(89), - [anon_sym_finally] = ACTIONS(89), - [anon_sym_return] = ACTIONS(89), - [anon_sym_initially] = ACTIONS(89), - [anon_sym_POUNDP] = ACTIONS(91), - [anon_sym_POUNDp] = ACTIONS(91), - [anon_sym_POUND_PLUS] = ACTIONS(93), - [anon_sym_POUND_DASH] = ACTIONS(93), - [anon_sym_POUNDC] = ACTIONS(95), - [anon_sym_POUNDc] = ACTIONS(95), + [sym_fancy_literal] = ACTIONS(63), + [anon_sym_cl] = ACTIONS(91), + [aux_sym_accumulation_verb_token1] = ACTIONS(91), + [anon_sym_for] = ACTIONS(91), + [anon_sym_and] = ACTIONS(91), + [anon_sym_as] = ACTIONS(91), + [anon_sym_with] = ACTIONS(91), + [anon_sym_do] = ACTIONS(91), + [anon_sym_while] = ACTIONS(91), + [anon_sym_until] = ACTIONS(91), + [anon_sym_repeat] = ACTIONS(91), + [anon_sym_when] = ACTIONS(91), + [anon_sym_if] = ACTIONS(91), + [anon_sym_unless] = ACTIONS(91), + [anon_sym_always] = ACTIONS(91), + [anon_sym_thereis] = ACTIONS(91), + [anon_sym_never] = ACTIONS(91), + [anon_sym_else] = ACTIONS(91), + [anon_sym_finally] = ACTIONS(91), + [anon_sym_return] = ACTIONS(91), + [anon_sym_initially] = ACTIONS(91), + [anon_sym_POUNDP] = ACTIONS(93), + [anon_sym_POUNDp] = ACTIONS(93), + [sym_self_referential_reader_macro] = ACTIONS(95), + [anon_sym_POUND_PLUS] = ACTIONS(97), + [anon_sym_POUND_DASH] = ACTIONS(97), + [anon_sym_POUNDC] = ACTIONS(99), + [anon_sym_POUNDc] = ACTIONS(99), }, [3] = { - [sym__gap] = STATE(226), - [sym_dis_expr] = STATE(226), - [sym__form] = STATE(815), - [sym_num_lit] = STATE(815), - [sym_kwd_lit] = STATE(815), - [sym_str_lit] = STATE(815), - [sym_char_lit] = STATE(815), - [sym_sym_lit] = STATE(877), - [sym__metadata_lit] = STATE(2236), - [sym_meta_lit] = STATE(2222), - [sym_old_meta_lit] = STATE(2221), - [sym_list_lit] = STATE(815), - [sym__bare_list_lit] = STATE(939), - [sym_vec_lit] = STATE(815), - [sym_set_lit] = STATE(815), - [sym__bare_set_lit] = STATE(938), - [sym_read_cond_lit] = STATE(815), - [sym_splicing_read_cond_lit] = STATE(815), - [sym_var_quoting_lit] = STATE(815), - [sym_quoting_lit] = STATE(815), - [sym_syn_quoting_lit] = STATE(815), - [sym_unquote_splicing_lit] = STATE(815), - [sym_unquoting_lit] = STATE(815), - [sym_defun] = STATE(939), - [sym_loop_macro] = STATE(939), - [sym_path_lit] = STATE(815), - [sym_package_lit] = STATE(815), - [sym_include_reader_macro] = STATE(815), - [sym_complex_num_lit] = STATE(815), - [aux_sym_dis_expr_repeat1] = STATE(226), - [aux_sym_list_lit_repeat1] = STATE(2065), - [aux_sym_do_clause_repeat1] = STATE(4), - [sym__ws] = ACTIONS(97), - [sym_comment] = ACTIONS(97), - [anon_sym_POUND_] = ACTIONS(97), - [anon_sym_POUND] = ACTIONS(59), - [anon_sym_DOT] = ACTIONS(61), - [aux_sym_num_lit_token1] = ACTIONS(63), - [anon_sym_COLON] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [sym_nil_lit] = ACTIONS(61), - [aux_sym_sym_lit_token1] = ACTIONS(71), - [anon_sym_CARET] = ACTIONS(97), - [anon_sym_POUND_CARET] = ACTIONS(97), - [anon_sym_LPAREN] = ACTIONS(97), - [anon_sym_RPAREN] = ACTIONS(97), - [anon_sym_POUND0A] = ACTIONS(73), - [anon_sym_POUND0a] = ACTIONS(73), - [anon_sym_POUND_QMARK] = ACTIONS(75), - [anon_sym_POUND_QMARK_AT] = ACTIONS(77), - [anon_sym_POUND_SQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [anon_sym_BQUOTE] = ACTIONS(83), - [anon_sym_COMMA_AT] = ACTIONS(85), - [anon_sym_COMMA] = ACTIONS(87), - [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(61), - [anon_sym_cl] = ACTIONS(99), - [aux_sym_accumulation_verb_token1] = ACTIONS(99), - [anon_sym_for] = ACTIONS(99), - [anon_sym_and] = ACTIONS(99), - [anon_sym_as] = ACTIONS(99), - [anon_sym_with] = ACTIONS(99), - [anon_sym_do] = ACTIONS(99), - [anon_sym_while] = ACTIONS(99), - [anon_sym_until] = ACTIONS(99), - [anon_sym_repeat] = ACTIONS(99), - [anon_sym_when] = ACTIONS(99), - [anon_sym_if] = ACTIONS(99), - [anon_sym_unless] = ACTIONS(99), - [anon_sym_always] = ACTIONS(99), - [anon_sym_thereis] = ACTIONS(99), - [anon_sym_never] = ACTIONS(99), - [anon_sym_else] = ACTIONS(99), - [anon_sym_finally] = ACTIONS(99), - [anon_sym_return] = ACTIONS(99), - [anon_sym_initially] = ACTIONS(99), - [anon_sym_POUNDP] = ACTIONS(91), - [anon_sym_POUNDp] = ACTIONS(91), - [anon_sym_POUND_PLUS] = ACTIONS(93), - [anon_sym_POUND_DASH] = ACTIONS(93), - [anon_sym_POUNDC] = ACTIONS(95), - [anon_sym_POUNDc] = ACTIONS(95), - }, - [4] = { - [sym__gap] = STATE(226), - [sym_dis_expr] = STATE(226), - [sym__form] = STATE(815), - [sym_num_lit] = STATE(815), - [sym_kwd_lit] = STATE(815), - [sym_str_lit] = STATE(815), - [sym_char_lit] = STATE(815), - [sym_sym_lit] = STATE(877), - [sym__metadata_lit] = STATE(2236), - [sym_meta_lit] = STATE(2222), - [sym_old_meta_lit] = STATE(2221), - [sym_list_lit] = STATE(815), - [sym__bare_list_lit] = STATE(939), - [sym_vec_lit] = STATE(815), - [sym_set_lit] = STATE(815), - [sym__bare_set_lit] = STATE(938), - [sym_read_cond_lit] = STATE(815), - [sym_splicing_read_cond_lit] = STATE(815), - [sym_var_quoting_lit] = STATE(815), - [sym_quoting_lit] = STATE(815), - [sym_syn_quoting_lit] = STATE(815), - [sym_unquote_splicing_lit] = STATE(815), - [sym_unquoting_lit] = STATE(815), - [sym_defun] = STATE(939), - [sym_loop_macro] = STATE(939), - [sym_path_lit] = STATE(815), - [sym_package_lit] = STATE(815), - [sym_include_reader_macro] = STATE(815), - [sym_complex_num_lit] = STATE(815), - [aux_sym_dis_expr_repeat1] = STATE(226), - [aux_sym_list_lit_repeat1] = STATE(2065), - [aux_sym_do_clause_repeat1] = STATE(4), + [sym__gap] = STATE(227), + [sym_dis_expr] = STATE(227), + [sym__form] = STATE(817), + [sym_num_lit] = STATE(817), + [sym_kwd_lit] = STATE(817), + [sym_str_lit] = STATE(817), + [sym_char_lit] = STATE(817), + [sym_sym_lit] = STATE(862), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(817), + [sym__bare_list_lit] = STATE(863), + [sym_vec_lit] = STATE(817), + [sym_set_lit] = STATE(817), + [sym__bare_set_lit] = STATE(870), + [sym_read_cond_lit] = STATE(817), + [sym_splicing_read_cond_lit] = STATE(817), + [sym_var_quoting_lit] = STATE(817), + [sym_quoting_lit] = STATE(817), + [sym_syn_quoting_lit] = STATE(817), + [sym_unquote_splicing_lit] = STATE(817), + [sym_unquoting_lit] = STATE(817), + [sym_defun] = STATE(863), + [sym_loop_macro] = STATE(863), + [sym_path_lit] = STATE(817), + [sym_package_lit] = STATE(817), + [sym_include_reader_macro] = STATE(817), + [sym_complex_num_lit] = STATE(817), + [aux_sym_dis_expr_repeat1] = STATE(227), + [aux_sym_list_lit_repeat1] = STATE(2156), + [aux_sym_do_clause_repeat1] = STATE(3), [sym__ws] = ACTIONS(101), [sym_comment] = ACTIONS(101), [anon_sym_POUND_] = ACTIONS(104), @@ -10237,113 +10267,202 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_initially] = ACTIONS(166), [anon_sym_POUNDP] = ACTIONS(168), [anon_sym_POUNDp] = ACTIONS(168), - [anon_sym_POUND_PLUS] = ACTIONS(171), - [anon_sym_POUND_DASH] = ACTIONS(171), - [anon_sym_POUNDC] = ACTIONS(174), - [anon_sym_POUNDc] = ACTIONS(174), + [sym_self_referential_reader_macro] = ACTIONS(171), + [anon_sym_POUND_PLUS] = ACTIONS(174), + [anon_sym_POUND_DASH] = ACTIONS(174), + [anon_sym_POUNDC] = ACTIONS(177), + [anon_sym_POUNDc] = ACTIONS(177), }, - [5] = { - [sym__gap] = STATE(362), - [sym_dis_expr] = STATE(362), - [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(1059), - [sym__metadata_lit] = STATE(2236), - [sym_meta_lit] = STATE(2222), - [sym_old_meta_lit] = STATE(2221), - [sym_list_lit] = STATE(11), - [sym__bare_list_lit] = STATE(1058), - [sym_vec_lit] = STATE(11), - [sym_set_lit] = STATE(11), - [sym__bare_set_lit] = STATE(1057), - [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(1058), - [sym_loop_macro] = STATE(1058), - [sym_path_lit] = STATE(11), - [sym_package_lit] = STATE(11), - [sym_include_reader_macro] = STATE(11), - [sym_complex_num_lit] = STATE(11), - [aux_sym_dis_expr_repeat1] = STATE(362), - [aux_sym_list_lit_repeat1] = STATE(2062), - [sym__ws] = ACTIONS(177), - [sym_comment] = ACTIONS(177), + [4] = { + [sym__gap] = STATE(227), + [sym_dis_expr] = STATE(227), + [sym__form] = STATE(817), + [sym_num_lit] = STATE(817), + [sym_kwd_lit] = STATE(817), + [sym_str_lit] = STATE(817), + [sym_char_lit] = STATE(817), + [sym_sym_lit] = STATE(862), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(817), + [sym__bare_list_lit] = STATE(863), + [sym_vec_lit] = STATE(817), + [sym_set_lit] = STATE(817), + [sym__bare_set_lit] = STATE(870), + [sym_read_cond_lit] = STATE(817), + [sym_splicing_read_cond_lit] = STATE(817), + [sym_var_quoting_lit] = STATE(817), + [sym_quoting_lit] = STATE(817), + [sym_syn_quoting_lit] = STATE(817), + [sym_unquote_splicing_lit] = STATE(817), + [sym_unquoting_lit] = STATE(817), + [sym_defun] = STATE(863), + [sym_loop_macro] = STATE(863), + [sym_path_lit] = STATE(817), + [sym_package_lit] = STATE(817), + [sym_include_reader_macro] = STATE(817), + [sym_complex_num_lit] = STATE(817), + [aux_sym_dis_expr_repeat1] = STATE(227), + [aux_sym_list_lit_repeat1] = STATE(2156), + [aux_sym_do_clause_repeat1] = STATE(3), + [sym__ws] = ACTIONS(180), + [sym_comment] = ACTIONS(180), [anon_sym_POUND_] = ACTIONS(180), - [anon_sym_POUND] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(185), - [aux_sym_num_lit_token1] = ACTIONS(187), - [anon_sym_COLON] = ACTIONS(189), - [anon_sym_COLON_COLON] = ACTIONS(191), - [anon_sym_DQUOTE] = ACTIONS(193), - [sym_nil_lit] = ACTIONS(185), - [aux_sym_sym_lit_token1] = ACTIONS(195), - [anon_sym_CARET] = ACTIONS(197), - [anon_sym_POUND_CARET] = ACTIONS(200), - [anon_sym_LPAREN] = ACTIONS(203), - [anon_sym_RPAREN] = ACTIONS(206), - [anon_sym_POUND0A] = ACTIONS(208), - [anon_sym_POUND0a] = ACTIONS(208), - [anon_sym_POUND_QMARK] = ACTIONS(210), - [anon_sym_POUND_QMARK_AT] = ACTIONS(212), - [anon_sym_POUND_SQUOTE] = ACTIONS(214), - [anon_sym_SQUOTE] = ACTIONS(216), - [anon_sym_BQUOTE] = ACTIONS(218), - [anon_sym_COMMA_AT] = ACTIONS(220), - [anon_sym_COMMA] = ACTIONS(222), + [anon_sym_POUND] = ACTIONS(61), + [anon_sym_DOT] = ACTIONS(63), + [aux_sym_num_lit_token1] = ACTIONS(65), + [anon_sym_COLON] = ACTIONS(67), + [anon_sym_COLON_COLON] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [sym_nil_lit] = ACTIONS(63), + [aux_sym_sym_lit_token1] = ACTIONS(73), + [anon_sym_CARET] = ACTIONS(180), + [anon_sym_POUND_CARET] = ACTIONS(180), + [anon_sym_LPAREN] = ACTIONS(180), + [anon_sym_RPAREN] = ACTIONS(180), + [anon_sym_POUND0A] = ACTIONS(75), + [anon_sym_POUND0a] = ACTIONS(75), + [anon_sym_POUND_QMARK] = ACTIONS(77), + [anon_sym_POUND_QMARK_AT] = ACTIONS(79), + [anon_sym_POUND_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_BQUOTE] = ACTIONS(85), + [anon_sym_COMMA_AT] = ACTIONS(87), + [anon_sym_COMMA] = ACTIONS(89), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(63), + [anon_sym_cl] = ACTIONS(182), + [aux_sym_accumulation_verb_token1] = ACTIONS(182), + [anon_sym_for] = ACTIONS(182), + [anon_sym_and] = ACTIONS(182), + [anon_sym_as] = ACTIONS(182), + [anon_sym_with] = ACTIONS(182), + [anon_sym_do] = ACTIONS(182), + [anon_sym_while] = ACTIONS(182), + [anon_sym_until] = ACTIONS(182), + [anon_sym_repeat] = ACTIONS(182), + [anon_sym_when] = ACTIONS(182), + [anon_sym_if] = ACTIONS(182), + [anon_sym_unless] = ACTIONS(182), + [anon_sym_always] = ACTIONS(182), + [anon_sym_thereis] = ACTIONS(182), + [anon_sym_never] = ACTIONS(182), + [anon_sym_else] = ACTIONS(182), + [anon_sym_finally] = ACTIONS(182), + [anon_sym_return] = ACTIONS(182), + [anon_sym_initially] = ACTIONS(182), + [anon_sym_POUNDP] = ACTIONS(93), + [anon_sym_POUNDp] = ACTIONS(93), + [sym_self_referential_reader_macro] = ACTIONS(95), + [anon_sym_POUND_PLUS] = ACTIONS(97), + [anon_sym_POUND_DASH] = ACTIONS(97), + [anon_sym_POUNDC] = ACTIONS(99), + [anon_sym_POUNDc] = ACTIONS(99), + }, + [5] = { + [sym__gap] = STATE(224), + [sym_dis_expr] = STATE(224), + [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(1079), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(7), + [sym__bare_list_lit] = STATE(1078), + [sym_vec_lit] = STATE(7), + [sym_set_lit] = STATE(7), + [sym__bare_set_lit] = STATE(1077), + [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(1078), + [sym_loop_macro] = STATE(1078), + [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(224), + [aux_sym_list_lit_repeat1] = STATE(2137), + [sym__ws] = ACTIONS(184), + [sym_comment] = ACTIONS(184), + [anon_sym_POUND_] = ACTIONS(187), + [anon_sym_POUND] = ACTIONS(190), + [anon_sym_DOT] = ACTIONS(192), + [aux_sym_num_lit_token1] = ACTIONS(194), + [anon_sym_COLON] = ACTIONS(196), + [anon_sym_COLON_COLON] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_nil_lit] = ACTIONS(192), + [aux_sym_sym_lit_token1] = ACTIONS(202), + [anon_sym_CARET] = ACTIONS(204), + [anon_sym_POUND_CARET] = ACTIONS(207), + [anon_sym_LPAREN] = ACTIONS(210), + [anon_sym_RPAREN] = ACTIONS(213), + [anon_sym_POUND0A] = ACTIONS(215), + [anon_sym_POUND0a] = ACTIONS(215), + [anon_sym_POUND_QMARK] = ACTIONS(217), + [anon_sym_POUND_QMARK_AT] = ACTIONS(219), + [anon_sym_POUND_SQUOTE] = ACTIONS(221), + [anon_sym_SQUOTE] = ACTIONS(223), + [anon_sym_BQUOTE] = ACTIONS(225), + [anon_sym_COMMA_AT] = ACTIONS(227), + [anon_sym_COMMA] = ACTIONS(229), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(185), - [anon_sym_cl] = ACTIONS(224), - [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(229), - [anon_sym_POUNDp] = ACTIONS(229), - [anon_sym_POUND_PLUS] = ACTIONS(231), - [anon_sym_POUND_DASH] = ACTIONS(231), - [anon_sym_POUNDC] = ACTIONS(233), - [anon_sym_POUNDc] = ACTIONS(233), + [sym_fancy_literal] = ACTIONS(192), + [anon_sym_cl] = ACTIONS(231), + [aux_sym_accumulation_verb_token1] = ACTIONS(234), + [anon_sym_for] = ACTIONS(234), + [anon_sym_and] = ACTIONS(234), + [anon_sym_as] = ACTIONS(234), + [anon_sym_with] = ACTIONS(234), + [anon_sym_do] = ACTIONS(234), + [anon_sym_while] = ACTIONS(234), + [anon_sym_until] = ACTIONS(234), + [anon_sym_repeat] = ACTIONS(234), + [anon_sym_when] = ACTIONS(234), + [anon_sym_if] = ACTIONS(234), + [anon_sym_unless] = ACTIONS(234), + [anon_sym_always] = ACTIONS(234), + [anon_sym_thereis] = ACTIONS(234), + [anon_sym_never] = ACTIONS(234), + [anon_sym_else] = ACTIONS(234), + [anon_sym_finally] = ACTIONS(234), + [anon_sym_return] = ACTIONS(234), + [anon_sym_initially] = ACTIONS(234), + [anon_sym_POUNDP] = ACTIONS(236), + [anon_sym_POUNDp] = ACTIONS(236), + [sym_self_referential_reader_macro] = ACTIONS(238), + [anon_sym_POUND_PLUS] = ACTIONS(240), + [anon_sym_POUND_DASH] = ACTIONS(240), + [anon_sym_POUNDC] = ACTIONS(242), + [anon_sym_POUNDc] = ACTIONS(242), }, [6] = { - [sym__gap] = STATE(223), - [sym_dis_expr] = STATE(223), + [sym__gap] = STATE(362), + [sym_dis_expr] = STATE(362), [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(1059), - [sym__metadata_lit] = STATE(2236), - [sym_meta_lit] = STATE(2222), - [sym_old_meta_lit] = STATE(2221), + [sym_sym_lit] = STATE(1079), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), [sym_list_lit] = STATE(8), - [sym__bare_list_lit] = STATE(1058), + [sym__bare_list_lit] = STATE(1078), [sym_vec_lit] = STATE(8), [sym_set_lit] = STATE(8), - [sym__bare_set_lit] = STATE(1057), + [sym__bare_set_lit] = STATE(1077), [sym_read_cond_lit] = STATE(8), [sym_splicing_read_cond_lit] = STATE(8), [sym_var_quoting_lit] = STATE(8), @@ -10351,1112 +10470,1125 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_syn_quoting_lit] = STATE(8), [sym_unquote_splicing_lit] = STATE(8), [sym_unquoting_lit] = STATE(8), - [sym_defun] = STATE(1058), - [sym_loop_macro] = STATE(1058), + [sym_defun] = STATE(1078), + [sym_loop_macro] = STATE(1078), [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(223), - [aux_sym_list_lit_repeat1] = STATE(2062), - [sym__ws] = ACTIONS(235), - [sym_comment] = ACTIONS(235), - [anon_sym_POUND_] = ACTIONS(238), - [anon_sym_POUND] = ACTIONS(183), - [anon_sym_DOT] = ACTIONS(241), - [aux_sym_num_lit_token1] = ACTIONS(187), - [anon_sym_COLON] = ACTIONS(189), - [anon_sym_COLON_COLON] = ACTIONS(191), - [anon_sym_DQUOTE] = ACTIONS(193), - [sym_nil_lit] = ACTIONS(241), - [aux_sym_sym_lit_token1] = ACTIONS(195), - [anon_sym_CARET] = ACTIONS(243), - [anon_sym_POUND_CARET] = ACTIONS(246), - [anon_sym_LPAREN] = ACTIONS(249), - [anon_sym_RPAREN] = ACTIONS(252), - [anon_sym_POUND0A] = ACTIONS(208), - [anon_sym_POUND0a] = ACTIONS(208), - [anon_sym_POUND_QMARK] = ACTIONS(210), - [anon_sym_POUND_QMARK_AT] = ACTIONS(212), - [anon_sym_POUND_SQUOTE] = ACTIONS(214), - [anon_sym_SQUOTE] = ACTIONS(216), - [anon_sym_BQUOTE] = ACTIONS(218), - [anon_sym_COMMA_AT] = ACTIONS(220), - [anon_sym_COMMA] = ACTIONS(222), + [aux_sym_dis_expr_repeat1] = STATE(362), + [aux_sym_list_lit_repeat1] = STATE(2137), + [sym__ws] = ACTIONS(244), + [sym_comment] = ACTIONS(244), + [anon_sym_POUND_] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(190), + [anon_sym_DOT] = ACTIONS(250), + [aux_sym_num_lit_token1] = ACTIONS(194), + [anon_sym_COLON] = ACTIONS(196), + [anon_sym_COLON_COLON] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [sym_nil_lit] = ACTIONS(250), + [aux_sym_sym_lit_token1] = ACTIONS(202), + [anon_sym_CARET] = ACTIONS(252), + [anon_sym_POUND_CARET] = ACTIONS(255), + [anon_sym_LPAREN] = ACTIONS(258), + [anon_sym_RPAREN] = ACTIONS(261), + [anon_sym_POUND0A] = ACTIONS(215), + [anon_sym_POUND0a] = ACTIONS(215), + [anon_sym_POUND_QMARK] = ACTIONS(217), + [anon_sym_POUND_QMARK_AT] = ACTIONS(219), + [anon_sym_POUND_SQUOTE] = ACTIONS(221), + [anon_sym_SQUOTE] = ACTIONS(223), + [anon_sym_BQUOTE] = ACTIONS(225), + [anon_sym_COMMA_AT] = ACTIONS(227), + [anon_sym_COMMA] = ACTIONS(229), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(241), - [anon_sym_cl] = ACTIONS(254), - [aux_sym_accumulation_verb_token1] = ACTIONS(257), - [anon_sym_for] = ACTIONS(257), - [anon_sym_and] = ACTIONS(257), - [anon_sym_as] = ACTIONS(257), - [anon_sym_with] = ACTIONS(257), - [anon_sym_do] = ACTIONS(257), - [anon_sym_while] = ACTIONS(257), - [anon_sym_until] = ACTIONS(257), - [anon_sym_repeat] = ACTIONS(257), - [anon_sym_when] = ACTIONS(257), - [anon_sym_if] = ACTIONS(257), - [anon_sym_unless] = ACTIONS(257), - [anon_sym_always] = ACTIONS(257), - [anon_sym_thereis] = ACTIONS(257), - [anon_sym_never] = ACTIONS(257), - [anon_sym_else] = ACTIONS(257), - [anon_sym_finally] = ACTIONS(257), - [anon_sym_return] = ACTIONS(257), - [anon_sym_initially] = ACTIONS(257), - [anon_sym_POUNDP] = ACTIONS(229), - [anon_sym_POUNDp] = ACTIONS(229), - [anon_sym_POUND_PLUS] = ACTIONS(231), - [anon_sym_POUND_DASH] = ACTIONS(231), - [anon_sym_POUNDC] = ACTIONS(233), - [anon_sym_POUNDc] = ACTIONS(233), + [sym_fancy_literal] = ACTIONS(250), + [anon_sym_cl] = ACTIONS(263), + [aux_sym_accumulation_verb_token1] = ACTIONS(266), + [anon_sym_for] = ACTIONS(266), + [anon_sym_and] = ACTIONS(266), + [anon_sym_as] = ACTIONS(266), + [anon_sym_with] = ACTIONS(266), + [anon_sym_do] = ACTIONS(266), + [anon_sym_while] = ACTIONS(266), + [anon_sym_until] = ACTIONS(266), + [anon_sym_repeat] = ACTIONS(266), + [anon_sym_when] = ACTIONS(266), + [anon_sym_if] = ACTIONS(266), + [anon_sym_unless] = ACTIONS(266), + [anon_sym_always] = ACTIONS(266), + [anon_sym_thereis] = ACTIONS(266), + [anon_sym_never] = ACTIONS(266), + [anon_sym_else] = ACTIONS(266), + [anon_sym_finally] = ACTIONS(266), + [anon_sym_return] = ACTIONS(266), + [anon_sym_initially] = ACTIONS(266), + [anon_sym_POUNDP] = ACTIONS(236), + [anon_sym_POUNDp] = ACTIONS(236), + [sym_self_referential_reader_macro] = ACTIONS(268), + [anon_sym_POUND_PLUS] = ACTIONS(240), + [anon_sym_POUND_DASH] = ACTIONS(240), + [anon_sym_POUNDC] = ACTIONS(242), + [anon_sym_POUNDc] = ACTIONS(242), }, [7] = { [sym__gap] = STATE(13), [sym_dis_expr] = STATE(13), - [sym__form] = STATE(2002), - [sym_num_lit] = STATE(2002), - [sym_kwd_lit] = STATE(2002), - [sym_str_lit] = STATE(2002), - [sym_char_lit] = STATE(2002), - [sym_sym_lit] = STATE(2024), - [sym__metadata_lit] = STATE(2236), - [sym_meta_lit] = STATE(2222), - [sym_old_meta_lit] = STATE(2221), - [sym_list_lit] = STATE(2002), - [sym__bare_list_lit] = STATE(2118), - [sym_vec_lit] = STATE(2002), - [sym_set_lit] = STATE(2002), - [sym__bare_set_lit] = STATE(2119), - [sym_read_cond_lit] = STATE(2002), - [sym_splicing_read_cond_lit] = STATE(2002), - [sym_var_quoting_lit] = STATE(2002), - [sym_quoting_lit] = STATE(2002), - [sym_syn_quoting_lit] = STATE(2002), - [sym_unquote_splicing_lit] = STATE(2002), - [sym_unquoting_lit] = STATE(2002), - [sym_defun] = STATE(2118), + [sym__form] = STATE(2095), + [sym_num_lit] = STATE(2095), + [sym_kwd_lit] = STATE(2095), + [sym_str_lit] = STATE(2095), + [sym_char_lit] = STATE(2095), + [sym_sym_lit] = STATE(2119), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(2095), + [sym__bare_list_lit] = STATE(1792), + [sym_vec_lit] = STATE(2095), + [sym_set_lit] = STATE(2095), + [sym__bare_set_lit] = STATE(1793), + [sym_read_cond_lit] = STATE(2095), + [sym_splicing_read_cond_lit] = STATE(2095), + [sym_var_quoting_lit] = STATE(2095), + [sym_quoting_lit] = STATE(2095), + [sym_syn_quoting_lit] = STATE(2095), + [sym_unquote_splicing_lit] = STATE(2095), + [sym_unquoting_lit] = STATE(2095), + [sym_defun] = STATE(1792), [sym_for_clause_word] = STATE(292), - [sym__for_part] = STATE(1212), - [sym_loop_macro] = STATE(2118), - [sym_path_lit] = STATE(2002), - [sym_package_lit] = STATE(2002), - [sym_include_reader_macro] = STATE(2002), - [sym_complex_num_lit] = STATE(2002), + [sym__for_part] = STATE(1250), + [sym_loop_macro] = STATE(1792), + [sym_path_lit] = STATE(2095), + [sym_package_lit] = STATE(2095), + [sym_include_reader_macro] = STATE(2095), + [sym_complex_num_lit] = STATE(2095), [aux_sym_dis_expr_repeat1] = STATE(13), - [aux_sym_list_lit_repeat1] = STATE(2029), - [aux_sym_for_clause_repeat1] = STATE(951), - [sym__ws] = ACTIONS(259), - [sym_comment] = ACTIONS(259), - [anon_sym_POUND_] = ACTIONS(261), - [anon_sym_POUND] = ACTIONS(263), - [anon_sym_DOT] = ACTIONS(265), - [aux_sym_num_lit_token1] = ACTIONS(267), - [anon_sym_COLON] = ACTIONS(269), - [anon_sym_COLON_COLON] = ACTIONS(271), - [anon_sym_DQUOTE] = ACTIONS(273), - [sym_nil_lit] = ACTIONS(265), - [aux_sym_sym_lit_token1] = ACTIONS(275), + [aux_sym_list_lit_repeat1] = STATE(2151), + [aux_sym_for_clause_repeat1] = STATE(954), + [sym__ws] = ACTIONS(270), + [sym_comment] = ACTIONS(270), + [anon_sym_POUND_] = ACTIONS(272), + [anon_sym_POUND] = ACTIONS(274), + [anon_sym_DOT] = ACTIONS(276), + [aux_sym_num_lit_token1] = ACTIONS(278), + [anon_sym_COLON] = ACTIONS(280), + [anon_sym_COLON_COLON] = ACTIONS(282), + [anon_sym_DQUOTE] = ACTIONS(284), + [sym_nil_lit] = ACTIONS(276), + [aux_sym_sym_lit_token1] = ACTIONS(286), [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(277), - [anon_sym_POUND0A] = ACTIONS(279), - [anon_sym_POUND0a] = ACTIONS(279), - [anon_sym_POUND_QMARK] = ACTIONS(281), - [anon_sym_POUND_QMARK_AT] = ACTIONS(283), - [anon_sym_POUND_SQUOTE] = ACTIONS(285), - [anon_sym_SQUOTE] = ACTIONS(287), - [anon_sym_BQUOTE] = ACTIONS(289), - [anon_sym_COMMA_AT] = ACTIONS(291), - [anon_sym_COMMA] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(288), + [anon_sym_POUND0A] = ACTIONS(290), + [anon_sym_POUND0a] = ACTIONS(290), + [anon_sym_POUND_QMARK] = ACTIONS(292), + [anon_sym_POUND_QMARK_AT] = ACTIONS(294), + [anon_sym_POUND_SQUOTE] = ACTIONS(296), + [anon_sym_SQUOTE] = ACTIONS(298), + [anon_sym_BQUOTE] = ACTIONS(300), + [anon_sym_COMMA_AT] = ACTIONS(302), + [anon_sym_COMMA] = ACTIONS(304), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(265), - [anon_sym_cl] = ACTIONS(295), - [anon_sym_in] = ACTIONS(297), - [anon_sym_across] = ACTIONS(297), - [anon_sym_being] = ACTIONS(297), - [anon_sym_using] = ACTIONS(297), - [aux_sym_for_clause_word_token1] = ACTIONS(299), - [anon_sym_below] = ACTIONS(297), - [anon_sym_above] = ACTIONS(297), - [anon_sym_from] = ACTIONS(297), - [anon_sym_to] = ACTIONS(297), - [anon_sym_upto] = ACTIONS(297), - [anon_sym_downto] = ACTIONS(297), - [anon_sym_downfrom] = ACTIONS(297), - [anon_sym_on] = ACTIONS(297), - [anon_sym_by] = ACTIONS(297), - [anon_sym_then] = ACTIONS(297), - [anon_sym_EQ] = ACTIONS(297), - [anon_sym_POUNDP] = ACTIONS(301), - [anon_sym_POUNDp] = ACTIONS(301), - [anon_sym_POUND_PLUS] = ACTIONS(303), - [anon_sym_POUND_DASH] = ACTIONS(303), - [anon_sym_POUNDC] = ACTIONS(305), - [anon_sym_POUNDc] = ACTIONS(305), + [sym_fancy_literal] = ACTIONS(276), + [anon_sym_cl] = ACTIONS(306), + [anon_sym_in] = ACTIONS(308), + [anon_sym_across] = ACTIONS(308), + [anon_sym_being] = ACTIONS(308), + [anon_sym_using] = ACTIONS(308), + [aux_sym_for_clause_word_token1] = ACTIONS(310), + [anon_sym_below] = ACTIONS(308), + [anon_sym_above] = ACTIONS(308), + [anon_sym_from] = ACTIONS(308), + [anon_sym_to] = ACTIONS(308), + [anon_sym_upto] = ACTIONS(308), + [anon_sym_downto] = ACTIONS(308), + [anon_sym_downfrom] = ACTIONS(308), + [anon_sym_on] = ACTIONS(308), + [anon_sym_by] = ACTIONS(308), + [anon_sym_then] = ACTIONS(308), + [anon_sym_EQ] = ACTIONS(308), + [anon_sym_POUNDP] = ACTIONS(312), + [anon_sym_POUNDp] = ACTIONS(312), + [sym_self_referential_reader_macro] = ACTIONS(314), + [anon_sym_POUND_PLUS] = ACTIONS(316), + [anon_sym_POUND_DASH] = ACTIONS(316), + [anon_sym_POUNDC] = ACTIONS(318), + [anon_sym_POUNDc] = ACTIONS(318), }, [8] = { - [sym__gap] = STATE(17), - [sym_dis_expr] = STATE(17), - [sym__form] = STATE(1999), - [sym_num_lit] = STATE(1999), - [sym_kwd_lit] = STATE(1999), - [sym_str_lit] = STATE(1999), - [sym_char_lit] = STATE(1999), - [sym_sym_lit] = STATE(2024), - [sym__metadata_lit] = STATE(2236), - [sym_meta_lit] = STATE(2222), - [sym_old_meta_lit] = STATE(2221), - [sym_list_lit] = STATE(1999), - [sym__bare_list_lit] = STATE(2118), - [sym_vec_lit] = STATE(1999), - [sym_set_lit] = STATE(1999), - [sym__bare_set_lit] = STATE(2119), - [sym_read_cond_lit] = STATE(1999), - [sym_splicing_read_cond_lit] = STATE(1999), - [sym_var_quoting_lit] = STATE(1999), - [sym_quoting_lit] = STATE(1999), - [sym_syn_quoting_lit] = STATE(1999), - [sym_unquote_splicing_lit] = STATE(1999), - [sym_unquoting_lit] = STATE(1999), - [sym_defun] = STATE(2118), + [sym__gap] = STATE(15), + [sym_dis_expr] = STATE(15), + [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(2119), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(2092), + [sym__bare_list_lit] = STATE(1792), + [sym_vec_lit] = STATE(2092), + [sym_set_lit] = STATE(2092), + [sym__bare_set_lit] = STATE(1793), + [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(1792), [sym_for_clause_word] = STATE(292), - [sym__for_part] = STATE(1212), - [sym_loop_macro] = STATE(2118), - [sym_path_lit] = STATE(1999), - [sym_package_lit] = STATE(1999), - [sym_include_reader_macro] = STATE(1999), - [sym_complex_num_lit] = STATE(1999), - [aux_sym_dis_expr_repeat1] = STATE(17), - [aux_sym_list_lit_repeat1] = STATE(2029), + [sym__for_part] = STATE(1250), + [sym_loop_macro] = STATE(1792), + [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(15), + [aux_sym_list_lit_repeat1] = STATE(2151), [aux_sym_for_clause_repeat1] = STATE(942), - [sym__ws] = ACTIONS(307), - [sym_comment] = ACTIONS(307), - [anon_sym_POUND_] = ACTIONS(261), - [anon_sym_POUND] = ACTIONS(263), - [anon_sym_DOT] = ACTIONS(309), - [aux_sym_num_lit_token1] = ACTIONS(267), - [anon_sym_COLON] = ACTIONS(269), - [anon_sym_COLON_COLON] = ACTIONS(271), - [anon_sym_DQUOTE] = ACTIONS(273), - [sym_nil_lit] = ACTIONS(309), - [aux_sym_sym_lit_token1] = ACTIONS(275), + [sym__ws] = ACTIONS(320), + [sym_comment] = ACTIONS(320), + [anon_sym_POUND_] = ACTIONS(272), + [anon_sym_POUND] = ACTIONS(274), + [anon_sym_DOT] = ACTIONS(322), + [aux_sym_num_lit_token1] = ACTIONS(278), + [anon_sym_COLON] = ACTIONS(280), + [anon_sym_COLON_COLON] = ACTIONS(282), + [anon_sym_DQUOTE] = ACTIONS(284), + [sym_nil_lit] = ACTIONS(322), + [aux_sym_sym_lit_token1] = ACTIONS(286), [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(277), - [anon_sym_POUND0A] = ACTIONS(279), - [anon_sym_POUND0a] = ACTIONS(279), - [anon_sym_POUND_QMARK] = ACTIONS(281), - [anon_sym_POUND_QMARK_AT] = ACTIONS(283), - [anon_sym_POUND_SQUOTE] = ACTIONS(285), - [anon_sym_SQUOTE] = ACTIONS(287), - [anon_sym_BQUOTE] = ACTIONS(289), - [anon_sym_COMMA_AT] = ACTIONS(291), - [anon_sym_COMMA] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(288), + [anon_sym_POUND0A] = ACTIONS(290), + [anon_sym_POUND0a] = ACTIONS(290), + [anon_sym_POUND_QMARK] = ACTIONS(292), + [anon_sym_POUND_QMARK_AT] = ACTIONS(294), + [anon_sym_POUND_SQUOTE] = ACTIONS(296), + [anon_sym_SQUOTE] = ACTIONS(298), + [anon_sym_BQUOTE] = ACTIONS(300), + [anon_sym_COMMA_AT] = ACTIONS(302), + [anon_sym_COMMA] = ACTIONS(304), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(309), - [anon_sym_cl] = ACTIONS(295), - [anon_sym_in] = ACTIONS(297), - [anon_sym_across] = ACTIONS(297), - [anon_sym_being] = ACTIONS(297), - [anon_sym_using] = ACTIONS(297), - [aux_sym_for_clause_word_token1] = ACTIONS(299), - [anon_sym_below] = ACTIONS(297), - [anon_sym_above] = ACTIONS(297), - [anon_sym_from] = ACTIONS(297), - [anon_sym_to] = ACTIONS(297), - [anon_sym_upto] = ACTIONS(297), - [anon_sym_downto] = ACTIONS(297), - [anon_sym_downfrom] = ACTIONS(297), - [anon_sym_on] = ACTIONS(297), - [anon_sym_by] = ACTIONS(297), - [anon_sym_then] = ACTIONS(297), - [anon_sym_EQ] = ACTIONS(297), - [anon_sym_POUNDP] = ACTIONS(301), - [anon_sym_POUNDp] = ACTIONS(301), - [anon_sym_POUND_PLUS] = ACTIONS(303), - [anon_sym_POUND_DASH] = ACTIONS(303), - [anon_sym_POUNDC] = ACTIONS(305), - [anon_sym_POUNDc] = ACTIONS(305), + [sym_fancy_literal] = ACTIONS(322), + [anon_sym_cl] = ACTIONS(306), + [anon_sym_in] = ACTIONS(308), + [anon_sym_across] = ACTIONS(308), + [anon_sym_being] = ACTIONS(308), + [anon_sym_using] = ACTIONS(308), + [aux_sym_for_clause_word_token1] = ACTIONS(310), + [anon_sym_below] = ACTIONS(308), + [anon_sym_above] = ACTIONS(308), + [anon_sym_from] = ACTIONS(308), + [anon_sym_to] = ACTIONS(308), + [anon_sym_upto] = ACTIONS(308), + [anon_sym_downto] = ACTIONS(308), + [anon_sym_downfrom] = ACTIONS(308), + [anon_sym_on] = ACTIONS(308), + [anon_sym_by] = ACTIONS(308), + [anon_sym_then] = ACTIONS(308), + [anon_sym_EQ] = ACTIONS(308), + [anon_sym_POUNDP] = ACTIONS(312), + [anon_sym_POUNDp] = ACTIONS(312), + [sym_self_referential_reader_macro] = ACTIONS(324), + [anon_sym_POUND_PLUS] = ACTIONS(316), + [anon_sym_POUND_DASH] = ACTIONS(316), + [anon_sym_POUNDC] = ACTIONS(318), + [anon_sym_POUNDc] = ACTIONS(318), }, [9] = { - [sym__gap] = STATE(15), - [sym_dis_expr] = STATE(15), - [sym__form] = STATE(2001), - [sym_num_lit] = STATE(2001), - [sym_kwd_lit] = STATE(2001), - [sym_str_lit] = STATE(2001), - [sym_char_lit] = STATE(2001), - [sym_sym_lit] = STATE(2024), - [sym__metadata_lit] = STATE(2236), - [sym_meta_lit] = STATE(2222), - [sym_old_meta_lit] = STATE(2221), - [sym_list_lit] = STATE(2001), - [sym__bare_list_lit] = STATE(2118), - [sym_vec_lit] = STATE(2001), - [sym_set_lit] = STATE(2001), - [sym__bare_set_lit] = STATE(2119), - [sym_read_cond_lit] = STATE(2001), - [sym_splicing_read_cond_lit] = STATE(2001), - [sym_var_quoting_lit] = STATE(2001), - [sym_quoting_lit] = STATE(2001), - [sym_syn_quoting_lit] = STATE(2001), - [sym_unquote_splicing_lit] = STATE(2001), - [sym_unquoting_lit] = STATE(2001), - [sym_defun] = STATE(2118), + [sym__gap] = STATE(18), + [sym_dis_expr] = STATE(18), + [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(2119), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(2093), + [sym__bare_list_lit] = STATE(1792), + [sym_vec_lit] = STATE(2093), + [sym_set_lit] = STATE(2093), + [sym__bare_set_lit] = STATE(1793), + [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(1792), [sym_for_clause_word] = STATE(292), - [sym__for_part] = STATE(1212), - [sym_loop_macro] = STATE(2118), - [sym_path_lit] = STATE(2001), - [sym_package_lit] = STATE(2001), - [sym_include_reader_macro] = STATE(2001), - [sym_complex_num_lit] = STATE(2001), - [aux_sym_dis_expr_repeat1] = STATE(15), - [aux_sym_list_lit_repeat1] = STATE(2029), - [aux_sym_for_clause_repeat1] = STATE(954), - [sym__ws] = ACTIONS(311), - [sym_comment] = ACTIONS(311), - [anon_sym_POUND_] = ACTIONS(261), - [anon_sym_POUND] = ACTIONS(263), - [anon_sym_DOT] = ACTIONS(313), - [aux_sym_num_lit_token1] = ACTIONS(267), - [anon_sym_COLON] = ACTIONS(269), - [anon_sym_COLON_COLON] = ACTIONS(271), - [anon_sym_DQUOTE] = ACTIONS(273), - [sym_nil_lit] = ACTIONS(313), - [aux_sym_sym_lit_token1] = ACTIONS(275), + [sym__for_part] = STATE(1250), + [sym_loop_macro] = STATE(1792), + [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(18), + [aux_sym_list_lit_repeat1] = STATE(2151), + [aux_sym_for_clause_repeat1] = STATE(943), + [sym__ws] = ACTIONS(326), + [sym_comment] = ACTIONS(326), + [anon_sym_POUND_] = ACTIONS(272), + [anon_sym_POUND] = ACTIONS(274), + [anon_sym_DOT] = ACTIONS(328), + [aux_sym_num_lit_token1] = ACTIONS(278), + [anon_sym_COLON] = ACTIONS(280), + [anon_sym_COLON_COLON] = ACTIONS(282), + [anon_sym_DQUOTE] = ACTIONS(284), + [sym_nil_lit] = ACTIONS(328), + [aux_sym_sym_lit_token1] = ACTIONS(286), [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(277), - [anon_sym_POUND0A] = ACTIONS(279), - [anon_sym_POUND0a] = ACTIONS(279), - [anon_sym_POUND_QMARK] = ACTIONS(281), - [anon_sym_POUND_QMARK_AT] = ACTIONS(283), - [anon_sym_POUND_SQUOTE] = ACTIONS(285), - [anon_sym_SQUOTE] = ACTIONS(287), - [anon_sym_BQUOTE] = ACTIONS(289), - [anon_sym_COMMA_AT] = ACTIONS(291), - [anon_sym_COMMA] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(288), + [anon_sym_POUND0A] = ACTIONS(290), + [anon_sym_POUND0a] = ACTIONS(290), + [anon_sym_POUND_QMARK] = ACTIONS(292), + [anon_sym_POUND_QMARK_AT] = ACTIONS(294), + [anon_sym_POUND_SQUOTE] = ACTIONS(296), + [anon_sym_SQUOTE] = ACTIONS(298), + [anon_sym_BQUOTE] = ACTIONS(300), + [anon_sym_COMMA_AT] = ACTIONS(302), + [anon_sym_COMMA] = ACTIONS(304), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(313), - [anon_sym_cl] = ACTIONS(295), - [anon_sym_in] = ACTIONS(297), - [anon_sym_across] = ACTIONS(297), - [anon_sym_being] = ACTIONS(297), - [anon_sym_using] = ACTIONS(297), - [aux_sym_for_clause_word_token1] = ACTIONS(299), - [anon_sym_below] = ACTIONS(297), - [anon_sym_above] = ACTIONS(297), - [anon_sym_from] = ACTIONS(297), - [anon_sym_to] = ACTIONS(297), - [anon_sym_upto] = ACTIONS(297), - [anon_sym_downto] = ACTIONS(297), - [anon_sym_downfrom] = ACTIONS(297), - [anon_sym_on] = ACTIONS(297), - [anon_sym_by] = ACTIONS(297), - [anon_sym_then] = ACTIONS(297), - [anon_sym_EQ] = ACTIONS(297), - [anon_sym_POUNDP] = ACTIONS(301), - [anon_sym_POUNDp] = ACTIONS(301), - [anon_sym_POUND_PLUS] = ACTIONS(303), - [anon_sym_POUND_DASH] = ACTIONS(303), - [anon_sym_POUNDC] = ACTIONS(305), - [anon_sym_POUNDc] = ACTIONS(305), + [sym_fancy_literal] = ACTIONS(328), + [anon_sym_cl] = ACTIONS(306), + [anon_sym_in] = ACTIONS(308), + [anon_sym_across] = ACTIONS(308), + [anon_sym_being] = ACTIONS(308), + [anon_sym_using] = ACTIONS(308), + [aux_sym_for_clause_word_token1] = ACTIONS(310), + [anon_sym_below] = ACTIONS(308), + [anon_sym_above] = ACTIONS(308), + [anon_sym_from] = ACTIONS(308), + [anon_sym_to] = ACTIONS(308), + [anon_sym_upto] = ACTIONS(308), + [anon_sym_downto] = ACTIONS(308), + [anon_sym_downfrom] = ACTIONS(308), + [anon_sym_on] = ACTIONS(308), + [anon_sym_by] = ACTIONS(308), + [anon_sym_then] = ACTIONS(308), + [anon_sym_EQ] = ACTIONS(308), + [anon_sym_POUNDP] = ACTIONS(312), + [anon_sym_POUNDp] = ACTIONS(312), + [sym_self_referential_reader_macro] = ACTIONS(330), + [anon_sym_POUND_PLUS] = ACTIONS(316), + [anon_sym_POUND_DASH] = ACTIONS(316), + [anon_sym_POUNDC] = ACTIONS(318), + [anon_sym_POUNDc] = ACTIONS(318), }, [10] = { [sym__gap] = STATE(16), [sym_dis_expr] = STATE(16), - [sym__form] = STATE(1996), - [sym_num_lit] = STATE(1996), - [sym_kwd_lit] = STATE(1996), - [sym_str_lit] = STATE(1996), - [sym_char_lit] = STATE(1996), - [sym_sym_lit] = STATE(2024), - [sym__metadata_lit] = STATE(2236), - [sym_meta_lit] = STATE(2222), - [sym_old_meta_lit] = STATE(2221), - [sym_list_lit] = STATE(1996), - [sym__bare_list_lit] = STATE(2118), - [sym_vec_lit] = STATE(1996), - [sym_set_lit] = STATE(1996), - [sym__bare_set_lit] = STATE(2119), - [sym_read_cond_lit] = STATE(1996), - [sym_splicing_read_cond_lit] = STATE(1996), - [sym_var_quoting_lit] = STATE(1996), - [sym_quoting_lit] = STATE(1996), - [sym_syn_quoting_lit] = STATE(1996), - [sym_unquote_splicing_lit] = STATE(1996), - [sym_unquoting_lit] = STATE(1996), - [sym_defun] = STATE(2118), + [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(2119), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(2097), + [sym__bare_list_lit] = STATE(1792), + [sym_vec_lit] = STATE(2097), + [sym_set_lit] = STATE(2097), + [sym__bare_set_lit] = STATE(1793), + [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(1792), [sym_for_clause_word] = STATE(292), - [sym__for_part] = STATE(1212), - [sym_loop_macro] = STATE(2118), - [sym_path_lit] = STATE(1996), - [sym_package_lit] = STATE(1996), - [sym_include_reader_macro] = STATE(1996), - [sym_complex_num_lit] = STATE(1996), + [sym__for_part] = STATE(1250), + [sym_loop_macro] = STATE(1792), + [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(16), - [aux_sym_list_lit_repeat1] = STATE(2029), - [aux_sym_for_clause_repeat1] = STATE(959), - [sym__ws] = ACTIONS(315), - [sym_comment] = ACTIONS(315), - [anon_sym_POUND_] = ACTIONS(261), - [anon_sym_POUND] = ACTIONS(263), - [anon_sym_DOT] = ACTIONS(317), - [aux_sym_num_lit_token1] = ACTIONS(267), - [anon_sym_COLON] = ACTIONS(269), - [anon_sym_COLON_COLON] = ACTIONS(271), - [anon_sym_DQUOTE] = ACTIONS(273), - [sym_nil_lit] = ACTIONS(317), - [aux_sym_sym_lit_token1] = ACTIONS(275), + [aux_sym_list_lit_repeat1] = STATE(2151), + [aux_sym_for_clause_repeat1] = STATE(951), + [sym__ws] = ACTIONS(332), + [sym_comment] = ACTIONS(332), + [anon_sym_POUND_] = ACTIONS(272), + [anon_sym_POUND] = ACTIONS(274), + [anon_sym_DOT] = ACTIONS(334), + [aux_sym_num_lit_token1] = ACTIONS(278), + [anon_sym_COLON] = ACTIONS(280), + [anon_sym_COLON_COLON] = ACTIONS(282), + [anon_sym_DQUOTE] = ACTIONS(284), + [sym_nil_lit] = ACTIONS(334), + [aux_sym_sym_lit_token1] = ACTIONS(286), [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(277), - [anon_sym_POUND0A] = ACTIONS(279), - [anon_sym_POUND0a] = ACTIONS(279), - [anon_sym_POUND_QMARK] = ACTIONS(281), - [anon_sym_POUND_QMARK_AT] = ACTIONS(283), - [anon_sym_POUND_SQUOTE] = ACTIONS(285), - [anon_sym_SQUOTE] = ACTIONS(287), - [anon_sym_BQUOTE] = ACTIONS(289), - [anon_sym_COMMA_AT] = ACTIONS(291), - [anon_sym_COMMA] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(288), + [anon_sym_POUND0A] = ACTIONS(290), + [anon_sym_POUND0a] = ACTIONS(290), + [anon_sym_POUND_QMARK] = ACTIONS(292), + [anon_sym_POUND_QMARK_AT] = ACTIONS(294), + [anon_sym_POUND_SQUOTE] = ACTIONS(296), + [anon_sym_SQUOTE] = ACTIONS(298), + [anon_sym_BQUOTE] = ACTIONS(300), + [anon_sym_COMMA_AT] = ACTIONS(302), + [anon_sym_COMMA] = ACTIONS(304), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(317), - [anon_sym_cl] = ACTIONS(295), - [anon_sym_in] = ACTIONS(297), - [anon_sym_across] = ACTIONS(297), - [anon_sym_being] = ACTIONS(297), - [anon_sym_using] = ACTIONS(297), - [aux_sym_for_clause_word_token1] = ACTIONS(299), - [anon_sym_below] = ACTIONS(297), - [anon_sym_above] = ACTIONS(297), - [anon_sym_from] = ACTIONS(297), - [anon_sym_to] = ACTIONS(297), - [anon_sym_upto] = ACTIONS(297), - [anon_sym_downto] = ACTIONS(297), - [anon_sym_downfrom] = ACTIONS(297), - [anon_sym_on] = ACTIONS(297), - [anon_sym_by] = ACTIONS(297), - [anon_sym_then] = ACTIONS(297), - [anon_sym_EQ] = ACTIONS(297), - [anon_sym_POUNDP] = ACTIONS(301), - [anon_sym_POUNDp] = ACTIONS(301), - [anon_sym_POUND_PLUS] = ACTIONS(303), - [anon_sym_POUND_DASH] = ACTIONS(303), - [anon_sym_POUNDC] = ACTIONS(305), - [anon_sym_POUNDc] = ACTIONS(305), + [sym_fancy_literal] = ACTIONS(334), + [anon_sym_cl] = ACTIONS(306), + [anon_sym_in] = ACTIONS(308), + [anon_sym_across] = ACTIONS(308), + [anon_sym_being] = ACTIONS(308), + [anon_sym_using] = ACTIONS(308), + [aux_sym_for_clause_word_token1] = ACTIONS(310), + [anon_sym_below] = ACTIONS(308), + [anon_sym_above] = ACTIONS(308), + [anon_sym_from] = ACTIONS(308), + [anon_sym_to] = ACTIONS(308), + [anon_sym_upto] = ACTIONS(308), + [anon_sym_downto] = ACTIONS(308), + [anon_sym_downfrom] = ACTIONS(308), + [anon_sym_on] = ACTIONS(308), + [anon_sym_by] = ACTIONS(308), + [anon_sym_then] = ACTIONS(308), + [anon_sym_EQ] = ACTIONS(308), + [anon_sym_POUNDP] = ACTIONS(312), + [anon_sym_POUNDp] = ACTIONS(312), + [sym_self_referential_reader_macro] = ACTIONS(336), + [anon_sym_POUND_PLUS] = ACTIONS(316), + [anon_sym_POUND_DASH] = ACTIONS(316), + [anon_sym_POUNDC] = ACTIONS(318), + [anon_sym_POUNDc] = ACTIONS(318), }, [11] = { - [sym__gap] = STATE(14), - [sym_dis_expr] = STATE(14), - [sym__form] = STATE(2006), - [sym_num_lit] = STATE(2006), - [sym_kwd_lit] = STATE(2006), - [sym_str_lit] = STATE(2006), - [sym_char_lit] = STATE(2006), - [sym_sym_lit] = STATE(2024), - [sym__metadata_lit] = STATE(2236), - [sym_meta_lit] = STATE(2222), - [sym_old_meta_lit] = STATE(2221), - [sym_list_lit] = STATE(2006), - [sym__bare_list_lit] = STATE(2118), - [sym_vec_lit] = STATE(2006), - [sym_set_lit] = STATE(2006), - [sym__bare_set_lit] = STATE(2119), - [sym_read_cond_lit] = STATE(2006), - [sym_splicing_read_cond_lit] = STATE(2006), - [sym_var_quoting_lit] = STATE(2006), - [sym_quoting_lit] = STATE(2006), - [sym_syn_quoting_lit] = STATE(2006), - [sym_unquote_splicing_lit] = STATE(2006), - [sym_unquoting_lit] = STATE(2006), - [sym_defun] = STATE(2118), + [sym__gap] = STATE(17), + [sym_dis_expr] = STATE(17), + [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(2119), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(2094), + [sym__bare_list_lit] = STATE(1792), + [sym_vec_lit] = STATE(2094), + [sym_set_lit] = STATE(2094), + [sym__bare_set_lit] = STATE(1793), + [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(1792), [sym_for_clause_word] = STATE(292), - [sym__for_part] = STATE(1212), - [sym_loop_macro] = STATE(2118), - [sym_path_lit] = STATE(2006), - [sym_package_lit] = STATE(2006), - [sym_include_reader_macro] = STATE(2006), - [sym_complex_num_lit] = STATE(2006), - [aux_sym_dis_expr_repeat1] = STATE(14), - [aux_sym_list_lit_repeat1] = STATE(2029), - [aux_sym_for_clause_repeat1] = STATE(947), - [sym__ws] = ACTIONS(319), - [sym_comment] = ACTIONS(319), - [anon_sym_POUND_] = ACTIONS(261), - [anon_sym_POUND] = ACTIONS(263), - [anon_sym_DOT] = ACTIONS(321), - [aux_sym_num_lit_token1] = ACTIONS(267), - [anon_sym_COLON] = ACTIONS(269), - [anon_sym_COLON_COLON] = ACTIONS(271), - [anon_sym_DQUOTE] = ACTIONS(273), - [sym_nil_lit] = ACTIONS(321), - [aux_sym_sym_lit_token1] = ACTIONS(275), + [sym__for_part] = STATE(1250), + [sym_loop_macro] = STATE(1792), + [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(17), + [aux_sym_list_lit_repeat1] = STATE(2151), + [aux_sym_for_clause_repeat1] = STATE(957), + [sym__ws] = ACTIONS(338), + [sym_comment] = ACTIONS(338), + [anon_sym_POUND_] = ACTIONS(272), + [anon_sym_POUND] = ACTIONS(274), + [anon_sym_DOT] = ACTIONS(340), + [aux_sym_num_lit_token1] = ACTIONS(278), + [anon_sym_COLON] = ACTIONS(280), + [anon_sym_COLON_COLON] = ACTIONS(282), + [anon_sym_DQUOTE] = ACTIONS(284), + [sym_nil_lit] = ACTIONS(340), + [aux_sym_sym_lit_token1] = ACTIONS(286), [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(277), - [anon_sym_POUND0A] = ACTIONS(279), - [anon_sym_POUND0a] = ACTIONS(279), - [anon_sym_POUND_QMARK] = ACTIONS(281), - [anon_sym_POUND_QMARK_AT] = ACTIONS(283), - [anon_sym_POUND_SQUOTE] = ACTIONS(285), - [anon_sym_SQUOTE] = ACTIONS(287), - [anon_sym_BQUOTE] = ACTIONS(289), - [anon_sym_COMMA_AT] = ACTIONS(291), - [anon_sym_COMMA] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(288), + [anon_sym_POUND0A] = ACTIONS(290), + [anon_sym_POUND0a] = ACTIONS(290), + [anon_sym_POUND_QMARK] = ACTIONS(292), + [anon_sym_POUND_QMARK_AT] = ACTIONS(294), + [anon_sym_POUND_SQUOTE] = ACTIONS(296), + [anon_sym_SQUOTE] = ACTIONS(298), + [anon_sym_BQUOTE] = ACTIONS(300), + [anon_sym_COMMA_AT] = ACTIONS(302), + [anon_sym_COMMA] = ACTIONS(304), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(321), - [anon_sym_cl] = ACTIONS(295), - [anon_sym_in] = ACTIONS(297), - [anon_sym_across] = ACTIONS(297), - [anon_sym_being] = ACTIONS(297), - [anon_sym_using] = ACTIONS(297), - [aux_sym_for_clause_word_token1] = ACTIONS(299), - [anon_sym_below] = ACTIONS(297), - [anon_sym_above] = ACTIONS(297), - [anon_sym_from] = ACTIONS(297), - [anon_sym_to] = ACTIONS(297), - [anon_sym_upto] = ACTIONS(297), - [anon_sym_downto] = ACTIONS(297), - [anon_sym_downfrom] = ACTIONS(297), - [anon_sym_on] = ACTIONS(297), - [anon_sym_by] = ACTIONS(297), - [anon_sym_then] = ACTIONS(297), - [anon_sym_EQ] = ACTIONS(297), - [anon_sym_POUNDP] = ACTIONS(301), - [anon_sym_POUNDp] = ACTIONS(301), - [anon_sym_POUND_PLUS] = ACTIONS(303), - [anon_sym_POUND_DASH] = ACTIONS(303), - [anon_sym_POUNDC] = ACTIONS(305), - [anon_sym_POUNDc] = ACTIONS(305), + [sym_fancy_literal] = ACTIONS(340), + [anon_sym_cl] = ACTIONS(306), + [anon_sym_in] = ACTIONS(308), + [anon_sym_across] = ACTIONS(308), + [anon_sym_being] = ACTIONS(308), + [anon_sym_using] = ACTIONS(308), + [aux_sym_for_clause_word_token1] = ACTIONS(310), + [anon_sym_below] = ACTIONS(308), + [anon_sym_above] = ACTIONS(308), + [anon_sym_from] = ACTIONS(308), + [anon_sym_to] = ACTIONS(308), + [anon_sym_upto] = ACTIONS(308), + [anon_sym_downto] = ACTIONS(308), + [anon_sym_downfrom] = ACTIONS(308), + [anon_sym_on] = ACTIONS(308), + [anon_sym_by] = ACTIONS(308), + [anon_sym_then] = ACTIONS(308), + [anon_sym_EQ] = ACTIONS(308), + [anon_sym_POUNDP] = ACTIONS(312), + [anon_sym_POUNDp] = ACTIONS(312), + [sym_self_referential_reader_macro] = ACTIONS(342), + [anon_sym_POUND_PLUS] = ACTIONS(316), + [anon_sym_POUND_DASH] = ACTIONS(316), + [anon_sym_POUNDC] = ACTIONS(318), + [anon_sym_POUNDc] = ACTIONS(318), }, [12] = { - [sym__gap] = STATE(18), - [sym_dis_expr] = STATE(18), - [sym__form] = STATE(2007), - [sym_num_lit] = STATE(2007), - [sym_kwd_lit] = STATE(2007), - [sym_str_lit] = STATE(2007), - [sym_char_lit] = STATE(2007), - [sym_sym_lit] = STATE(2024), - [sym__metadata_lit] = STATE(2236), - [sym_meta_lit] = STATE(2222), - [sym_old_meta_lit] = STATE(2221), - [sym_list_lit] = STATE(2007), - [sym__bare_list_lit] = STATE(2118), - [sym_vec_lit] = STATE(2007), - [sym_set_lit] = STATE(2007), - [sym__bare_set_lit] = STATE(2119), - [sym_read_cond_lit] = STATE(2007), - [sym_splicing_read_cond_lit] = STATE(2007), - [sym_var_quoting_lit] = STATE(2007), - [sym_quoting_lit] = STATE(2007), - [sym_syn_quoting_lit] = STATE(2007), - [sym_unquote_splicing_lit] = STATE(2007), - [sym_unquoting_lit] = STATE(2007), - [sym_defun] = STATE(2118), + [sym__gap] = STATE(14), + [sym_dis_expr] = STATE(14), + [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(2119), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(2100), + [sym__bare_list_lit] = STATE(1792), + [sym_vec_lit] = STATE(2100), + [sym_set_lit] = STATE(2100), + [sym__bare_set_lit] = STATE(1793), + [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(1792), [sym_for_clause_word] = STATE(292), - [sym__for_part] = STATE(1212), - [sym_loop_macro] = STATE(2118), - [sym_path_lit] = STATE(2007), - [sym_package_lit] = STATE(2007), - [sym_include_reader_macro] = STATE(2007), - [sym_complex_num_lit] = STATE(2007), - [aux_sym_dis_expr_repeat1] = STATE(18), - [aux_sym_list_lit_repeat1] = STATE(2029), - [aux_sym_for_clause_repeat1] = STATE(948), - [sym__ws] = ACTIONS(323), - [sym_comment] = ACTIONS(323), - [anon_sym_POUND_] = ACTIONS(261), - [anon_sym_POUND] = ACTIONS(263), - [anon_sym_DOT] = ACTIONS(325), - [aux_sym_num_lit_token1] = ACTIONS(267), - [anon_sym_COLON] = ACTIONS(269), - [anon_sym_COLON_COLON] = ACTIONS(271), - [anon_sym_DQUOTE] = ACTIONS(273), - [sym_nil_lit] = ACTIONS(325), - [aux_sym_sym_lit_token1] = ACTIONS(275), + [sym__for_part] = STATE(1250), + [sym_loop_macro] = STATE(1792), + [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(14), + [aux_sym_list_lit_repeat1] = STATE(2151), + [aux_sym_for_clause_repeat1] = STATE(941), + [sym__ws] = ACTIONS(344), + [sym_comment] = ACTIONS(344), + [anon_sym_POUND_] = ACTIONS(272), + [anon_sym_POUND] = ACTIONS(274), + [anon_sym_DOT] = ACTIONS(346), + [aux_sym_num_lit_token1] = ACTIONS(278), + [anon_sym_COLON] = ACTIONS(280), + [anon_sym_COLON_COLON] = ACTIONS(282), + [anon_sym_DQUOTE] = ACTIONS(284), + [sym_nil_lit] = ACTIONS(346), + [aux_sym_sym_lit_token1] = ACTIONS(286), [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(277), - [anon_sym_POUND0A] = ACTIONS(279), - [anon_sym_POUND0a] = ACTIONS(279), - [anon_sym_POUND_QMARK] = ACTIONS(281), - [anon_sym_POUND_QMARK_AT] = ACTIONS(283), - [anon_sym_POUND_SQUOTE] = ACTIONS(285), - [anon_sym_SQUOTE] = ACTIONS(287), - [anon_sym_BQUOTE] = ACTIONS(289), - [anon_sym_COMMA_AT] = ACTIONS(291), - [anon_sym_COMMA] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(288), + [anon_sym_POUND0A] = ACTIONS(290), + [anon_sym_POUND0a] = ACTIONS(290), + [anon_sym_POUND_QMARK] = ACTIONS(292), + [anon_sym_POUND_QMARK_AT] = ACTIONS(294), + [anon_sym_POUND_SQUOTE] = ACTIONS(296), + [anon_sym_SQUOTE] = ACTIONS(298), + [anon_sym_BQUOTE] = ACTIONS(300), + [anon_sym_COMMA_AT] = ACTIONS(302), + [anon_sym_COMMA] = ACTIONS(304), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(325), - [anon_sym_cl] = ACTIONS(295), - [anon_sym_in] = ACTIONS(297), - [anon_sym_across] = ACTIONS(297), - [anon_sym_being] = ACTIONS(297), - [anon_sym_using] = ACTIONS(297), - [aux_sym_for_clause_word_token1] = ACTIONS(299), - [anon_sym_below] = ACTIONS(297), - [anon_sym_above] = ACTIONS(297), - [anon_sym_from] = ACTIONS(297), - [anon_sym_to] = ACTIONS(297), - [anon_sym_upto] = ACTIONS(297), - [anon_sym_downto] = ACTIONS(297), - [anon_sym_downfrom] = ACTIONS(297), - [anon_sym_on] = ACTIONS(297), - [anon_sym_by] = ACTIONS(297), - [anon_sym_then] = ACTIONS(297), - [anon_sym_EQ] = ACTIONS(297), - [anon_sym_POUNDP] = ACTIONS(301), - [anon_sym_POUNDp] = ACTIONS(301), - [anon_sym_POUND_PLUS] = ACTIONS(303), - [anon_sym_POUND_DASH] = ACTIONS(303), - [anon_sym_POUNDC] = ACTIONS(305), - [anon_sym_POUNDc] = ACTIONS(305), + [sym_fancy_literal] = ACTIONS(346), + [anon_sym_cl] = ACTIONS(306), + [anon_sym_in] = ACTIONS(308), + [anon_sym_across] = ACTIONS(308), + [anon_sym_being] = ACTIONS(308), + [anon_sym_using] = ACTIONS(308), + [aux_sym_for_clause_word_token1] = ACTIONS(310), + [anon_sym_below] = ACTIONS(308), + [anon_sym_above] = ACTIONS(308), + [anon_sym_from] = ACTIONS(308), + [anon_sym_to] = ACTIONS(308), + [anon_sym_upto] = ACTIONS(308), + [anon_sym_downto] = ACTIONS(308), + [anon_sym_downfrom] = ACTIONS(308), + [anon_sym_on] = ACTIONS(308), + [anon_sym_by] = ACTIONS(308), + [anon_sym_then] = ACTIONS(308), + [anon_sym_EQ] = ACTIONS(308), + [anon_sym_POUNDP] = ACTIONS(312), + [anon_sym_POUNDp] = ACTIONS(312), + [sym_self_referential_reader_macro] = ACTIONS(348), + [anon_sym_POUND_PLUS] = ACTIONS(316), + [anon_sym_POUND_DASH] = ACTIONS(316), + [anon_sym_POUNDC] = ACTIONS(318), + [anon_sym_POUNDc] = ACTIONS(318), }, [13] = { [sym__gap] = STATE(940), [sym_dis_expr] = STATE(940), - [sym__form] = STATE(2004), - [sym_num_lit] = STATE(2004), - [sym_kwd_lit] = STATE(2004), - [sym_str_lit] = STATE(2004), - [sym_char_lit] = STATE(2004), - [sym_sym_lit] = STATE(2024), - [sym__metadata_lit] = STATE(2236), - [sym_meta_lit] = STATE(2222), - [sym_old_meta_lit] = STATE(2221), - [sym_list_lit] = STATE(2004), - [sym__bare_list_lit] = STATE(2118), - [sym_vec_lit] = STATE(2004), - [sym_set_lit] = STATE(2004), - [sym__bare_set_lit] = STATE(2119), - [sym_read_cond_lit] = STATE(2004), - [sym_splicing_read_cond_lit] = STATE(2004), - [sym_var_quoting_lit] = STATE(2004), - [sym_quoting_lit] = STATE(2004), - [sym_syn_quoting_lit] = STATE(2004), - [sym_unquote_splicing_lit] = STATE(2004), - [sym_unquoting_lit] = STATE(2004), - [sym_defun] = STATE(2118), + [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(2119), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(2096), + [sym__bare_list_lit] = STATE(1792), + [sym_vec_lit] = STATE(2096), + [sym_set_lit] = STATE(2096), + [sym__bare_set_lit] = STATE(1793), + [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(1792), [sym_for_clause_word] = STATE(382), - [sym_loop_macro] = STATE(2118), - [sym_path_lit] = STATE(2004), - [sym_package_lit] = STATE(2004), - [sym_include_reader_macro] = STATE(2004), - [sym_complex_num_lit] = STATE(2004), + [sym_loop_macro] = STATE(1792), + [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(940), - [aux_sym_list_lit_repeat1] = STATE(2029), - [sym__ws] = ACTIONS(327), - [sym_comment] = ACTIONS(327), - [anon_sym_POUND_] = ACTIONS(261), - [anon_sym_POUND] = ACTIONS(263), - [anon_sym_DOT] = ACTIONS(329), - [aux_sym_num_lit_token1] = ACTIONS(267), - [anon_sym_COLON] = ACTIONS(269), - [anon_sym_COLON_COLON] = ACTIONS(271), - [anon_sym_DQUOTE] = ACTIONS(273), - [sym_nil_lit] = ACTIONS(329), - [aux_sym_sym_lit_token1] = ACTIONS(275), + [aux_sym_list_lit_repeat1] = STATE(2151), + [sym__ws] = ACTIONS(350), + [sym_comment] = ACTIONS(350), + [anon_sym_POUND_] = ACTIONS(272), + [anon_sym_POUND] = ACTIONS(274), + [anon_sym_DOT] = ACTIONS(352), + [aux_sym_num_lit_token1] = ACTIONS(278), + [anon_sym_COLON] = ACTIONS(280), + [anon_sym_COLON_COLON] = ACTIONS(282), + [anon_sym_DQUOTE] = ACTIONS(284), + [sym_nil_lit] = ACTIONS(352), + [aux_sym_sym_lit_token1] = ACTIONS(286), [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(277), - [anon_sym_POUND0A] = ACTIONS(279), - [anon_sym_POUND0a] = ACTIONS(279), - [anon_sym_POUND_QMARK] = ACTIONS(281), - [anon_sym_POUND_QMARK_AT] = ACTIONS(283), - [anon_sym_POUND_SQUOTE] = ACTIONS(285), - [anon_sym_SQUOTE] = ACTIONS(287), - [anon_sym_BQUOTE] = ACTIONS(289), - [anon_sym_COMMA_AT] = ACTIONS(291), - [anon_sym_COMMA] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(288), + [anon_sym_POUND0A] = ACTIONS(290), + [anon_sym_POUND0a] = ACTIONS(290), + [anon_sym_POUND_QMARK] = ACTIONS(292), + [anon_sym_POUND_QMARK_AT] = ACTIONS(294), + [anon_sym_POUND_SQUOTE] = ACTIONS(296), + [anon_sym_SQUOTE] = ACTIONS(298), + [anon_sym_BQUOTE] = ACTIONS(300), + [anon_sym_COMMA_AT] = ACTIONS(302), + [anon_sym_COMMA] = ACTIONS(304), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(329), - [anon_sym_cl] = ACTIONS(295), - [anon_sym_in] = ACTIONS(297), - [anon_sym_across] = ACTIONS(297), - [anon_sym_being] = ACTIONS(297), - [anon_sym_using] = ACTIONS(297), - [aux_sym_for_clause_word_token1] = ACTIONS(299), - [anon_sym_below] = ACTIONS(297), - [anon_sym_above] = ACTIONS(297), - [anon_sym_from] = ACTIONS(297), - [anon_sym_to] = ACTIONS(297), - [anon_sym_upto] = ACTIONS(297), - [anon_sym_downto] = ACTIONS(297), - [anon_sym_downfrom] = ACTIONS(297), - [anon_sym_on] = ACTIONS(297), - [anon_sym_by] = ACTIONS(297), - [anon_sym_then] = ACTIONS(297), - [anon_sym_EQ] = ACTIONS(297), - [anon_sym_POUNDP] = ACTIONS(301), - [anon_sym_POUNDp] = ACTIONS(301), - [anon_sym_POUND_PLUS] = ACTIONS(303), - [anon_sym_POUND_DASH] = ACTIONS(303), - [anon_sym_POUNDC] = ACTIONS(305), - [anon_sym_POUNDc] = ACTIONS(305), + [sym_fancy_literal] = ACTIONS(352), + [anon_sym_cl] = ACTIONS(306), + [anon_sym_in] = ACTIONS(308), + [anon_sym_across] = ACTIONS(308), + [anon_sym_being] = ACTIONS(308), + [anon_sym_using] = ACTIONS(308), + [aux_sym_for_clause_word_token1] = ACTIONS(310), + [anon_sym_below] = ACTIONS(308), + [anon_sym_above] = ACTIONS(308), + [anon_sym_from] = ACTIONS(308), + [anon_sym_to] = ACTIONS(308), + [anon_sym_upto] = ACTIONS(308), + [anon_sym_downto] = ACTIONS(308), + [anon_sym_downfrom] = ACTIONS(308), + [anon_sym_on] = ACTIONS(308), + [anon_sym_by] = ACTIONS(308), + [anon_sym_then] = ACTIONS(308), + [anon_sym_EQ] = ACTIONS(308), + [anon_sym_POUNDP] = ACTIONS(312), + [anon_sym_POUNDp] = ACTIONS(312), + [sym_self_referential_reader_macro] = ACTIONS(354), + [anon_sym_POUND_PLUS] = ACTIONS(316), + [anon_sym_POUND_DASH] = ACTIONS(316), + [anon_sym_POUNDC] = ACTIONS(318), + [anon_sym_POUNDc] = ACTIONS(318), }, [14] = { [sym__gap] = STATE(940), [sym_dis_expr] = STATE(940), - [sym__form] = STATE(1997), - [sym_num_lit] = STATE(1997), - [sym_kwd_lit] = STATE(1997), - [sym_str_lit] = STATE(1997), - [sym_char_lit] = STATE(1997), - [sym_sym_lit] = STATE(2024), - [sym__metadata_lit] = STATE(2236), - [sym_meta_lit] = STATE(2222), - [sym_old_meta_lit] = STATE(2221), - [sym_list_lit] = STATE(1997), - [sym__bare_list_lit] = STATE(2118), - [sym_vec_lit] = STATE(1997), - [sym_set_lit] = STATE(1997), - [sym__bare_set_lit] = STATE(2119), - [sym_read_cond_lit] = STATE(1997), - [sym_splicing_read_cond_lit] = STATE(1997), - [sym_var_quoting_lit] = STATE(1997), - [sym_quoting_lit] = STATE(1997), - [sym_syn_quoting_lit] = STATE(1997), - [sym_unquote_splicing_lit] = STATE(1997), - [sym_unquoting_lit] = STATE(1997), - [sym_defun] = STATE(2118), + [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(2119), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(2089), + [sym__bare_list_lit] = STATE(1792), + [sym_vec_lit] = STATE(2089), + [sym_set_lit] = STATE(2089), + [sym__bare_set_lit] = STATE(1793), + [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(1792), [sym_for_clause_word] = STATE(382), - [sym_loop_macro] = STATE(2118), - [sym_path_lit] = STATE(1997), - [sym_package_lit] = STATE(1997), - [sym_include_reader_macro] = STATE(1997), - [sym_complex_num_lit] = STATE(1997), + [sym_loop_macro] = STATE(1792), + [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(940), - [aux_sym_list_lit_repeat1] = STATE(2029), - [sym__ws] = ACTIONS(327), - [sym_comment] = ACTIONS(327), - [anon_sym_POUND_] = ACTIONS(261), - [anon_sym_POUND] = ACTIONS(263), - [anon_sym_DOT] = ACTIONS(331), - [aux_sym_num_lit_token1] = ACTIONS(267), - [anon_sym_COLON] = ACTIONS(269), - [anon_sym_COLON_COLON] = ACTIONS(271), - [anon_sym_DQUOTE] = ACTIONS(273), - [sym_nil_lit] = ACTIONS(331), - [aux_sym_sym_lit_token1] = ACTIONS(275), + [aux_sym_list_lit_repeat1] = STATE(2151), + [sym__ws] = ACTIONS(350), + [sym_comment] = ACTIONS(350), + [anon_sym_POUND_] = ACTIONS(272), + [anon_sym_POUND] = ACTIONS(274), + [anon_sym_DOT] = ACTIONS(356), + [aux_sym_num_lit_token1] = ACTIONS(278), + [anon_sym_COLON] = ACTIONS(280), + [anon_sym_COLON_COLON] = ACTIONS(282), + [anon_sym_DQUOTE] = ACTIONS(284), + [sym_nil_lit] = ACTIONS(356), + [aux_sym_sym_lit_token1] = ACTIONS(286), [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(277), - [anon_sym_POUND0A] = ACTIONS(279), - [anon_sym_POUND0a] = ACTIONS(279), - [anon_sym_POUND_QMARK] = ACTIONS(281), - [anon_sym_POUND_QMARK_AT] = ACTIONS(283), - [anon_sym_POUND_SQUOTE] = ACTIONS(285), - [anon_sym_SQUOTE] = ACTIONS(287), - [anon_sym_BQUOTE] = ACTIONS(289), - [anon_sym_COMMA_AT] = ACTIONS(291), - [anon_sym_COMMA] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(288), + [anon_sym_POUND0A] = ACTIONS(290), + [anon_sym_POUND0a] = ACTIONS(290), + [anon_sym_POUND_QMARK] = ACTIONS(292), + [anon_sym_POUND_QMARK_AT] = ACTIONS(294), + [anon_sym_POUND_SQUOTE] = ACTIONS(296), + [anon_sym_SQUOTE] = ACTIONS(298), + [anon_sym_BQUOTE] = ACTIONS(300), + [anon_sym_COMMA_AT] = ACTIONS(302), + [anon_sym_COMMA] = ACTIONS(304), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(331), - [anon_sym_cl] = ACTIONS(295), - [anon_sym_in] = ACTIONS(297), - [anon_sym_across] = ACTIONS(297), - [anon_sym_being] = ACTIONS(297), - [anon_sym_using] = ACTIONS(297), - [aux_sym_for_clause_word_token1] = ACTIONS(299), - [anon_sym_below] = ACTIONS(297), - [anon_sym_above] = ACTIONS(297), - [anon_sym_from] = ACTIONS(297), - [anon_sym_to] = ACTIONS(297), - [anon_sym_upto] = ACTIONS(297), - [anon_sym_downto] = ACTIONS(297), - [anon_sym_downfrom] = ACTIONS(297), - [anon_sym_on] = ACTIONS(297), - [anon_sym_by] = ACTIONS(297), - [anon_sym_then] = ACTIONS(297), - [anon_sym_EQ] = ACTIONS(297), - [anon_sym_POUNDP] = ACTIONS(301), - [anon_sym_POUNDp] = ACTIONS(301), - [anon_sym_POUND_PLUS] = ACTIONS(303), - [anon_sym_POUND_DASH] = ACTIONS(303), - [anon_sym_POUNDC] = ACTIONS(305), - [anon_sym_POUNDc] = ACTIONS(305), + [sym_fancy_literal] = ACTIONS(356), + [anon_sym_cl] = ACTIONS(306), + [anon_sym_in] = ACTIONS(308), + [anon_sym_across] = ACTIONS(308), + [anon_sym_being] = ACTIONS(308), + [anon_sym_using] = ACTIONS(308), + [aux_sym_for_clause_word_token1] = ACTIONS(310), + [anon_sym_below] = ACTIONS(308), + [anon_sym_above] = ACTIONS(308), + [anon_sym_from] = ACTIONS(308), + [anon_sym_to] = ACTIONS(308), + [anon_sym_upto] = ACTIONS(308), + [anon_sym_downto] = ACTIONS(308), + [anon_sym_downfrom] = ACTIONS(308), + [anon_sym_on] = ACTIONS(308), + [anon_sym_by] = ACTIONS(308), + [anon_sym_then] = ACTIONS(308), + [anon_sym_EQ] = ACTIONS(308), + [anon_sym_POUNDP] = ACTIONS(312), + [anon_sym_POUNDp] = ACTIONS(312), + [sym_self_referential_reader_macro] = ACTIONS(358), + [anon_sym_POUND_PLUS] = ACTIONS(316), + [anon_sym_POUND_DASH] = ACTIONS(316), + [anon_sym_POUNDC] = ACTIONS(318), + [anon_sym_POUNDc] = ACTIONS(318), }, [15] = { [sym__gap] = STATE(940), [sym_dis_expr] = STATE(940), - [sym__form] = STATE(2000), - [sym_num_lit] = STATE(2000), - [sym_kwd_lit] = STATE(2000), - [sym_str_lit] = STATE(2000), - [sym_char_lit] = STATE(2000), - [sym_sym_lit] = STATE(2024), - [sym__metadata_lit] = STATE(2236), - [sym_meta_lit] = STATE(2222), - [sym_old_meta_lit] = STATE(2221), - [sym_list_lit] = STATE(2000), - [sym__bare_list_lit] = STATE(2118), - [sym_vec_lit] = STATE(2000), - [sym_set_lit] = STATE(2000), - [sym__bare_set_lit] = STATE(2119), - [sym_read_cond_lit] = STATE(2000), - [sym_splicing_read_cond_lit] = STATE(2000), - [sym_var_quoting_lit] = STATE(2000), - [sym_quoting_lit] = STATE(2000), - [sym_syn_quoting_lit] = STATE(2000), - [sym_unquote_splicing_lit] = STATE(2000), - [sym_unquoting_lit] = STATE(2000), - [sym_defun] = STATE(2118), + [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(2119), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(2090), + [sym__bare_list_lit] = STATE(1792), + [sym_vec_lit] = STATE(2090), + [sym_set_lit] = STATE(2090), + [sym__bare_set_lit] = STATE(1793), + [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(1792), [sym_for_clause_word] = STATE(382), - [sym_loop_macro] = STATE(2118), - [sym_path_lit] = STATE(2000), - [sym_package_lit] = STATE(2000), - [sym_include_reader_macro] = STATE(2000), - [sym_complex_num_lit] = STATE(2000), + [sym_loop_macro] = STATE(1792), + [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(940), - [aux_sym_list_lit_repeat1] = STATE(2029), - [sym__ws] = ACTIONS(327), - [sym_comment] = ACTIONS(327), - [anon_sym_POUND_] = ACTIONS(261), - [anon_sym_POUND] = ACTIONS(263), - [anon_sym_DOT] = ACTIONS(333), - [aux_sym_num_lit_token1] = ACTIONS(267), - [anon_sym_COLON] = ACTIONS(269), - [anon_sym_COLON_COLON] = ACTIONS(271), - [anon_sym_DQUOTE] = ACTIONS(273), - [sym_nil_lit] = ACTIONS(333), - [aux_sym_sym_lit_token1] = ACTIONS(275), + [aux_sym_list_lit_repeat1] = STATE(2151), + [sym__ws] = ACTIONS(350), + [sym_comment] = ACTIONS(350), + [anon_sym_POUND_] = ACTIONS(272), + [anon_sym_POUND] = ACTIONS(274), + [anon_sym_DOT] = ACTIONS(360), + [aux_sym_num_lit_token1] = ACTIONS(278), + [anon_sym_COLON] = ACTIONS(280), + [anon_sym_COLON_COLON] = ACTIONS(282), + [anon_sym_DQUOTE] = ACTIONS(284), + [sym_nil_lit] = ACTIONS(360), + [aux_sym_sym_lit_token1] = ACTIONS(286), [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(277), - [anon_sym_POUND0A] = ACTIONS(279), - [anon_sym_POUND0a] = ACTIONS(279), - [anon_sym_POUND_QMARK] = ACTIONS(281), - [anon_sym_POUND_QMARK_AT] = ACTIONS(283), - [anon_sym_POUND_SQUOTE] = ACTIONS(285), - [anon_sym_SQUOTE] = ACTIONS(287), - [anon_sym_BQUOTE] = ACTIONS(289), - [anon_sym_COMMA_AT] = ACTIONS(291), - [anon_sym_COMMA] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(288), + [anon_sym_POUND0A] = ACTIONS(290), + [anon_sym_POUND0a] = ACTIONS(290), + [anon_sym_POUND_QMARK] = ACTIONS(292), + [anon_sym_POUND_QMARK_AT] = ACTIONS(294), + [anon_sym_POUND_SQUOTE] = ACTIONS(296), + [anon_sym_SQUOTE] = ACTIONS(298), + [anon_sym_BQUOTE] = ACTIONS(300), + [anon_sym_COMMA_AT] = ACTIONS(302), + [anon_sym_COMMA] = ACTIONS(304), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(333), - [anon_sym_cl] = ACTIONS(295), - [anon_sym_in] = ACTIONS(297), - [anon_sym_across] = ACTIONS(297), - [anon_sym_being] = ACTIONS(297), - [anon_sym_using] = ACTIONS(297), - [aux_sym_for_clause_word_token1] = ACTIONS(299), - [anon_sym_below] = ACTIONS(297), - [anon_sym_above] = ACTIONS(297), - [anon_sym_from] = ACTIONS(297), - [anon_sym_to] = ACTIONS(297), - [anon_sym_upto] = ACTIONS(297), - [anon_sym_downto] = ACTIONS(297), - [anon_sym_downfrom] = ACTIONS(297), - [anon_sym_on] = ACTIONS(297), - [anon_sym_by] = ACTIONS(297), - [anon_sym_then] = ACTIONS(297), - [anon_sym_EQ] = ACTIONS(297), - [anon_sym_POUNDP] = ACTIONS(301), - [anon_sym_POUNDp] = ACTIONS(301), - [anon_sym_POUND_PLUS] = ACTIONS(303), - [anon_sym_POUND_DASH] = ACTIONS(303), - [anon_sym_POUNDC] = ACTIONS(305), - [anon_sym_POUNDc] = ACTIONS(305), + [sym_fancy_literal] = ACTIONS(360), + [anon_sym_cl] = ACTIONS(306), + [anon_sym_in] = ACTIONS(308), + [anon_sym_across] = ACTIONS(308), + [anon_sym_being] = ACTIONS(308), + [anon_sym_using] = ACTIONS(308), + [aux_sym_for_clause_word_token1] = ACTIONS(310), + [anon_sym_below] = ACTIONS(308), + [anon_sym_above] = ACTIONS(308), + [anon_sym_from] = ACTIONS(308), + [anon_sym_to] = ACTIONS(308), + [anon_sym_upto] = ACTIONS(308), + [anon_sym_downto] = ACTIONS(308), + [anon_sym_downfrom] = ACTIONS(308), + [anon_sym_on] = ACTIONS(308), + [anon_sym_by] = ACTIONS(308), + [anon_sym_then] = ACTIONS(308), + [anon_sym_EQ] = ACTIONS(308), + [anon_sym_POUNDP] = ACTIONS(312), + [anon_sym_POUNDp] = ACTIONS(312), + [sym_self_referential_reader_macro] = ACTIONS(362), + [anon_sym_POUND_PLUS] = ACTIONS(316), + [anon_sym_POUND_DASH] = ACTIONS(316), + [anon_sym_POUNDC] = ACTIONS(318), + [anon_sym_POUNDc] = ACTIONS(318), }, [16] = { [sym__gap] = STATE(940), [sym_dis_expr] = STATE(940), - [sym__form] = STATE(2003), - [sym_num_lit] = STATE(2003), - [sym_kwd_lit] = STATE(2003), - [sym_str_lit] = STATE(2003), - [sym_char_lit] = STATE(2003), - [sym_sym_lit] = STATE(2024), - [sym__metadata_lit] = STATE(2236), - [sym_meta_lit] = STATE(2222), - [sym_old_meta_lit] = STATE(2221), - [sym_list_lit] = STATE(2003), - [sym__bare_list_lit] = STATE(2118), - [sym_vec_lit] = STATE(2003), - [sym_set_lit] = STATE(2003), - [sym__bare_set_lit] = STATE(2119), - [sym_read_cond_lit] = STATE(2003), - [sym_splicing_read_cond_lit] = STATE(2003), - [sym_var_quoting_lit] = STATE(2003), - [sym_quoting_lit] = STATE(2003), - [sym_syn_quoting_lit] = STATE(2003), - [sym_unquote_splicing_lit] = STATE(2003), - [sym_unquoting_lit] = STATE(2003), - [sym_defun] = STATE(2118), + [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(2119), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(2091), + [sym__bare_list_lit] = STATE(1792), + [sym_vec_lit] = STATE(2091), + [sym_set_lit] = STATE(2091), + [sym__bare_set_lit] = STATE(1793), + [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(1792), [sym_for_clause_word] = STATE(382), - [sym_loop_macro] = STATE(2118), - [sym_path_lit] = STATE(2003), - [sym_package_lit] = STATE(2003), - [sym_include_reader_macro] = STATE(2003), - [sym_complex_num_lit] = STATE(2003), + [sym_loop_macro] = STATE(1792), + [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(940), - [aux_sym_list_lit_repeat1] = STATE(2029), - [sym__ws] = ACTIONS(327), - [sym_comment] = ACTIONS(327), - [anon_sym_POUND_] = ACTIONS(261), - [anon_sym_POUND] = ACTIONS(263), - [anon_sym_DOT] = ACTIONS(335), - [aux_sym_num_lit_token1] = ACTIONS(267), - [anon_sym_COLON] = ACTIONS(269), - [anon_sym_COLON_COLON] = ACTIONS(271), - [anon_sym_DQUOTE] = ACTIONS(273), - [sym_nil_lit] = ACTIONS(335), - [aux_sym_sym_lit_token1] = ACTIONS(275), + [aux_sym_list_lit_repeat1] = STATE(2151), + [sym__ws] = ACTIONS(350), + [sym_comment] = ACTIONS(350), + [anon_sym_POUND_] = ACTIONS(272), + [anon_sym_POUND] = ACTIONS(274), + [anon_sym_DOT] = ACTIONS(364), + [aux_sym_num_lit_token1] = ACTIONS(278), + [anon_sym_COLON] = ACTIONS(280), + [anon_sym_COLON_COLON] = ACTIONS(282), + [anon_sym_DQUOTE] = ACTIONS(284), + [sym_nil_lit] = ACTIONS(364), + [aux_sym_sym_lit_token1] = ACTIONS(286), [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(277), - [anon_sym_POUND0A] = ACTIONS(279), - [anon_sym_POUND0a] = ACTIONS(279), - [anon_sym_POUND_QMARK] = ACTIONS(281), - [anon_sym_POUND_QMARK_AT] = ACTIONS(283), - [anon_sym_POUND_SQUOTE] = ACTIONS(285), - [anon_sym_SQUOTE] = ACTIONS(287), - [anon_sym_BQUOTE] = ACTIONS(289), - [anon_sym_COMMA_AT] = ACTIONS(291), - [anon_sym_COMMA] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(288), + [anon_sym_POUND0A] = ACTIONS(290), + [anon_sym_POUND0a] = ACTIONS(290), + [anon_sym_POUND_QMARK] = ACTIONS(292), + [anon_sym_POUND_QMARK_AT] = ACTIONS(294), + [anon_sym_POUND_SQUOTE] = ACTIONS(296), + [anon_sym_SQUOTE] = ACTIONS(298), + [anon_sym_BQUOTE] = ACTIONS(300), + [anon_sym_COMMA_AT] = ACTIONS(302), + [anon_sym_COMMA] = ACTIONS(304), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(335), - [anon_sym_cl] = ACTIONS(295), - [anon_sym_in] = ACTIONS(297), - [anon_sym_across] = ACTIONS(297), - [anon_sym_being] = ACTIONS(297), - [anon_sym_using] = ACTIONS(297), - [aux_sym_for_clause_word_token1] = ACTIONS(299), - [anon_sym_below] = ACTIONS(297), - [anon_sym_above] = ACTIONS(297), - [anon_sym_from] = ACTIONS(297), - [anon_sym_to] = ACTIONS(297), - [anon_sym_upto] = ACTIONS(297), - [anon_sym_downto] = ACTIONS(297), - [anon_sym_downfrom] = ACTIONS(297), - [anon_sym_on] = ACTIONS(297), - [anon_sym_by] = ACTIONS(297), - [anon_sym_then] = ACTIONS(297), - [anon_sym_EQ] = ACTIONS(297), - [anon_sym_POUNDP] = ACTIONS(301), - [anon_sym_POUNDp] = ACTIONS(301), - [anon_sym_POUND_PLUS] = ACTIONS(303), - [anon_sym_POUND_DASH] = ACTIONS(303), - [anon_sym_POUNDC] = ACTIONS(305), - [anon_sym_POUNDc] = ACTIONS(305), + [sym_fancy_literal] = ACTIONS(364), + [anon_sym_cl] = ACTIONS(306), + [anon_sym_in] = ACTIONS(308), + [anon_sym_across] = ACTIONS(308), + [anon_sym_being] = ACTIONS(308), + [anon_sym_using] = ACTIONS(308), + [aux_sym_for_clause_word_token1] = ACTIONS(310), + [anon_sym_below] = ACTIONS(308), + [anon_sym_above] = ACTIONS(308), + [anon_sym_from] = ACTIONS(308), + [anon_sym_to] = ACTIONS(308), + [anon_sym_upto] = ACTIONS(308), + [anon_sym_downto] = ACTIONS(308), + [anon_sym_downfrom] = ACTIONS(308), + [anon_sym_on] = ACTIONS(308), + [anon_sym_by] = ACTIONS(308), + [anon_sym_then] = ACTIONS(308), + [anon_sym_EQ] = ACTIONS(308), + [anon_sym_POUNDP] = ACTIONS(312), + [anon_sym_POUNDp] = ACTIONS(312), + [sym_self_referential_reader_macro] = ACTIONS(366), + [anon_sym_POUND_PLUS] = ACTIONS(316), + [anon_sym_POUND_DASH] = ACTIONS(316), + [anon_sym_POUNDC] = ACTIONS(318), + [anon_sym_POUNDc] = ACTIONS(318), }, [17] = { [sym__gap] = STATE(940), [sym_dis_expr] = STATE(940), - [sym__form] = STATE(1998), - [sym_num_lit] = STATE(1998), - [sym_kwd_lit] = STATE(1998), - [sym_str_lit] = STATE(1998), - [sym_char_lit] = STATE(1998), - [sym_sym_lit] = STATE(2024), - [sym__metadata_lit] = STATE(2236), - [sym_meta_lit] = STATE(2222), - [sym_old_meta_lit] = STATE(2221), - [sym_list_lit] = STATE(1998), - [sym__bare_list_lit] = STATE(2118), - [sym_vec_lit] = STATE(1998), - [sym_set_lit] = STATE(1998), - [sym__bare_set_lit] = STATE(2119), - [sym_read_cond_lit] = STATE(1998), - [sym_splicing_read_cond_lit] = STATE(1998), - [sym_var_quoting_lit] = STATE(1998), - [sym_quoting_lit] = STATE(1998), - [sym_syn_quoting_lit] = STATE(1998), - [sym_unquote_splicing_lit] = STATE(1998), - [sym_unquoting_lit] = STATE(1998), - [sym_defun] = STATE(2118), + [sym__form] = STATE(2098), + [sym_num_lit] = STATE(2098), + [sym_kwd_lit] = STATE(2098), + [sym_str_lit] = STATE(2098), + [sym_char_lit] = STATE(2098), + [sym_sym_lit] = STATE(2119), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(2098), + [sym__bare_list_lit] = STATE(1792), + [sym_vec_lit] = STATE(2098), + [sym_set_lit] = STATE(2098), + [sym__bare_set_lit] = STATE(1793), + [sym_read_cond_lit] = STATE(2098), + [sym_splicing_read_cond_lit] = STATE(2098), + [sym_var_quoting_lit] = STATE(2098), + [sym_quoting_lit] = STATE(2098), + [sym_syn_quoting_lit] = STATE(2098), + [sym_unquote_splicing_lit] = STATE(2098), + [sym_unquoting_lit] = STATE(2098), + [sym_defun] = STATE(1792), [sym_for_clause_word] = STATE(382), - [sym_loop_macro] = STATE(2118), - [sym_path_lit] = STATE(1998), - [sym_package_lit] = STATE(1998), - [sym_include_reader_macro] = STATE(1998), - [sym_complex_num_lit] = STATE(1998), + [sym_loop_macro] = STATE(1792), + [sym_path_lit] = STATE(2098), + [sym_package_lit] = STATE(2098), + [sym_include_reader_macro] = STATE(2098), + [sym_complex_num_lit] = STATE(2098), [aux_sym_dis_expr_repeat1] = STATE(940), - [aux_sym_list_lit_repeat1] = STATE(2029), - [sym__ws] = ACTIONS(327), - [sym_comment] = ACTIONS(327), - [anon_sym_POUND_] = ACTIONS(261), - [anon_sym_POUND] = ACTIONS(263), - [anon_sym_DOT] = ACTIONS(337), - [aux_sym_num_lit_token1] = ACTIONS(267), - [anon_sym_COLON] = ACTIONS(269), - [anon_sym_COLON_COLON] = ACTIONS(271), - [anon_sym_DQUOTE] = ACTIONS(273), - [sym_nil_lit] = ACTIONS(337), - [aux_sym_sym_lit_token1] = ACTIONS(275), + [aux_sym_list_lit_repeat1] = STATE(2151), + [sym__ws] = ACTIONS(350), + [sym_comment] = ACTIONS(350), + [anon_sym_POUND_] = ACTIONS(272), + [anon_sym_POUND] = ACTIONS(274), + [anon_sym_DOT] = ACTIONS(368), + [aux_sym_num_lit_token1] = ACTIONS(278), + [anon_sym_COLON] = ACTIONS(280), + [anon_sym_COLON_COLON] = ACTIONS(282), + [anon_sym_DQUOTE] = ACTIONS(284), + [sym_nil_lit] = ACTIONS(368), + [aux_sym_sym_lit_token1] = ACTIONS(286), [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(277), - [anon_sym_POUND0A] = ACTIONS(279), - [anon_sym_POUND0a] = ACTIONS(279), - [anon_sym_POUND_QMARK] = ACTIONS(281), - [anon_sym_POUND_QMARK_AT] = ACTIONS(283), - [anon_sym_POUND_SQUOTE] = ACTIONS(285), - [anon_sym_SQUOTE] = ACTIONS(287), - [anon_sym_BQUOTE] = ACTIONS(289), - [anon_sym_COMMA_AT] = ACTIONS(291), - [anon_sym_COMMA] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(288), + [anon_sym_POUND0A] = ACTIONS(290), + [anon_sym_POUND0a] = ACTIONS(290), + [anon_sym_POUND_QMARK] = ACTIONS(292), + [anon_sym_POUND_QMARK_AT] = ACTIONS(294), + [anon_sym_POUND_SQUOTE] = ACTIONS(296), + [anon_sym_SQUOTE] = ACTIONS(298), + [anon_sym_BQUOTE] = ACTIONS(300), + [anon_sym_COMMA_AT] = ACTIONS(302), + [anon_sym_COMMA] = ACTIONS(304), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(337), - [anon_sym_cl] = ACTIONS(295), - [anon_sym_in] = ACTIONS(297), - [anon_sym_across] = ACTIONS(297), - [anon_sym_being] = ACTIONS(297), - [anon_sym_using] = ACTIONS(297), - [aux_sym_for_clause_word_token1] = ACTIONS(299), - [anon_sym_below] = ACTIONS(297), - [anon_sym_above] = ACTIONS(297), - [anon_sym_from] = ACTIONS(297), - [anon_sym_to] = ACTIONS(297), - [anon_sym_upto] = ACTIONS(297), - [anon_sym_downto] = ACTIONS(297), - [anon_sym_downfrom] = ACTIONS(297), - [anon_sym_on] = ACTIONS(297), - [anon_sym_by] = ACTIONS(297), - [anon_sym_then] = ACTIONS(297), - [anon_sym_EQ] = ACTIONS(297), - [anon_sym_POUNDP] = ACTIONS(301), - [anon_sym_POUNDp] = ACTIONS(301), - [anon_sym_POUND_PLUS] = ACTIONS(303), - [anon_sym_POUND_DASH] = ACTIONS(303), - [anon_sym_POUNDC] = ACTIONS(305), - [anon_sym_POUNDc] = ACTIONS(305), + [sym_fancy_literal] = ACTIONS(368), + [anon_sym_cl] = ACTIONS(306), + [anon_sym_in] = ACTIONS(308), + [anon_sym_across] = ACTIONS(308), + [anon_sym_being] = ACTIONS(308), + [anon_sym_using] = ACTIONS(308), + [aux_sym_for_clause_word_token1] = ACTIONS(310), + [anon_sym_below] = ACTIONS(308), + [anon_sym_above] = ACTIONS(308), + [anon_sym_from] = ACTIONS(308), + [anon_sym_to] = ACTIONS(308), + [anon_sym_upto] = ACTIONS(308), + [anon_sym_downto] = ACTIONS(308), + [anon_sym_downfrom] = ACTIONS(308), + [anon_sym_on] = ACTIONS(308), + [anon_sym_by] = ACTIONS(308), + [anon_sym_then] = ACTIONS(308), + [anon_sym_EQ] = ACTIONS(308), + [anon_sym_POUNDP] = ACTIONS(312), + [anon_sym_POUNDp] = ACTIONS(312), + [sym_self_referential_reader_macro] = ACTIONS(370), + [anon_sym_POUND_PLUS] = ACTIONS(316), + [anon_sym_POUND_DASH] = ACTIONS(316), + [anon_sym_POUNDC] = ACTIONS(318), + [anon_sym_POUNDc] = ACTIONS(318), }, [18] = { [sym__gap] = STATE(940), [sym_dis_expr] = STATE(940), - [sym__form] = STATE(2005), - [sym_num_lit] = STATE(2005), - [sym_kwd_lit] = STATE(2005), - [sym_str_lit] = STATE(2005), - [sym_char_lit] = STATE(2005), - [sym_sym_lit] = STATE(2024), - [sym__metadata_lit] = STATE(2236), - [sym_meta_lit] = STATE(2222), - [sym_old_meta_lit] = STATE(2221), - [sym_list_lit] = STATE(2005), - [sym__bare_list_lit] = STATE(2118), - [sym_vec_lit] = STATE(2005), - [sym_set_lit] = STATE(2005), - [sym__bare_set_lit] = STATE(2119), - [sym_read_cond_lit] = STATE(2005), - [sym_splicing_read_cond_lit] = STATE(2005), - [sym_var_quoting_lit] = STATE(2005), - [sym_quoting_lit] = STATE(2005), - [sym_syn_quoting_lit] = STATE(2005), - [sym_unquote_splicing_lit] = STATE(2005), - [sym_unquoting_lit] = STATE(2005), - [sym_defun] = STATE(2118), + [sym__form] = STATE(2099), + [sym_num_lit] = STATE(2099), + [sym_kwd_lit] = STATE(2099), + [sym_str_lit] = STATE(2099), + [sym_char_lit] = STATE(2099), + [sym_sym_lit] = STATE(2119), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(2099), + [sym__bare_list_lit] = STATE(1792), + [sym_vec_lit] = STATE(2099), + [sym_set_lit] = STATE(2099), + [sym__bare_set_lit] = STATE(1793), + [sym_read_cond_lit] = STATE(2099), + [sym_splicing_read_cond_lit] = STATE(2099), + [sym_var_quoting_lit] = STATE(2099), + [sym_quoting_lit] = STATE(2099), + [sym_syn_quoting_lit] = STATE(2099), + [sym_unquote_splicing_lit] = STATE(2099), + [sym_unquoting_lit] = STATE(2099), + [sym_defun] = STATE(1792), [sym_for_clause_word] = STATE(382), - [sym_loop_macro] = STATE(2118), - [sym_path_lit] = STATE(2005), - [sym_package_lit] = STATE(2005), - [sym_include_reader_macro] = STATE(2005), - [sym_complex_num_lit] = STATE(2005), + [sym_loop_macro] = STATE(1792), + [sym_path_lit] = STATE(2099), + [sym_package_lit] = STATE(2099), + [sym_include_reader_macro] = STATE(2099), + [sym_complex_num_lit] = STATE(2099), [aux_sym_dis_expr_repeat1] = STATE(940), - [aux_sym_list_lit_repeat1] = STATE(2029), - [sym__ws] = ACTIONS(327), - [sym_comment] = ACTIONS(327), - [anon_sym_POUND_] = ACTIONS(261), - [anon_sym_POUND] = ACTIONS(263), - [anon_sym_DOT] = ACTIONS(339), - [aux_sym_num_lit_token1] = ACTIONS(267), - [anon_sym_COLON] = ACTIONS(269), - [anon_sym_COLON_COLON] = ACTIONS(271), - [anon_sym_DQUOTE] = ACTIONS(273), - [sym_nil_lit] = ACTIONS(339), - [aux_sym_sym_lit_token1] = ACTIONS(275), + [aux_sym_list_lit_repeat1] = STATE(2151), + [sym__ws] = ACTIONS(350), + [sym_comment] = ACTIONS(350), + [anon_sym_POUND_] = ACTIONS(272), + [anon_sym_POUND] = ACTIONS(274), + [anon_sym_DOT] = ACTIONS(372), + [aux_sym_num_lit_token1] = ACTIONS(278), + [anon_sym_COLON] = ACTIONS(280), + [anon_sym_COLON_COLON] = ACTIONS(282), + [anon_sym_DQUOTE] = ACTIONS(284), + [sym_nil_lit] = ACTIONS(372), + [aux_sym_sym_lit_token1] = ACTIONS(286), [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(277), - [anon_sym_POUND0A] = ACTIONS(279), - [anon_sym_POUND0a] = ACTIONS(279), - [anon_sym_POUND_QMARK] = ACTIONS(281), - [anon_sym_POUND_QMARK_AT] = ACTIONS(283), - [anon_sym_POUND_SQUOTE] = ACTIONS(285), - [anon_sym_SQUOTE] = ACTIONS(287), - [anon_sym_BQUOTE] = ACTIONS(289), - [anon_sym_COMMA_AT] = ACTIONS(291), - [anon_sym_COMMA] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(288), + [anon_sym_POUND0A] = ACTIONS(290), + [anon_sym_POUND0a] = ACTIONS(290), + [anon_sym_POUND_QMARK] = ACTIONS(292), + [anon_sym_POUND_QMARK_AT] = ACTIONS(294), + [anon_sym_POUND_SQUOTE] = ACTIONS(296), + [anon_sym_SQUOTE] = ACTIONS(298), + [anon_sym_BQUOTE] = ACTIONS(300), + [anon_sym_COMMA_AT] = ACTIONS(302), + [anon_sym_COMMA] = ACTIONS(304), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(339), - [anon_sym_cl] = ACTIONS(295), - [anon_sym_in] = ACTIONS(297), - [anon_sym_across] = ACTIONS(297), - [anon_sym_being] = ACTIONS(297), - [anon_sym_using] = ACTIONS(297), - [aux_sym_for_clause_word_token1] = ACTIONS(299), - [anon_sym_below] = ACTIONS(297), - [anon_sym_above] = ACTIONS(297), - [anon_sym_from] = ACTIONS(297), - [anon_sym_to] = ACTIONS(297), - [anon_sym_upto] = ACTIONS(297), - [anon_sym_downto] = ACTIONS(297), - [anon_sym_downfrom] = ACTIONS(297), - [anon_sym_on] = ACTIONS(297), - [anon_sym_by] = ACTIONS(297), - [anon_sym_then] = ACTIONS(297), - [anon_sym_EQ] = ACTIONS(297), - [anon_sym_POUNDP] = ACTIONS(301), - [anon_sym_POUNDp] = ACTIONS(301), - [anon_sym_POUND_PLUS] = ACTIONS(303), - [anon_sym_POUND_DASH] = ACTIONS(303), - [anon_sym_POUNDC] = ACTIONS(305), - [anon_sym_POUNDc] = ACTIONS(305), + [sym_fancy_literal] = ACTIONS(372), + [anon_sym_cl] = ACTIONS(306), + [anon_sym_in] = ACTIONS(308), + [anon_sym_across] = ACTIONS(308), + [anon_sym_being] = ACTIONS(308), + [anon_sym_using] = ACTIONS(308), + [aux_sym_for_clause_word_token1] = ACTIONS(310), + [anon_sym_below] = ACTIONS(308), + [anon_sym_above] = ACTIONS(308), + [anon_sym_from] = ACTIONS(308), + [anon_sym_to] = ACTIONS(308), + [anon_sym_upto] = ACTIONS(308), + [anon_sym_downto] = ACTIONS(308), + [anon_sym_downfrom] = ACTIONS(308), + [anon_sym_on] = ACTIONS(308), + [anon_sym_by] = ACTIONS(308), + [anon_sym_then] = ACTIONS(308), + [anon_sym_EQ] = ACTIONS(308), + [anon_sym_POUNDP] = ACTIONS(312), + [anon_sym_POUNDp] = ACTIONS(312), + [sym_self_referential_reader_macro] = ACTIONS(374), + [anon_sym_POUND_PLUS] = ACTIONS(316), + [anon_sym_POUND_DASH] = ACTIONS(316), + [anon_sym_POUNDC] = ACTIONS(318), + [anon_sym_POUNDc] = ACTIONS(318), }, [19] = { - [sym__gap] = STATE(1379), - [sym_dis_expr] = STATE(1379), - [sym__form] = STATE(1658), - [sym_num_lit] = STATE(1658), - [sym_kwd_lit] = STATE(1658), - [sym_str_lit] = STATE(1658), - [sym_char_lit] = STATE(1658), - [sym_sym_lit] = STATE(1610), - [sym__metadata_lit] = STATE(2236), - [sym_meta_lit] = STATE(2222), - [sym_old_meta_lit] = STATE(2221), - [sym_list_lit] = STATE(1658), - [sym__bare_list_lit] = STATE(1609), - [sym_vec_lit] = STATE(1658), - [sym_set_lit] = STATE(1658), - [sym__bare_set_lit] = STATE(1608), - [sym_read_cond_lit] = STATE(1658), - [sym_splicing_read_cond_lit] = STATE(1658), - [sym_var_quoting_lit] = STATE(1658), - [sym_quoting_lit] = STATE(1658), - [sym_syn_quoting_lit] = STATE(1658), - [sym_unquote_splicing_lit] = STATE(1658), - [sym_unquoting_lit] = STATE(1658), - [sym_defun] = STATE(1609), - [sym_loop_macro] = STATE(1609), - [sym_defun_keyword] = STATE(710), - [sym_defun_header] = STATE(63), - [sym_path_lit] = STATE(1658), - [sym_package_lit] = STATE(1658), - [sym_include_reader_macro] = STATE(1658), - [sym_complex_num_lit] = STATE(1658), - [aux_sym_list_lit_repeat1] = STATE(2052), - [aux_sym__bare_list_lit_repeat1] = STATE(61), - [sym__ws] = ACTIONS(341), - [sym_comment] = ACTIONS(341), - [anon_sym_POUND_] = ACTIONS(343), + [sym__gap] = STATE(1296), + [sym_dis_expr] = STATE(1296), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_defun_keyword] = STATE(556), + [sym_defun_header] = STATE(140), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(141), + [sym__ws] = ACTIONS(376), + [sym_comment] = ACTIONS(376), + [anon_sym_POUND_] = ACTIONS(378), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(345), + [anon_sym_DOT] = ACTIONS(380), [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(345), + [sym_nil_lit] = ACTIONS(380), [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(347), + [anon_sym_RPAREN] = ACTIONS(382), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -11467,70 +11599,71 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COMMA_AT] = ACTIONS(43), [anon_sym_COMMA] = ACTIONS(45), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(345), - [anon_sym_cl] = ACTIONS(349), - [anon_sym_loop] = ACTIONS(351), - [anon_sym_defun] = ACTIONS(353), - [anon_sym_defmacro] = ACTIONS(353), - [anon_sym_defgeneric] = ACTIONS(353), - [anon_sym_defmethod] = ACTIONS(353), - [anon_sym_lambda] = ACTIONS(355), + [sym_fancy_literal] = ACTIONS(380), + [anon_sym_cl] = ACTIONS(384), + [anon_sym_loop] = ACTIONS(386), + [anon_sym_defun] = ACTIONS(388), + [anon_sym_defmacro] = ACTIONS(388), + [anon_sym_defgeneric] = ACTIONS(388), + [anon_sym_defmethod] = ACTIONS(388), + [anon_sym_lambda] = ACTIONS(390), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [anon_sym_POUND_PLUS] = ACTIONS(53), - [anon_sym_POUND_DASH] = ACTIONS(53), - [anon_sym_POUNDC] = ACTIONS(55), - [anon_sym_POUNDc] = ACTIONS(55), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), }, [20] = { - [sym__gap] = STATE(1388), - [sym_dis_expr] = STATE(1388), - [sym__form] = STATE(1658), - [sym_num_lit] = STATE(1658), - [sym_kwd_lit] = STATE(1658), - [sym_str_lit] = STATE(1658), - [sym_char_lit] = STATE(1658), - [sym_sym_lit] = STATE(1610), - [sym__metadata_lit] = STATE(2236), - [sym_meta_lit] = STATE(2222), - [sym_old_meta_lit] = STATE(2221), - [sym_list_lit] = STATE(1658), - [sym__bare_list_lit] = STATE(1609), - [sym_vec_lit] = STATE(1658), - [sym_set_lit] = STATE(1658), - [sym__bare_set_lit] = STATE(1608), - [sym_read_cond_lit] = STATE(1658), - [sym_splicing_read_cond_lit] = STATE(1658), - [sym_var_quoting_lit] = STATE(1658), - [sym_quoting_lit] = STATE(1658), - [sym_syn_quoting_lit] = STATE(1658), - [sym_unquote_splicing_lit] = STATE(1658), - [sym_unquoting_lit] = STATE(1658), - [sym_defun] = STATE(1609), - [sym_loop_macro] = STATE(1609), - [sym_defun_keyword] = STATE(710), - [sym_defun_header] = STATE(81), - [sym_path_lit] = STATE(1658), - [sym_package_lit] = STATE(1658), - [sym_include_reader_macro] = STATE(1658), - [sym_complex_num_lit] = STATE(1658), - [aux_sym_list_lit_repeat1] = STATE(2052), - [aux_sym__bare_list_lit_repeat1] = STATE(82), - [sym__ws] = ACTIONS(357), - [sym_comment] = ACTIONS(357), - [anon_sym_POUND_] = ACTIONS(343), + [sym__gap] = STATE(1289), + [sym_dis_expr] = STATE(1289), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_defun_keyword] = STATE(556), + [sym_defun_header] = STATE(130), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(129), + [sym__ws] = ACTIONS(394), + [sym_comment] = ACTIONS(394), + [anon_sym_POUND_] = ACTIONS(378), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(345), + [anon_sym_DOT] = ACTIONS(380), [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(345), + [sym_nil_lit] = ACTIONS(380), [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(359), + [anon_sym_RPAREN] = ACTIONS(396), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -11541,70 +11674,71 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COMMA_AT] = ACTIONS(43), [anon_sym_COMMA] = ACTIONS(45), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(345), - [anon_sym_cl] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_defun] = ACTIONS(353), - [anon_sym_defmacro] = ACTIONS(353), - [anon_sym_defgeneric] = ACTIONS(353), - [anon_sym_defmethod] = ACTIONS(353), - [anon_sym_lambda] = ACTIONS(355), + [sym_fancy_literal] = ACTIONS(380), + [anon_sym_cl] = ACTIONS(398), + [anon_sym_loop] = ACTIONS(400), + [anon_sym_defun] = ACTIONS(388), + [anon_sym_defmacro] = ACTIONS(388), + [anon_sym_defgeneric] = ACTIONS(388), + [anon_sym_defmethod] = ACTIONS(388), + [anon_sym_lambda] = ACTIONS(390), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [anon_sym_POUND_PLUS] = ACTIONS(53), - [anon_sym_POUND_DASH] = ACTIONS(53), - [anon_sym_POUNDC] = ACTIONS(55), - [anon_sym_POUNDc] = ACTIONS(55), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), }, [21] = { - [sym__gap] = STATE(1341), - [sym_dis_expr] = STATE(1341), - [sym__form] = STATE(1658), - [sym_num_lit] = STATE(1658), - [sym_kwd_lit] = STATE(1658), - [sym_str_lit] = STATE(1658), - [sym_char_lit] = STATE(1658), - [sym_sym_lit] = STATE(1610), - [sym__metadata_lit] = STATE(2236), - [sym_meta_lit] = STATE(2222), - [sym_old_meta_lit] = STATE(2221), - [sym_list_lit] = STATE(1658), - [sym__bare_list_lit] = STATE(1609), - [sym_vec_lit] = STATE(1658), - [sym_set_lit] = STATE(1658), - [sym__bare_set_lit] = STATE(1608), - [sym_read_cond_lit] = STATE(1658), - [sym_splicing_read_cond_lit] = STATE(1658), - [sym_var_quoting_lit] = STATE(1658), - [sym_quoting_lit] = STATE(1658), - [sym_syn_quoting_lit] = STATE(1658), - [sym_unquote_splicing_lit] = STATE(1658), - [sym_unquoting_lit] = STATE(1658), - [sym_defun] = STATE(1609), - [sym_loop_macro] = STATE(1609), - [sym_defun_keyword] = STATE(710), - [sym_defun_header] = STATE(146), - [sym_path_lit] = STATE(1658), - [sym_package_lit] = STATE(1658), - [sym_include_reader_macro] = STATE(1658), - [sym_complex_num_lit] = STATE(1658), - [aux_sym_list_lit_repeat1] = STATE(2052), - [aux_sym__bare_list_lit_repeat1] = STATE(147), - [sym__ws] = ACTIONS(365), - [sym_comment] = ACTIONS(365), - [anon_sym_POUND_] = ACTIONS(343), + [sym__gap] = STATE(1297), + [sym_dis_expr] = STATE(1297), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_defun_keyword] = STATE(556), + [sym_defun_header] = STATE(147), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(146), + [sym__ws] = ACTIONS(402), + [sym_comment] = ACTIONS(402), + [anon_sym_POUND_] = ACTIONS(378), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(345), + [anon_sym_DOT] = ACTIONS(380), [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(345), + [sym_nil_lit] = ACTIONS(380), [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(367), + [anon_sym_RPAREN] = ACTIONS(404), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -11615,70 +11749,71 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COMMA_AT] = ACTIONS(43), [anon_sym_COMMA] = ACTIONS(45), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(345), - [anon_sym_cl] = ACTIONS(369), - [anon_sym_loop] = ACTIONS(371), - [anon_sym_defun] = ACTIONS(353), - [anon_sym_defmacro] = ACTIONS(353), - [anon_sym_defgeneric] = ACTIONS(353), - [anon_sym_defmethod] = ACTIONS(353), - [anon_sym_lambda] = ACTIONS(355), + [sym_fancy_literal] = ACTIONS(380), + [anon_sym_cl] = ACTIONS(406), + [anon_sym_loop] = ACTIONS(408), + [anon_sym_defun] = ACTIONS(388), + [anon_sym_defmacro] = ACTIONS(388), + [anon_sym_defgeneric] = ACTIONS(388), + [anon_sym_defmethod] = ACTIONS(388), + [anon_sym_lambda] = ACTIONS(390), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [anon_sym_POUND_PLUS] = ACTIONS(53), - [anon_sym_POUND_DASH] = ACTIONS(53), - [anon_sym_POUNDC] = ACTIONS(55), - [anon_sym_POUNDc] = ACTIONS(55), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), }, [22] = { - [sym__gap] = STATE(1387), - [sym_dis_expr] = STATE(1387), - [sym__form] = STATE(1658), - [sym_num_lit] = STATE(1658), - [sym_kwd_lit] = STATE(1658), - [sym_str_lit] = STATE(1658), - [sym_char_lit] = STATE(1658), - [sym_sym_lit] = STATE(1610), - [sym__metadata_lit] = STATE(2236), - [sym_meta_lit] = STATE(2222), - [sym_old_meta_lit] = STATE(2221), - [sym_list_lit] = STATE(1658), - [sym__bare_list_lit] = STATE(1609), - [sym_vec_lit] = STATE(1658), - [sym_set_lit] = STATE(1658), - [sym__bare_set_lit] = STATE(1608), - [sym_read_cond_lit] = STATE(1658), - [sym_splicing_read_cond_lit] = STATE(1658), - [sym_var_quoting_lit] = STATE(1658), - [sym_quoting_lit] = STATE(1658), - [sym_syn_quoting_lit] = STATE(1658), - [sym_unquote_splicing_lit] = STATE(1658), - [sym_unquoting_lit] = STATE(1658), - [sym_defun] = STATE(1609), - [sym_loop_macro] = STATE(1609), - [sym_defun_keyword] = STATE(710), - [sym_defun_header] = STATE(67), - [sym_path_lit] = STATE(1658), - [sym_package_lit] = STATE(1658), - [sym_include_reader_macro] = STATE(1658), - [sym_complex_num_lit] = STATE(1658), - [aux_sym_list_lit_repeat1] = STATE(2052), - [aux_sym__bare_list_lit_repeat1] = STATE(70), - [sym__ws] = ACTIONS(373), - [sym_comment] = ACTIONS(373), - [anon_sym_POUND_] = ACTIONS(343), + [sym__gap] = STATE(1288), + [sym_dis_expr] = STATE(1288), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_defun_keyword] = STATE(556), + [sym_defun_header] = STATE(165), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(161), + [sym__ws] = ACTIONS(410), + [sym_comment] = ACTIONS(410), + [anon_sym_POUND_] = ACTIONS(378), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(345), + [anon_sym_DOT] = ACTIONS(380), [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(345), + [sym_nil_lit] = ACTIONS(380), [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(375), + [anon_sym_RPAREN] = ACTIONS(412), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -11689,70 +11824,71 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COMMA_AT] = ACTIONS(43), [anon_sym_COMMA] = ACTIONS(45), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(345), - [anon_sym_cl] = ACTIONS(377), - [anon_sym_loop] = ACTIONS(379), - [anon_sym_defun] = ACTIONS(353), - [anon_sym_defmacro] = ACTIONS(353), - [anon_sym_defgeneric] = ACTIONS(353), - [anon_sym_defmethod] = ACTIONS(353), - [anon_sym_lambda] = ACTIONS(355), + [sym_fancy_literal] = ACTIONS(380), + [anon_sym_cl] = ACTIONS(414), + [anon_sym_loop] = ACTIONS(416), + [anon_sym_defun] = ACTIONS(388), + [anon_sym_defmacro] = ACTIONS(388), + [anon_sym_defgeneric] = ACTIONS(388), + [anon_sym_defmethod] = ACTIONS(388), + [anon_sym_lambda] = ACTIONS(390), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [anon_sym_POUND_PLUS] = ACTIONS(53), - [anon_sym_POUND_DASH] = ACTIONS(53), - [anon_sym_POUNDC] = ACTIONS(55), - [anon_sym_POUNDc] = ACTIONS(55), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), }, [23] = { - [sym__gap] = STATE(1386), - [sym_dis_expr] = STATE(1386), - [sym__form] = STATE(1658), - [sym_num_lit] = STATE(1658), - [sym_kwd_lit] = STATE(1658), - [sym_str_lit] = STATE(1658), - [sym_char_lit] = STATE(1658), - [sym_sym_lit] = STATE(1610), - [sym__metadata_lit] = STATE(2236), - [sym_meta_lit] = STATE(2222), - [sym_old_meta_lit] = STATE(2221), - [sym_list_lit] = STATE(1658), - [sym__bare_list_lit] = STATE(1609), - [sym_vec_lit] = STATE(1658), - [sym_set_lit] = STATE(1658), - [sym__bare_set_lit] = STATE(1608), - [sym_read_cond_lit] = STATE(1658), - [sym_splicing_read_cond_lit] = STATE(1658), - [sym_var_quoting_lit] = STATE(1658), - [sym_quoting_lit] = STATE(1658), - [sym_syn_quoting_lit] = STATE(1658), - [sym_unquote_splicing_lit] = STATE(1658), - [sym_unquoting_lit] = STATE(1658), - [sym_defun] = STATE(1609), - [sym_loop_macro] = STATE(1609), - [sym_defun_keyword] = STATE(710), - [sym_defun_header] = STATE(113), - [sym_path_lit] = STATE(1658), - [sym_package_lit] = STATE(1658), - [sym_include_reader_macro] = STATE(1658), - [sym_complex_num_lit] = STATE(1658), - [aux_sym_list_lit_repeat1] = STATE(2052), - [aux_sym__bare_list_lit_repeat1] = STATE(112), - [sym__ws] = ACTIONS(381), - [sym_comment] = ACTIONS(381), - [anon_sym_POUND_] = ACTIONS(343), + [sym__gap] = STATE(1291), + [sym_dis_expr] = STATE(1291), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_defun_keyword] = STATE(556), + [sym_defun_header] = STATE(59), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(60), + [sym__ws] = ACTIONS(418), + [sym_comment] = ACTIONS(418), + [anon_sym_POUND_] = ACTIONS(378), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(345), + [anon_sym_DOT] = ACTIONS(380), [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(345), + [sym_nil_lit] = ACTIONS(380), [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(383), + [anon_sym_RPAREN] = ACTIONS(420), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -11763,70 +11899,71 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COMMA_AT] = ACTIONS(43), [anon_sym_COMMA] = ACTIONS(45), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(345), - [anon_sym_cl] = ACTIONS(385), - [anon_sym_loop] = ACTIONS(387), - [anon_sym_defun] = ACTIONS(353), - [anon_sym_defmacro] = ACTIONS(353), - [anon_sym_defgeneric] = ACTIONS(353), - [anon_sym_defmethod] = ACTIONS(353), - [anon_sym_lambda] = ACTIONS(355), + [sym_fancy_literal] = ACTIONS(380), + [anon_sym_cl] = ACTIONS(422), + [anon_sym_loop] = ACTIONS(424), + [anon_sym_defun] = ACTIONS(388), + [anon_sym_defmacro] = ACTIONS(388), + [anon_sym_defgeneric] = ACTIONS(388), + [anon_sym_defmethod] = ACTIONS(388), + [anon_sym_lambda] = ACTIONS(390), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [anon_sym_POUND_PLUS] = ACTIONS(53), - [anon_sym_POUND_DASH] = ACTIONS(53), - [anon_sym_POUNDC] = ACTIONS(55), - [anon_sym_POUNDc] = ACTIONS(55), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), }, [24] = { - [sym__gap] = STATE(1367), - [sym_dis_expr] = STATE(1367), - [sym__form] = STATE(1658), - [sym_num_lit] = STATE(1658), - [sym_kwd_lit] = STATE(1658), - [sym_str_lit] = STATE(1658), - [sym_char_lit] = STATE(1658), - [sym_sym_lit] = STATE(1610), - [sym__metadata_lit] = STATE(2236), - [sym_meta_lit] = STATE(2222), - [sym_old_meta_lit] = STATE(2221), - [sym_list_lit] = STATE(1658), - [sym__bare_list_lit] = STATE(1609), - [sym_vec_lit] = STATE(1658), - [sym_set_lit] = STATE(1658), - [sym__bare_set_lit] = STATE(1608), - [sym_read_cond_lit] = STATE(1658), - [sym_splicing_read_cond_lit] = STATE(1658), - [sym_var_quoting_lit] = STATE(1658), - [sym_quoting_lit] = STATE(1658), - [sym_syn_quoting_lit] = STATE(1658), - [sym_unquote_splicing_lit] = STATE(1658), - [sym_unquoting_lit] = STATE(1658), - [sym_defun] = STATE(1609), - [sym_loop_macro] = STATE(1609), - [sym_defun_keyword] = STATE(710), - [sym_defun_header] = STATE(68), - [sym_path_lit] = STATE(1658), - [sym_package_lit] = STATE(1658), - [sym_include_reader_macro] = STATE(1658), - [sym_complex_num_lit] = STATE(1658), - [aux_sym_list_lit_repeat1] = STATE(2052), - [aux_sym__bare_list_lit_repeat1] = STATE(69), - [sym__ws] = ACTIONS(389), - [sym_comment] = ACTIONS(389), - [anon_sym_POUND_] = ACTIONS(343), + [sym__gap] = STATE(1293), + [sym_dis_expr] = STATE(1293), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_defun_keyword] = STATE(556), + [sym_defun_header] = STATE(87), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(88), + [sym__ws] = ACTIONS(426), + [sym_comment] = ACTIONS(426), + [anon_sym_POUND_] = ACTIONS(378), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(345), + [anon_sym_DOT] = ACTIONS(380), [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(345), + [sym_nil_lit] = ACTIONS(380), [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(391), + [anon_sym_RPAREN] = ACTIONS(428), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -11837,70 +11974,71 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COMMA_AT] = ACTIONS(43), [anon_sym_COMMA] = ACTIONS(45), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(345), - [anon_sym_cl] = ACTIONS(393), - [anon_sym_loop] = ACTIONS(395), - [anon_sym_defun] = ACTIONS(353), - [anon_sym_defmacro] = ACTIONS(353), - [anon_sym_defgeneric] = ACTIONS(353), - [anon_sym_defmethod] = ACTIONS(353), - [anon_sym_lambda] = ACTIONS(355), + [sym_fancy_literal] = ACTIONS(380), + [anon_sym_cl] = ACTIONS(430), + [anon_sym_loop] = ACTIONS(432), + [anon_sym_defun] = ACTIONS(388), + [anon_sym_defmacro] = ACTIONS(388), + [anon_sym_defgeneric] = ACTIONS(388), + [anon_sym_defmethod] = ACTIONS(388), + [anon_sym_lambda] = ACTIONS(390), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [anon_sym_POUND_PLUS] = ACTIONS(53), - [anon_sym_POUND_DASH] = ACTIONS(53), - [anon_sym_POUNDC] = ACTIONS(55), - [anon_sym_POUNDc] = ACTIONS(55), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), }, [25] = { - [sym__gap] = STATE(1385), - [sym_dis_expr] = STATE(1385), - [sym__form] = STATE(1658), - [sym_num_lit] = STATE(1658), - [sym_kwd_lit] = STATE(1658), - [sym_str_lit] = STATE(1658), - [sym_char_lit] = STATE(1658), - [sym_sym_lit] = STATE(1610), - [sym__metadata_lit] = STATE(2236), - [sym_meta_lit] = STATE(2222), - [sym_old_meta_lit] = STATE(2221), - [sym_list_lit] = STATE(1658), - [sym__bare_list_lit] = STATE(1609), - [sym_vec_lit] = STATE(1658), - [sym_set_lit] = STATE(1658), - [sym__bare_set_lit] = STATE(1608), - [sym_read_cond_lit] = STATE(1658), - [sym_splicing_read_cond_lit] = STATE(1658), - [sym_var_quoting_lit] = STATE(1658), - [sym_quoting_lit] = STATE(1658), - [sym_syn_quoting_lit] = STATE(1658), - [sym_unquote_splicing_lit] = STATE(1658), - [sym_unquoting_lit] = STATE(1658), - [sym_defun] = STATE(1609), - [sym_loop_macro] = STATE(1609), - [sym_defun_keyword] = STATE(710), - [sym_defun_header] = STATE(159), - [sym_path_lit] = STATE(1658), - [sym_package_lit] = STATE(1658), - [sym_include_reader_macro] = STATE(1658), - [sym_complex_num_lit] = STATE(1658), - [aux_sym_list_lit_repeat1] = STATE(2052), - [aux_sym__bare_list_lit_repeat1] = STATE(158), - [sym__ws] = ACTIONS(397), - [sym_comment] = ACTIONS(397), - [anon_sym_POUND_] = ACTIONS(343), + [sym__gap] = STATE(1295), + [sym_dis_expr] = STATE(1295), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_defun_keyword] = STATE(556), + [sym_defun_header] = STATE(70), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(71), + [sym__ws] = ACTIONS(434), + [sym_comment] = ACTIONS(434), + [anon_sym_POUND_] = ACTIONS(378), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(345), + [anon_sym_DOT] = ACTIONS(380), [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(345), + [sym_nil_lit] = ACTIONS(380), [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(399), + [anon_sym_RPAREN] = ACTIONS(436), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -11911,70 +12049,71 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COMMA_AT] = ACTIONS(43), [anon_sym_COMMA] = ACTIONS(45), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(345), - [anon_sym_cl] = ACTIONS(401), - [anon_sym_loop] = ACTIONS(403), - [anon_sym_defun] = ACTIONS(353), - [anon_sym_defmacro] = ACTIONS(353), - [anon_sym_defgeneric] = ACTIONS(353), - [anon_sym_defmethod] = ACTIONS(353), - [anon_sym_lambda] = ACTIONS(355), + [sym_fancy_literal] = ACTIONS(380), + [anon_sym_cl] = ACTIONS(438), + [anon_sym_loop] = ACTIONS(440), + [anon_sym_defun] = ACTIONS(388), + [anon_sym_defmacro] = ACTIONS(388), + [anon_sym_defgeneric] = ACTIONS(388), + [anon_sym_defmethod] = ACTIONS(388), + [anon_sym_lambda] = ACTIONS(390), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [anon_sym_POUND_PLUS] = ACTIONS(53), - [anon_sym_POUND_DASH] = ACTIONS(53), - [anon_sym_POUNDC] = ACTIONS(55), - [anon_sym_POUNDc] = ACTIONS(55), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), }, [26] = { - [sym__gap] = STATE(1390), - [sym_dis_expr] = STATE(1390), - [sym__form] = STATE(1658), - [sym_num_lit] = STATE(1658), - [sym_kwd_lit] = STATE(1658), - [sym_str_lit] = STATE(1658), - [sym_char_lit] = STATE(1658), - [sym_sym_lit] = STATE(1610), - [sym__metadata_lit] = STATE(2236), - [sym_meta_lit] = STATE(2222), - [sym_old_meta_lit] = STATE(2221), - [sym_list_lit] = STATE(1658), - [sym__bare_list_lit] = STATE(1609), - [sym_vec_lit] = STATE(1658), - [sym_set_lit] = STATE(1658), - [sym__bare_set_lit] = STATE(1608), - [sym_read_cond_lit] = STATE(1658), - [sym_splicing_read_cond_lit] = STATE(1658), - [sym_var_quoting_lit] = STATE(1658), - [sym_quoting_lit] = STATE(1658), - [sym_syn_quoting_lit] = STATE(1658), - [sym_unquote_splicing_lit] = STATE(1658), - [sym_unquoting_lit] = STATE(1658), - [sym_defun] = STATE(1609), - [sym_loop_macro] = STATE(1609), - [sym_defun_keyword] = STATE(710), - [sym_defun_header] = STATE(116), - [sym_path_lit] = STATE(1658), - [sym_package_lit] = STATE(1658), - [sym_include_reader_macro] = STATE(1658), - [sym_complex_num_lit] = STATE(1658), - [aux_sym_list_lit_repeat1] = STATE(2052), - [aux_sym__bare_list_lit_repeat1] = STATE(117), - [sym__ws] = ACTIONS(405), - [sym_comment] = ACTIONS(405), - [anon_sym_POUND_] = ACTIONS(343), + [sym__gap] = STATE(1290), + [sym_dis_expr] = STATE(1290), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_defun_keyword] = STATE(556), + [sym_defun_header] = STATE(46), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(47), + [sym__ws] = ACTIONS(442), + [sym_comment] = ACTIONS(442), + [anon_sym_POUND_] = ACTIONS(378), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(345), + [anon_sym_DOT] = ACTIONS(380), [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(345), + [sym_nil_lit] = ACTIONS(380), [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(407), + [anon_sym_RPAREN] = ACTIONS(444), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -11985,70 +12124,71 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COMMA_AT] = ACTIONS(43), [anon_sym_COMMA] = ACTIONS(45), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(345), - [anon_sym_cl] = ACTIONS(409), - [anon_sym_loop] = ACTIONS(411), - [anon_sym_defun] = ACTIONS(353), - [anon_sym_defmacro] = ACTIONS(353), - [anon_sym_defgeneric] = ACTIONS(353), - [anon_sym_defmethod] = ACTIONS(353), - [anon_sym_lambda] = ACTIONS(355), + [sym_fancy_literal] = ACTIONS(380), + [anon_sym_cl] = ACTIONS(446), + [anon_sym_loop] = ACTIONS(448), + [anon_sym_defun] = ACTIONS(388), + [anon_sym_defmacro] = ACTIONS(388), + [anon_sym_defgeneric] = ACTIONS(388), + [anon_sym_defmethod] = ACTIONS(388), + [anon_sym_lambda] = ACTIONS(390), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [anon_sym_POUND_PLUS] = ACTIONS(53), - [anon_sym_POUND_DASH] = ACTIONS(53), - [anon_sym_POUNDC] = ACTIONS(55), - [anon_sym_POUNDc] = ACTIONS(55), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), }, [27] = { - [sym__gap] = STATE(1383), - [sym_dis_expr] = STATE(1383), - [sym__form] = STATE(1658), - [sym_num_lit] = STATE(1658), - [sym_kwd_lit] = STATE(1658), - [sym_str_lit] = STATE(1658), - [sym_char_lit] = STATE(1658), - [sym_sym_lit] = STATE(1610), - [sym__metadata_lit] = STATE(2236), - [sym_meta_lit] = STATE(2222), - [sym_old_meta_lit] = STATE(2221), - [sym_list_lit] = STATE(1658), - [sym__bare_list_lit] = STATE(1609), - [sym_vec_lit] = STATE(1658), - [sym_set_lit] = STATE(1658), - [sym__bare_set_lit] = STATE(1608), - [sym_read_cond_lit] = STATE(1658), - [sym_splicing_read_cond_lit] = STATE(1658), - [sym_var_quoting_lit] = STATE(1658), - [sym_quoting_lit] = STATE(1658), - [sym_syn_quoting_lit] = STATE(1658), - [sym_unquote_splicing_lit] = STATE(1658), - [sym_unquoting_lit] = STATE(1658), - [sym_defun] = STATE(1609), - [sym_loop_macro] = STATE(1609), - [sym_defun_keyword] = STATE(710), - [sym_defun_header] = STATE(93), - [sym_path_lit] = STATE(1658), - [sym_package_lit] = STATE(1658), - [sym_include_reader_macro] = STATE(1658), - [sym_complex_num_lit] = STATE(1658), - [aux_sym_list_lit_repeat1] = STATE(2052), - [aux_sym__bare_list_lit_repeat1] = STATE(100), - [sym__ws] = ACTIONS(413), - [sym_comment] = ACTIONS(413), - [anon_sym_POUND_] = ACTIONS(343), + [sym__gap] = STATE(1292), + [sym_dis_expr] = STATE(1292), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_defun_keyword] = STATE(556), + [sym_defun_header] = STATE(73), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(74), + [sym__ws] = ACTIONS(450), + [sym_comment] = ACTIONS(450), + [anon_sym_POUND_] = ACTIONS(378), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(345), + [anon_sym_DOT] = ACTIONS(380), [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(345), + [sym_nil_lit] = ACTIONS(380), [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(415), + [anon_sym_RPAREN] = ACTIONS(452), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -12059,70 +12199,71 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COMMA_AT] = ACTIONS(43), [anon_sym_COMMA] = ACTIONS(45), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(345), - [anon_sym_cl] = ACTIONS(417), - [anon_sym_loop] = ACTIONS(419), - [anon_sym_defun] = ACTIONS(353), - [anon_sym_defmacro] = ACTIONS(353), - [anon_sym_defgeneric] = ACTIONS(353), - [anon_sym_defmethod] = ACTIONS(353), - [anon_sym_lambda] = ACTIONS(355), + [sym_fancy_literal] = ACTIONS(380), + [anon_sym_cl] = ACTIONS(454), + [anon_sym_loop] = ACTIONS(456), + [anon_sym_defun] = ACTIONS(388), + [anon_sym_defmacro] = ACTIONS(388), + [anon_sym_defgeneric] = ACTIONS(388), + [anon_sym_defmethod] = ACTIONS(388), + [anon_sym_lambda] = ACTIONS(390), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [anon_sym_POUND_PLUS] = ACTIONS(53), - [anon_sym_POUND_DASH] = ACTIONS(53), - [anon_sym_POUNDC] = ACTIONS(55), - [anon_sym_POUNDc] = ACTIONS(55), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), }, [28] = { - [sym__gap] = STATE(1389), - [sym_dis_expr] = STATE(1389), - [sym__form] = STATE(1658), - [sym_num_lit] = STATE(1658), - [sym_kwd_lit] = STATE(1658), - [sym_str_lit] = STATE(1658), - [sym_char_lit] = STATE(1658), - [sym_sym_lit] = STATE(1610), - [sym__metadata_lit] = STATE(2236), - [sym_meta_lit] = STATE(2222), - [sym_old_meta_lit] = STATE(2221), - [sym_list_lit] = STATE(1658), - [sym__bare_list_lit] = STATE(1609), - [sym_vec_lit] = STATE(1658), - [sym_set_lit] = STATE(1658), - [sym__bare_set_lit] = STATE(1608), - [sym_read_cond_lit] = STATE(1658), - [sym_splicing_read_cond_lit] = STATE(1658), - [sym_var_quoting_lit] = STATE(1658), - [sym_quoting_lit] = STATE(1658), - [sym_syn_quoting_lit] = STATE(1658), - [sym_unquote_splicing_lit] = STATE(1658), - [sym_unquoting_lit] = STATE(1658), - [sym_defun] = STATE(1609), - [sym_loop_macro] = STATE(1609), - [sym_defun_keyword] = STATE(710), - [sym_defun_header] = STATE(95), - [sym_path_lit] = STATE(1658), - [sym_package_lit] = STATE(1658), - [sym_include_reader_macro] = STATE(1658), - [sym_complex_num_lit] = STATE(1658), - [aux_sym_list_lit_repeat1] = STATE(2052), - [aux_sym__bare_list_lit_repeat1] = STATE(96), - [sym__ws] = ACTIONS(421), - [sym_comment] = ACTIONS(421), - [anon_sym_POUND_] = ACTIONS(343), + [sym__gap] = STATE(1294), + [sym_dis_expr] = STATE(1294), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_defun_keyword] = STATE(556), + [sym_defun_header] = STATE(108), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(109), + [sym__ws] = ACTIONS(458), + [sym_comment] = ACTIONS(458), + [anon_sym_POUND_] = ACTIONS(378), [anon_sym_POUND] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(345), + [anon_sym_DOT] = ACTIONS(380), [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(345), + [sym_nil_lit] = ACTIONS(380), [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(423), + [anon_sym_RPAREN] = ACTIONS(460), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -12133,337 +12274,1223 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COMMA_AT] = ACTIONS(43), [anon_sym_COMMA] = ACTIONS(45), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(345), - [anon_sym_cl] = ACTIONS(425), - [anon_sym_loop] = ACTIONS(427), - [anon_sym_defun] = ACTIONS(353), - [anon_sym_defmacro] = ACTIONS(353), - [anon_sym_defgeneric] = ACTIONS(353), - [anon_sym_defmethod] = ACTIONS(353), - [anon_sym_lambda] = ACTIONS(355), + [sym_fancy_literal] = ACTIONS(380), + [anon_sym_cl] = ACTIONS(462), + [anon_sym_loop] = ACTIONS(464), + [anon_sym_defun] = ACTIONS(388), + [anon_sym_defmacro] = ACTIONS(388), + [anon_sym_defgeneric] = ACTIONS(388), + [anon_sym_defmethod] = ACTIONS(388), + [anon_sym_lambda] = ACTIONS(390), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [anon_sym_POUND_PLUS] = ACTIONS(53), - [anon_sym_POUND_DASH] = ACTIONS(53), - [anon_sym_POUNDC] = ACTIONS(55), - [anon_sym_POUNDc] = ACTIONS(55), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), }, [29] = { - [sym_num_lit] = STATE(1605), - [sym_kwd_lit] = STATE(1605), - [sym_str_lit] = STATE(1605), - [sym_char_lit] = STATE(1605), - [sym_sym_lit] = STATE(1590), - [sym__metadata_lit] = STATE(2236), - [sym_meta_lit] = STATE(2222), - [sym_old_meta_lit] = STATE(2221), - [sym_list_lit] = STATE(1594), - [sym__bare_list_lit] = STATE(1609), - [sym_vec_lit] = STATE(1605), - [sym_set_lit] = STATE(1605), - [sym__bare_set_lit] = STATE(1608), - [sym_read_cond_lit] = STATE(1605), - [sym_splicing_read_cond_lit] = STATE(1605), - [sym_var_quoting_lit] = STATE(1605), - [sym_quoting_lit] = STATE(1605), - [sym_syn_quoting_lit] = STATE(1605), - [sym_unquote_splicing_lit] = STATE(1605), - [sym_unquoting_lit] = STATE(1605), - [sym_defun] = STATE(1609), - [sym_loop_macro] = STATE(1609), - [sym_array_dimension] = STATE(2357), - [sym_path_lit] = STATE(1605), - [sym_package_lit] = STATE(1605), - [sym_include_reader_macro] = STATE(1605), - [sym_complex_num_lit] = STATE(1605), - [aux_sym_list_lit_repeat1] = STATE(2042), - [anon_sym_POUND] = ACTIONS(429), - [aux_sym__form_token1] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), - [aux_sym_num_lit_token1] = ACTIONS(435), + [sym_num_lit] = STATE(1398), + [sym_kwd_lit] = STATE(1398), + [sym_str_lit] = STATE(1398), + [sym_char_lit] = STATE(1398), + [sym_sym_lit] = STATE(1394), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1392), + [sym__bare_list_lit] = STATE(1356), + [sym_vec_lit] = STATE(1398), + [sym_set_lit] = STATE(1398), + [sym__bare_set_lit] = STATE(1401), + [sym_read_cond_lit] = STATE(1398), + [sym_splicing_read_cond_lit] = STATE(1398), + [sym_var_quoting_lit] = STATE(1398), + [sym_quoting_lit] = STATE(1398), + [sym_syn_quoting_lit] = STATE(1398), + [sym_unquote_splicing_lit] = STATE(1398), + [sym_unquoting_lit] = STATE(1398), + [sym_defun] = STATE(1356), + [sym_loop_macro] = STATE(1356), + [sym_array_dimension] = STATE(2375), + [sym_path_lit] = STATE(1398), + [sym_package_lit] = STATE(1398), + [sym_include_reader_macro] = STATE(1398), + [sym_complex_num_lit] = STATE(1398), + [aux_sym_list_lit_repeat1] = STATE(2134), + [anon_sym_POUND] = ACTIONS(466), + [aux_sym__form_token1] = ACTIONS(468), + [anon_sym_DOT] = ACTIONS(470), + [aux_sym_num_lit_token1] = ACTIONS(472), + [anon_sym_COLON] = ACTIONS(474), + [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_DQUOTE] = ACTIONS(478), + [aux_sym_char_lit_token1] = ACTIONS(480), + [aux_sym_char_lit_token2] = ACTIONS(480), + [aux_sym_char_lit_token3] = ACTIONS(482), + [aux_sym_char_lit_token4] = ACTIONS(480), + [aux_sym_char_lit_token5] = ACTIONS(482), + [aux_sym_char_lit_token6] = ACTIONS(482), + [sym_nil_lit] = ACTIONS(470), + [aux_sym_sym_lit_token1] = ACTIONS(484), + [anon_sym_CARET] = ACTIONS(25), + [anon_sym_POUND_CARET] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(486), + [anon_sym_LBRACE] = ACTIONS(488), + [anon_sym_POUND0A] = ACTIONS(490), + [anon_sym_POUND0a] = ACTIONS(490), + [anon_sym_POUND_QMARK] = ACTIONS(492), + [anon_sym_POUND_QMARK_AT] = ACTIONS(494), + [anon_sym_POUND_SQUOTE] = ACTIONS(496), + [anon_sym_SQUOTE] = ACTIONS(498), + [anon_sym_BQUOTE] = ACTIONS(500), + [anon_sym_COMMA_AT] = ACTIONS(502), + [anon_sym_COMMA] = ACTIONS(504), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(470), + [anon_sym_cl] = ACTIONS(506), + [anon_sym_POUNDP] = ACTIONS(508), + [anon_sym_POUNDp] = ACTIONS(508), + [sym_self_referential_reader_macro] = ACTIONS(510), + [anon_sym_POUND_PLUS] = ACTIONS(512), + [anon_sym_POUND_DASH] = ACTIONS(512), + [anon_sym_POUNDC] = ACTIONS(514), + [anon_sym_POUNDc] = ACTIONS(514), + }, + [30] = { + [sym_num_lit] = STATE(1904), + [sym_kwd_lit] = STATE(1904), + [sym_str_lit] = STATE(1904), + [sym_char_lit] = STATE(1904), + [sym_sym_lit] = STATE(1833), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1907), + [sym__bare_list_lit] = STATE(1901), + [sym_vec_lit] = STATE(1904), + [sym_set_lit] = STATE(1904), + [sym__bare_set_lit] = STATE(1902), + [sym_read_cond_lit] = STATE(1904), + [sym_splicing_read_cond_lit] = STATE(1904), + [sym_var_quoting_lit] = STATE(1904), + [sym_quoting_lit] = STATE(1904), + [sym_syn_quoting_lit] = STATE(1904), + [sym_unquote_splicing_lit] = STATE(1904), + [sym_unquoting_lit] = STATE(1904), + [sym_defun] = STATE(1901), + [sym_loop_macro] = STATE(1901), + [sym_array_dimension] = STATE(2374), + [sym_path_lit] = STATE(1904), + [sym_package_lit] = STATE(1904), + [sym_include_reader_macro] = STATE(1904), + [sym_complex_num_lit] = STATE(1904), + [aux_sym_list_lit_repeat1] = STATE(2150), + [anon_sym_POUND] = ACTIONS(516), + [aux_sym__form_token1] = ACTIONS(518), + [anon_sym_DOT] = ACTIONS(520), + [aux_sym_num_lit_token1] = ACTIONS(522), + [anon_sym_COLON] = ACTIONS(524), + [anon_sym_COLON_COLON] = ACTIONS(526), + [anon_sym_DQUOTE] = ACTIONS(528), + [aux_sym_char_lit_token1] = ACTIONS(530), + [aux_sym_char_lit_token2] = ACTIONS(530), + [aux_sym_char_lit_token3] = ACTIONS(532), + [aux_sym_char_lit_token4] = ACTIONS(530), + [aux_sym_char_lit_token5] = ACTIONS(532), + [aux_sym_char_lit_token6] = ACTIONS(532), + [sym_nil_lit] = ACTIONS(520), + [aux_sym_sym_lit_token1] = ACTIONS(534), + [anon_sym_CARET] = ACTIONS(25), + [anon_sym_POUND_CARET] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(536), + [anon_sym_LBRACE] = ACTIONS(538), + [anon_sym_POUND0A] = ACTIONS(540), + [anon_sym_POUND0a] = ACTIONS(540), + [anon_sym_POUND_QMARK] = ACTIONS(542), + [anon_sym_POUND_QMARK_AT] = ACTIONS(544), + [anon_sym_POUND_SQUOTE] = ACTIONS(546), + [anon_sym_SQUOTE] = ACTIONS(548), + [anon_sym_BQUOTE] = ACTIONS(550), + [anon_sym_COMMA_AT] = ACTIONS(552), + [anon_sym_COMMA] = ACTIONS(554), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(520), + [anon_sym_cl] = ACTIONS(556), + [anon_sym_POUNDP] = ACTIONS(558), + [anon_sym_POUNDp] = ACTIONS(558), + [sym_self_referential_reader_macro] = ACTIONS(560), + [anon_sym_POUND_PLUS] = ACTIONS(562), + [anon_sym_POUND_DASH] = ACTIONS(562), + [anon_sym_POUNDC] = ACTIONS(564), + [anon_sym_POUNDc] = ACTIONS(564), + }, + [31] = { + [sym_num_lit] = STATE(1075), + [sym_kwd_lit] = STATE(1075), + [sym_str_lit] = STATE(1075), + [sym_char_lit] = STATE(1075), + [sym_sym_lit] = STATE(1073), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1072), + [sym__bare_list_lit] = STATE(1078), + [sym_vec_lit] = STATE(1075), + [sym_set_lit] = STATE(1075), + [sym__bare_set_lit] = STATE(1077), + [sym_read_cond_lit] = STATE(1075), + [sym_splicing_read_cond_lit] = STATE(1075), + [sym_var_quoting_lit] = STATE(1075), + [sym_quoting_lit] = STATE(1075), + [sym_syn_quoting_lit] = STATE(1075), + [sym_unquote_splicing_lit] = STATE(1075), + [sym_unquoting_lit] = STATE(1075), + [sym_defun] = STATE(1078), + [sym_loop_macro] = STATE(1078), + [sym_array_dimension] = STATE(2378), + [sym_path_lit] = STATE(1075), + [sym_package_lit] = STATE(1075), + [sym_include_reader_macro] = STATE(1075), + [sym_complex_num_lit] = STATE(1075), + [aux_sym_list_lit_repeat1] = STATE(2137), + [anon_sym_POUND] = ACTIONS(566), + [aux_sym__form_token1] = ACTIONS(568), + [anon_sym_DOT] = ACTIONS(570), + [aux_sym_num_lit_token1] = ACTIONS(194), + [anon_sym_COLON] = ACTIONS(196), + [anon_sym_COLON_COLON] = ACTIONS(198), + [anon_sym_DQUOTE] = ACTIONS(200), + [aux_sym_char_lit_token1] = ACTIONS(572), + [aux_sym_char_lit_token2] = ACTIONS(572), + [aux_sym_char_lit_token3] = ACTIONS(574), + [aux_sym_char_lit_token4] = ACTIONS(572), + [aux_sym_char_lit_token5] = ACTIONS(574), + [aux_sym_char_lit_token6] = ACTIONS(574), + [sym_nil_lit] = ACTIONS(570), + [aux_sym_sym_lit_token1] = ACTIONS(202), + [anon_sym_CARET] = ACTIONS(25), + [anon_sym_POUND_CARET] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(576), + [anon_sym_LBRACE] = ACTIONS(578), + [anon_sym_POUND0A] = ACTIONS(215), + [anon_sym_POUND0a] = ACTIONS(215), + [anon_sym_POUND_QMARK] = ACTIONS(217), + [anon_sym_POUND_QMARK_AT] = ACTIONS(219), + [anon_sym_POUND_SQUOTE] = ACTIONS(221), + [anon_sym_SQUOTE] = ACTIONS(223), + [anon_sym_BQUOTE] = ACTIONS(225), + [anon_sym_COMMA_AT] = ACTIONS(227), + [anon_sym_COMMA] = ACTIONS(229), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(570), + [anon_sym_cl] = ACTIONS(580), + [anon_sym_POUNDP] = ACTIONS(236), + [anon_sym_POUNDp] = ACTIONS(236), + [sym_self_referential_reader_macro] = ACTIONS(582), + [anon_sym_POUND_PLUS] = ACTIONS(240), + [anon_sym_POUND_DASH] = ACTIONS(240), + [anon_sym_POUNDC] = ACTIONS(242), + [anon_sym_POUNDc] = ACTIONS(242), + }, + [32] = { + [sym_num_lit] = STATE(2312), + [sym_kwd_lit] = STATE(2312), + [sym_str_lit] = STATE(2312), + [sym_char_lit] = STATE(2312), + [sym_sym_lit] = STATE(2400), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(2309), + [sym__bare_list_lit] = STATE(2315), + [sym_vec_lit] = STATE(2312), + [sym_set_lit] = STATE(2312), + [sym__bare_set_lit] = STATE(2313), + [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(2315), + [sym_loop_macro] = STATE(2315), + [sym_array_dimension] = STATE(2345), + [sym_path_lit] = STATE(2312), + [sym_package_lit] = STATE(2312), + [sym_include_reader_macro] = STATE(2312), + [sym_complex_num_lit] = STATE(2312), + [aux_sym_list_lit_repeat1] = STATE(2155), + [anon_sym_POUND] = ACTIONS(584), + [aux_sym__form_token1] = ACTIONS(586), + [anon_sym_DOT] = ACTIONS(588), + [aux_sym_num_lit_token1] = ACTIONS(590), + [anon_sym_COLON] = ACTIONS(592), + [anon_sym_COLON_COLON] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(596), + [aux_sym_char_lit_token1] = ACTIONS(598), + [aux_sym_char_lit_token2] = ACTIONS(598), + [aux_sym_char_lit_token3] = ACTIONS(600), + [aux_sym_char_lit_token4] = ACTIONS(598), + [aux_sym_char_lit_token5] = ACTIONS(600), + [aux_sym_char_lit_token6] = ACTIONS(600), + [sym_nil_lit] = ACTIONS(588), + [aux_sym_sym_lit_token1] = ACTIONS(602), + [anon_sym_CARET] = ACTIONS(25), + [anon_sym_POUND_CARET] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(604), + [anon_sym_LBRACE] = ACTIONS(606), + [anon_sym_POUND0A] = ACTIONS(608), + [anon_sym_POUND0a] = ACTIONS(608), + [anon_sym_POUND_QMARK] = ACTIONS(610), + [anon_sym_POUND_QMARK_AT] = ACTIONS(612), + [anon_sym_POUND_SQUOTE] = ACTIONS(614), + [anon_sym_SQUOTE] = ACTIONS(616), + [anon_sym_BQUOTE] = ACTIONS(618), + [anon_sym_COMMA_AT] = ACTIONS(620), + [anon_sym_COMMA] = ACTIONS(622), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(588), + [anon_sym_cl] = ACTIONS(624), + [anon_sym_POUNDP] = ACTIONS(626), + [anon_sym_POUNDp] = ACTIONS(626), + [sym_self_referential_reader_macro] = ACTIONS(628), + [anon_sym_POUND_PLUS] = ACTIONS(630), + [anon_sym_POUND_DASH] = ACTIONS(630), + [anon_sym_POUNDC] = ACTIONS(632), + [anon_sym_POUNDc] = ACTIONS(632), + }, + [33] = { + [sym__gap] = STATE(33), + [sym_dis_expr] = STATE(33), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(33), + [sym__ws] = ACTIONS(634), + [sym_comment] = ACTIONS(634), + [anon_sym_POUND_] = ACTIONS(637), + [anon_sym_POUND] = ACTIONS(640), + [anon_sym_DOT] = ACTIONS(643), + [aux_sym_num_lit_token1] = ACTIONS(646), + [anon_sym_COLON] = ACTIONS(649), + [anon_sym_COLON_COLON] = ACTIONS(652), + [anon_sym_DQUOTE] = ACTIONS(655), + [sym_nil_lit] = ACTIONS(643), + [aux_sym_sym_lit_token1] = ACTIONS(658), + [anon_sym_CARET] = ACTIONS(661), + [anon_sym_POUND_CARET] = ACTIONS(664), + [anon_sym_LPAREN] = ACTIONS(667), + [anon_sym_RPAREN] = ACTIONS(670), + [anon_sym_RBRACE] = ACTIONS(670), + [anon_sym_POUND0A] = ACTIONS(672), + [anon_sym_POUND0a] = ACTIONS(672), + [anon_sym_POUND_QMARK] = ACTIONS(675), + [anon_sym_POUND_QMARK_AT] = ACTIONS(678), + [anon_sym_POUND_SQUOTE] = ACTIONS(681), + [anon_sym_SQUOTE] = ACTIONS(684), + [anon_sym_BQUOTE] = ACTIONS(687), + [anon_sym_COMMA_AT] = ACTIONS(690), + [anon_sym_COMMA] = ACTIONS(693), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(643), + [anon_sym_cl] = ACTIONS(696), + [anon_sym_POUNDP] = ACTIONS(699), + [anon_sym_POUNDp] = ACTIONS(699), + [sym_self_referential_reader_macro] = ACTIONS(702), + [anon_sym_POUND_PLUS] = ACTIONS(705), + [anon_sym_POUND_DASH] = ACTIONS(705), + [anon_sym_POUNDC] = ACTIONS(708), + [anon_sym_POUNDc] = ACTIONS(708), + }, + [34] = { + [sym_num_lit] = STATE(1559), + [sym_kwd_lit] = STATE(1559), + [sym_str_lit] = STATE(1559), + [sym_char_lit] = STATE(1559), + [sym_sym_lit] = STATE(1557), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1556), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1559), + [sym_set_lit] = STATE(1559), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1559), + [sym_splicing_read_cond_lit] = STATE(1559), + [sym_var_quoting_lit] = STATE(1559), + [sym_quoting_lit] = STATE(1559), + [sym_syn_quoting_lit] = STATE(1559), + [sym_unquote_splicing_lit] = STATE(1559), + [sym_unquoting_lit] = STATE(1559), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_array_dimension] = STATE(2339), + [sym_path_lit] = STATE(1559), + [sym_package_lit] = STATE(1559), + [sym_include_reader_macro] = STATE(1559), + [sym_complex_num_lit] = STATE(1559), + [aux_sym_list_lit_repeat1] = STATE(2153), + [anon_sym_POUND] = ACTIONS(711), + [aux_sym__form_token1] = ACTIONS(713), + [anon_sym_DOT] = ACTIONS(715), + [aux_sym_num_lit_token1] = ACTIONS(15), [anon_sym_COLON] = ACTIONS(17), [anon_sym_COLON_COLON] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), - [aux_sym_char_lit_token1] = ACTIONS(437), - [aux_sym_char_lit_token2] = ACTIONS(437), - [aux_sym_char_lit_token3] = ACTIONS(439), - [aux_sym_char_lit_token4] = ACTIONS(437), - [aux_sym_char_lit_token5] = ACTIONS(439), - [aux_sym_char_lit_token6] = ACTIONS(439), - [sym_nil_lit] = ACTIONS(433), + [aux_sym_char_lit_token1] = ACTIONS(717), + [aux_sym_char_lit_token2] = ACTIONS(717), + [aux_sym_char_lit_token3] = ACTIONS(719), + [aux_sym_char_lit_token4] = ACTIONS(717), + [aux_sym_char_lit_token5] = ACTIONS(719), + [aux_sym_char_lit_token6] = ACTIONS(719), + [sym_nil_lit] = ACTIONS(715), [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_LBRACE] = ACTIONS(441), - [anon_sym_POUND0A] = ACTIONS(443), - [anon_sym_POUND0a] = ACTIONS(443), + [anon_sym_LBRACE] = ACTIONS(721), + [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(445), - [anon_sym_SQUOTE] = ACTIONS(447), - [anon_sym_BQUOTE] = ACTIONS(449), - [anon_sym_COMMA_AT] = ACTIONS(451), - [anon_sym_COMMA] = ACTIONS(453), + [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(433), + [sym_fancy_literal] = ACTIONS(715), [anon_sym_cl] = ACTIONS(49), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [anon_sym_POUND_PLUS] = ACTIONS(455), - [anon_sym_POUND_DASH] = ACTIONS(455), - [anon_sym_POUNDC] = ACTIONS(55), - [anon_sym_POUNDc] = ACTIONS(55), + [sym_self_referential_reader_macro] = ACTIONS(723), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), }, - [30] = { - [sym__gap] = STATE(30), - [sym_dis_expr] = STATE(30), - [sym__form] = STATE(1658), - [sym_num_lit] = STATE(1658), - [sym_kwd_lit] = STATE(1658), - [sym_str_lit] = STATE(1658), - [sym_char_lit] = STATE(1658), - [sym_sym_lit] = STATE(1610), - [sym__metadata_lit] = STATE(2236), - [sym_meta_lit] = STATE(2222), - [sym_old_meta_lit] = STATE(2221), - [sym_list_lit] = STATE(1658), - [sym__bare_list_lit] = STATE(1609), - [sym_vec_lit] = STATE(1658), - [sym_set_lit] = STATE(1658), - [sym__bare_set_lit] = STATE(1608), - [sym_read_cond_lit] = STATE(1658), - [sym_splicing_read_cond_lit] = STATE(1658), - [sym_var_quoting_lit] = STATE(1658), - [sym_quoting_lit] = STATE(1658), - [sym_syn_quoting_lit] = STATE(1658), - [sym_unquote_splicing_lit] = STATE(1658), - [sym_unquoting_lit] = STATE(1658), - [sym_defun] = STATE(1609), - [sym_loop_macro] = STATE(1609), - [sym_path_lit] = STATE(1658), - [sym_package_lit] = STATE(1658), - [sym_include_reader_macro] = STATE(1658), - [sym_complex_num_lit] = STATE(1658), - [aux_sym_list_lit_repeat1] = STATE(2052), - [aux_sym__bare_list_lit_repeat1] = STATE(30), - [sym__ws] = ACTIONS(457), - [sym_comment] = ACTIONS(457), - [anon_sym_POUND_] = ACTIONS(460), - [anon_sym_POUND] = ACTIONS(463), - [anon_sym_DOT] = ACTIONS(466), - [aux_sym_num_lit_token1] = ACTIONS(469), - [anon_sym_COLON] = ACTIONS(472), - [anon_sym_COLON_COLON] = ACTIONS(475), - [anon_sym_DQUOTE] = ACTIONS(478), - [sym_nil_lit] = ACTIONS(466), - [aux_sym_sym_lit_token1] = ACTIONS(481), - [anon_sym_CARET] = ACTIONS(484), - [anon_sym_POUND_CARET] = ACTIONS(487), - [anon_sym_LPAREN] = ACTIONS(490), - [anon_sym_RPAREN] = ACTIONS(493), - [anon_sym_RBRACE] = ACTIONS(493), - [anon_sym_POUND0A] = ACTIONS(495), - [anon_sym_POUND0a] = ACTIONS(495), - [anon_sym_POUND_QMARK] = ACTIONS(498), - [anon_sym_POUND_QMARK_AT] = ACTIONS(501), - [anon_sym_POUND_SQUOTE] = ACTIONS(504), - [anon_sym_SQUOTE] = ACTIONS(507), - [anon_sym_BQUOTE] = ACTIONS(510), - [anon_sym_COMMA_AT] = ACTIONS(513), - [anon_sym_COMMA] = ACTIONS(516), + [35] = { + [sym_num_lit] = STATE(2312), + [sym_kwd_lit] = STATE(2312), + [sym_str_lit] = STATE(2312), + [sym_char_lit] = STATE(2312), + [sym_sym_lit] = STATE(2400), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(2309), + [sym__bare_list_lit] = STATE(2315), + [sym_vec_lit] = STATE(2312), + [sym_set_lit] = STATE(2312), + [sym__bare_set_lit] = STATE(2313), + [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(2315), + [sym_loop_macro] = STATE(2315), + [sym_array_dimension] = STATE(2377), + [sym_path_lit] = STATE(2312), + [sym_package_lit] = STATE(2312), + [sym_include_reader_macro] = STATE(2312), + [sym_complex_num_lit] = STATE(2312), + [aux_sym_list_lit_repeat1] = STATE(2146), + [anon_sym_POUND] = ACTIONS(725), + [aux_sym__form_token1] = ACTIONS(727), + [anon_sym_DOT] = ACTIONS(588), + [aux_sym_num_lit_token1] = ACTIONS(729), + [anon_sym_COLON] = ACTIONS(592), + [anon_sym_COLON_COLON] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(596), + [aux_sym_char_lit_token1] = ACTIONS(598), + [aux_sym_char_lit_token2] = ACTIONS(598), + [aux_sym_char_lit_token3] = ACTIONS(600), + [aux_sym_char_lit_token4] = ACTIONS(598), + [aux_sym_char_lit_token5] = ACTIONS(600), + [aux_sym_char_lit_token6] = ACTIONS(600), + [sym_nil_lit] = ACTIONS(588), + [aux_sym_sym_lit_token1] = ACTIONS(602), + [anon_sym_CARET] = ACTIONS(25), + [anon_sym_POUND_CARET] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(536), + [anon_sym_LBRACE] = ACTIONS(606), + [anon_sym_POUND0A] = ACTIONS(731), + [anon_sym_POUND0a] = ACTIONS(731), + [anon_sym_POUND_QMARK] = ACTIONS(733), + [anon_sym_POUND_QMARK_AT] = ACTIONS(735), + [anon_sym_POUND_SQUOTE] = ACTIONS(737), + [anon_sym_SQUOTE] = ACTIONS(739), + [anon_sym_BQUOTE] = ACTIONS(741), + [anon_sym_COMMA_AT] = ACTIONS(743), + [anon_sym_COMMA] = ACTIONS(745), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(466), - [anon_sym_cl] = ACTIONS(519), - [anon_sym_POUNDP] = ACTIONS(522), - [anon_sym_POUNDp] = ACTIONS(522), - [anon_sym_POUND_PLUS] = ACTIONS(525), - [anon_sym_POUND_DASH] = ACTIONS(525), - [anon_sym_POUNDC] = ACTIONS(528), - [anon_sym_POUNDc] = ACTIONS(528), + [sym_fancy_literal] = ACTIONS(588), + [anon_sym_cl] = ACTIONS(624), + [anon_sym_POUNDP] = ACTIONS(626), + [anon_sym_POUNDp] = ACTIONS(626), + [sym_self_referential_reader_macro] = ACTIONS(628), + [anon_sym_POUND_PLUS] = ACTIONS(747), + [anon_sym_POUND_DASH] = ACTIONS(747), + [anon_sym_POUNDC] = ACTIONS(632), + [anon_sym_POUNDc] = ACTIONS(632), }, - [31] = { - [sym_num_lit] = STATE(880), - [sym_kwd_lit] = STATE(880), - [sym_str_lit] = STATE(880), - [sym_char_lit] = STATE(880), - [sym_sym_lit] = STATE(822), - [sym__metadata_lit] = STATE(2236), - [sym_meta_lit] = STATE(2222), - [sym_old_meta_lit] = STATE(2221), - [sym_list_lit] = STATE(823), - [sym__bare_list_lit] = STATE(939), - [sym_vec_lit] = STATE(880), - [sym_set_lit] = STATE(880), - [sym__bare_set_lit] = STATE(938), - [sym_read_cond_lit] = STATE(880), - [sym_splicing_read_cond_lit] = STATE(880), - [sym_var_quoting_lit] = STATE(880), - [sym_quoting_lit] = STATE(880), - [sym_syn_quoting_lit] = STATE(880), - [sym_unquote_splicing_lit] = STATE(880), - [sym_unquoting_lit] = STATE(880), - [sym_defun] = STATE(939), - [sym_loop_macro] = STATE(939), + [36] = { + [sym_num_lit] = STATE(1559), + [sym_kwd_lit] = STATE(1559), + [sym_str_lit] = STATE(1559), + [sym_char_lit] = STATE(1559), + [sym_sym_lit] = STATE(1557), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1556), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1559), + [sym_set_lit] = STATE(1559), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1559), + [sym_splicing_read_cond_lit] = STATE(1559), + [sym_var_quoting_lit] = STATE(1559), + [sym_quoting_lit] = STATE(1559), + [sym_syn_quoting_lit] = STATE(1559), + [sym_unquote_splicing_lit] = STATE(1559), + [sym_unquoting_lit] = STATE(1559), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_array_dimension] = STATE(2339), + [sym_path_lit] = STATE(1559), + [sym_package_lit] = STATE(1559), + [sym_include_reader_macro] = STATE(1559), + [sym_complex_num_lit] = STATE(1559), + [aux_sym_list_lit_repeat1] = STATE(2154), + [anon_sym_POUND] = ACTIONS(711), + [aux_sym__form_token1] = ACTIONS(713), + [anon_sym_DOT] = ACTIONS(715), + [aux_sym_num_lit_token1] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(17), + [anon_sym_COLON_COLON] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [aux_sym_char_lit_token1] = ACTIONS(717), + [aux_sym_char_lit_token2] = ACTIONS(717), + [aux_sym_char_lit_token3] = ACTIONS(719), + [aux_sym_char_lit_token4] = ACTIONS(717), + [aux_sym_char_lit_token5] = ACTIONS(719), + [aux_sym_char_lit_token6] = ACTIONS(719), + [sym_nil_lit] = ACTIONS(715), + [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_LBRACE] = ACTIONS(721), + [anon_sym_POUND0A] = ACTIONS(751), + [anon_sym_POUND0a] = ACTIONS(751), + [anon_sym_POUND_QMARK] = ACTIONS(33), + [anon_sym_POUND_QMARK_AT] = ACTIONS(35), + [anon_sym_POUND_SQUOTE] = ACTIONS(753), + [anon_sym_SQUOTE] = ACTIONS(755), + [anon_sym_BQUOTE] = ACTIONS(757), + [anon_sym_COMMA_AT] = ACTIONS(759), + [anon_sym_COMMA] = ACTIONS(761), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(715), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(723), + [anon_sym_POUND_PLUS] = ACTIONS(763), + [anon_sym_POUND_DASH] = ACTIONS(763), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [37] = { + [sym_num_lit] = STATE(872), + [sym_kwd_lit] = STATE(872), + [sym_str_lit] = STATE(872), + [sym_char_lit] = STATE(872), + [sym_sym_lit] = STATE(880), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(882), + [sym__bare_list_lit] = STATE(863), + [sym_vec_lit] = STATE(872), + [sym_set_lit] = STATE(872), + [sym__bare_set_lit] = STATE(870), + [sym_read_cond_lit] = STATE(872), + [sym_splicing_read_cond_lit] = STATE(872), + [sym_var_quoting_lit] = STATE(872), + [sym_quoting_lit] = STATE(872), + [sym_syn_quoting_lit] = STATE(872), + [sym_unquote_splicing_lit] = STATE(872), + [sym_unquoting_lit] = STATE(872), + [sym_defun] = STATE(863), + [sym_loop_macro] = STATE(863), + [sym_array_dimension] = STATE(2337), + [sym_path_lit] = STATE(872), + [sym_package_lit] = STATE(872), + [sym_include_reader_macro] = STATE(872), + [sym_complex_num_lit] = STATE(872), + [aux_sym_list_lit_repeat1] = STATE(2156), + [anon_sym_POUND] = ACTIONS(765), + [aux_sym__form_token1] = ACTIONS(767), + [anon_sym_DOT] = ACTIONS(769), + [aux_sym_num_lit_token1] = ACTIONS(65), + [anon_sym_COLON] = ACTIONS(67), + [anon_sym_COLON_COLON] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [aux_sym_char_lit_token1] = ACTIONS(771), + [aux_sym_char_lit_token2] = ACTIONS(771), + [aux_sym_char_lit_token3] = ACTIONS(773), + [aux_sym_char_lit_token4] = ACTIONS(771), + [aux_sym_char_lit_token5] = ACTIONS(773), + [aux_sym_char_lit_token6] = ACTIONS(773), + [sym_nil_lit] = ACTIONS(769), + [aux_sym_sym_lit_token1] = ACTIONS(73), + [anon_sym_CARET] = ACTIONS(25), + [anon_sym_POUND_CARET] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(775), + [anon_sym_LBRACE] = ACTIONS(777), + [anon_sym_POUND0A] = ACTIONS(75), + [anon_sym_POUND0a] = ACTIONS(75), + [anon_sym_POUND_QMARK] = ACTIONS(77), + [anon_sym_POUND_QMARK_AT] = ACTIONS(79), + [anon_sym_POUND_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_BQUOTE] = ACTIONS(85), + [anon_sym_COMMA_AT] = ACTIONS(87), + [anon_sym_COMMA] = ACTIONS(89), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(769), + [anon_sym_cl] = ACTIONS(779), + [anon_sym_POUNDP] = ACTIONS(93), + [anon_sym_POUNDp] = ACTIONS(93), + [sym_self_referential_reader_macro] = ACTIONS(781), + [anon_sym_POUND_PLUS] = ACTIONS(97), + [anon_sym_POUND_DASH] = ACTIONS(97), + [anon_sym_POUNDC] = ACTIONS(99), + [anon_sym_POUNDc] = ACTIONS(99), + }, + [38] = { + [sym_num_lit] = STATE(1904), + [sym_kwd_lit] = STATE(1904), + [sym_str_lit] = STATE(1904), + [sym_char_lit] = STATE(1904), + [sym_sym_lit] = STATE(1833), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1907), + [sym__bare_list_lit] = STATE(1901), + [sym_vec_lit] = STATE(1904), + [sym_set_lit] = STATE(1904), + [sym__bare_set_lit] = STATE(1902), + [sym_read_cond_lit] = STATE(1904), + [sym_splicing_read_cond_lit] = STATE(1904), + [sym_var_quoting_lit] = STATE(1904), + [sym_quoting_lit] = STATE(1904), + [sym_syn_quoting_lit] = STATE(1904), + [sym_unquote_splicing_lit] = STATE(1904), + [sym_unquoting_lit] = STATE(1904), + [sym_defun] = STATE(1901), + [sym_loop_macro] = STATE(1901), + [sym_array_dimension] = STATE(2374), + [sym_path_lit] = STATE(1904), + [sym_package_lit] = STATE(1904), + [sym_include_reader_macro] = STATE(1904), + [sym_complex_num_lit] = STATE(1904), + [aux_sym_list_lit_repeat1] = STATE(2136), + [anon_sym_POUND] = ACTIONS(516), + [aux_sym__form_token1] = ACTIONS(518), + [anon_sym_DOT] = ACTIONS(520), + [aux_sym_num_lit_token1] = ACTIONS(783), + [anon_sym_COLON] = ACTIONS(524), + [anon_sym_COLON_COLON] = ACTIONS(526), + [anon_sym_DQUOTE] = ACTIONS(528), + [aux_sym_char_lit_token1] = ACTIONS(530), + [aux_sym_char_lit_token2] = ACTIONS(530), + [aux_sym_char_lit_token3] = ACTIONS(532), + [aux_sym_char_lit_token4] = ACTIONS(530), + [aux_sym_char_lit_token5] = ACTIONS(532), + [aux_sym_char_lit_token6] = ACTIONS(532), + [sym_nil_lit] = ACTIONS(520), + [aux_sym_sym_lit_token1] = ACTIONS(534), + [anon_sym_CARET] = ACTIONS(25), + [anon_sym_POUND_CARET] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(536), + [anon_sym_LBRACE] = ACTIONS(538), + [anon_sym_POUND0A] = ACTIONS(785), + [anon_sym_POUND0a] = ACTIONS(785), + [anon_sym_POUND_QMARK] = ACTIONS(542), + [anon_sym_POUND_QMARK_AT] = ACTIONS(544), + [anon_sym_POUND_SQUOTE] = ACTIONS(787), + [anon_sym_SQUOTE] = ACTIONS(789), + [anon_sym_BQUOTE] = ACTIONS(791), + [anon_sym_COMMA_AT] = ACTIONS(793), + [anon_sym_COMMA] = ACTIONS(795), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(520), + [anon_sym_cl] = ACTIONS(556), + [anon_sym_POUNDP] = ACTIONS(558), + [anon_sym_POUNDp] = ACTIONS(558), + [sym_self_referential_reader_macro] = ACTIONS(560), + [anon_sym_POUND_PLUS] = ACTIONS(797), + [anon_sym_POUND_DASH] = ACTIONS(797), + [anon_sym_POUNDC] = ACTIONS(564), + [anon_sym_POUNDc] = ACTIONS(564), + }, + [39] = { + [sym_num_lit] = STATE(1769), + [sym_kwd_lit] = STATE(1769), + [sym_str_lit] = STATE(1769), + [sym_char_lit] = STATE(1769), + [sym_sym_lit] = STATE(1764), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1763), + [sym__bare_list_lit] = STATE(1782), + [sym_vec_lit] = STATE(1769), + [sym_set_lit] = STATE(1769), + [sym__bare_set_lit] = STATE(1781), + [sym_read_cond_lit] = STATE(1769), + [sym_splicing_read_cond_lit] = STATE(1769), + [sym_var_quoting_lit] = STATE(1769), + [sym_quoting_lit] = STATE(1769), + [sym_syn_quoting_lit] = STATE(1769), + [sym_unquote_splicing_lit] = STATE(1769), + [sym_unquoting_lit] = STATE(1769), + [sym_defun] = STATE(1782), + [sym_loop_macro] = STATE(1782), + [sym_array_dimension] = STATE(2369), + [sym_path_lit] = STATE(1769), + [sym_package_lit] = STATE(1769), + [sym_include_reader_macro] = STATE(1769), + [sym_complex_num_lit] = STATE(1769), + [aux_sym_list_lit_repeat1] = STATE(2121), + [anon_sym_POUND] = ACTIONS(799), + [aux_sym__form_token1] = ACTIONS(801), + [anon_sym_DOT] = ACTIONS(803), + [aux_sym_num_lit_token1] = ACTIONS(805), + [anon_sym_COLON] = ACTIONS(807), + [anon_sym_COLON_COLON] = ACTIONS(809), + [anon_sym_DQUOTE] = ACTIONS(811), + [aux_sym_char_lit_token1] = ACTIONS(813), + [aux_sym_char_lit_token2] = ACTIONS(813), + [aux_sym_char_lit_token3] = ACTIONS(815), + [aux_sym_char_lit_token4] = ACTIONS(813), + [aux_sym_char_lit_token5] = ACTIONS(815), + [aux_sym_char_lit_token6] = ACTIONS(815), + [sym_nil_lit] = ACTIONS(803), + [aux_sym_sym_lit_token1] = ACTIONS(817), + [anon_sym_CARET] = ACTIONS(25), + [anon_sym_POUND_CARET] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LBRACE] = ACTIONS(821), + [anon_sym_POUND0A] = ACTIONS(823), + [anon_sym_POUND0a] = ACTIONS(823), + [anon_sym_POUND_QMARK] = ACTIONS(825), + [anon_sym_POUND_QMARK_AT] = ACTIONS(827), + [anon_sym_POUND_SQUOTE] = ACTIONS(829), + [anon_sym_SQUOTE] = ACTIONS(831), + [anon_sym_BQUOTE] = ACTIONS(833), + [anon_sym_COMMA_AT] = ACTIONS(835), + [anon_sym_COMMA] = ACTIONS(837), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(803), + [anon_sym_cl] = ACTIONS(839), + [anon_sym_POUNDP] = ACTIONS(841), + [anon_sym_POUNDp] = ACTIONS(841), + [sym_self_referential_reader_macro] = ACTIONS(843), + [anon_sym_POUND_PLUS] = ACTIONS(845), + [anon_sym_POUND_DASH] = ACTIONS(845), + [anon_sym_POUNDC] = ACTIONS(847), + [anon_sym_POUNDc] = ACTIONS(847), + }, + [40] = { + [sym_num_lit] = STATE(1796), + [sym_kwd_lit] = STATE(1796), + [sym_str_lit] = STATE(1796), + [sym_char_lit] = STATE(1796), + [sym_sym_lit] = STATE(2223), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1799), + [sym__bare_list_lit] = STATE(1792), + [sym_vec_lit] = STATE(1796), + [sym_set_lit] = STATE(1796), + [sym__bare_set_lit] = STATE(1793), + [sym_read_cond_lit] = STATE(1796), + [sym_splicing_read_cond_lit] = STATE(1796), + [sym_var_quoting_lit] = STATE(1796), + [sym_quoting_lit] = STATE(1796), + [sym_syn_quoting_lit] = STATE(1796), + [sym_unquote_splicing_lit] = STATE(1796), + [sym_unquoting_lit] = STATE(1796), + [sym_defun] = STATE(1792), + [sym_loop_macro] = STATE(1792), + [sym_array_dimension] = STATE(2340), + [sym_path_lit] = STATE(1796), + [sym_package_lit] = STATE(1796), + [sym_include_reader_macro] = STATE(1796), + [sym_complex_num_lit] = STATE(1796), + [aux_sym_list_lit_repeat1] = STATE(2138), + [anon_sym_POUND] = ACTIONS(849), + [aux_sym__form_token1] = ACTIONS(851), + [anon_sym_DOT] = ACTIONS(853), + [aux_sym_num_lit_token1] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(857), + [anon_sym_COLON_COLON] = ACTIONS(859), + [anon_sym_DQUOTE] = ACTIONS(861), + [aux_sym_char_lit_token1] = ACTIONS(863), + [aux_sym_char_lit_token2] = ACTIONS(863), + [aux_sym_char_lit_token3] = ACTIONS(865), + [aux_sym_char_lit_token4] = ACTIONS(863), + [aux_sym_char_lit_token5] = ACTIONS(865), + [aux_sym_char_lit_token6] = ACTIONS(865), + [sym_nil_lit] = ACTIONS(853), + [aux_sym_sym_lit_token1] = ACTIONS(867), + [anon_sym_CARET] = ACTIONS(25), + [anon_sym_POUND_CARET] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(869), + [anon_sym_LBRACE] = ACTIONS(871), + [anon_sym_POUND0A] = ACTIONS(873), + [anon_sym_POUND0a] = ACTIONS(873), + [anon_sym_POUND_QMARK] = ACTIONS(875), + [anon_sym_POUND_QMARK_AT] = ACTIONS(877), + [anon_sym_POUND_SQUOTE] = ACTIONS(879), + [anon_sym_SQUOTE] = ACTIONS(881), + [anon_sym_BQUOTE] = ACTIONS(883), + [anon_sym_COMMA_AT] = ACTIONS(885), + [anon_sym_COMMA] = ACTIONS(887), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(853), + [anon_sym_cl] = ACTIONS(889), + [anon_sym_POUNDP] = ACTIONS(312), + [anon_sym_POUNDp] = ACTIONS(312), + [sym_self_referential_reader_macro] = ACTIONS(891), + [anon_sym_POUND_PLUS] = ACTIONS(893), + [anon_sym_POUND_DASH] = ACTIONS(893), + [anon_sym_POUNDC] = ACTIONS(318), + [anon_sym_POUNDc] = ACTIONS(318), + }, + [41] = { + [sym_num_lit] = STATE(1796), + [sym_kwd_lit] = STATE(1796), + [sym_str_lit] = STATE(1796), + [sym_char_lit] = STATE(1796), + [sym_sym_lit] = STATE(2117), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1799), + [sym__bare_list_lit] = STATE(1792), + [sym_vec_lit] = STATE(1796), + [sym_set_lit] = STATE(1796), + [sym__bare_set_lit] = STATE(1793), + [sym_read_cond_lit] = STATE(1796), + [sym_splicing_read_cond_lit] = STATE(1796), + [sym_var_quoting_lit] = STATE(1796), + [sym_quoting_lit] = STATE(1796), + [sym_syn_quoting_lit] = STATE(1796), + [sym_unquote_splicing_lit] = STATE(1796), + [sym_unquoting_lit] = STATE(1796), + [sym_defun] = STATE(1792), + [sym_loop_macro] = STATE(1792), + [sym_array_dimension] = STATE(2344), + [sym_path_lit] = STATE(1796), + [sym_package_lit] = STATE(1796), + [sym_include_reader_macro] = STATE(1796), + [sym_complex_num_lit] = STATE(1796), + [aux_sym_list_lit_repeat1] = STATE(2151), + [anon_sym_POUND] = ACTIONS(895), + [aux_sym__form_token1] = ACTIONS(897), + [anon_sym_DOT] = ACTIONS(853), + [aux_sym_num_lit_token1] = ACTIONS(278), + [anon_sym_COLON] = ACTIONS(280), + [anon_sym_COLON_COLON] = ACTIONS(282), + [anon_sym_DQUOTE] = ACTIONS(284), + [aux_sym_char_lit_token1] = ACTIONS(863), + [aux_sym_char_lit_token2] = ACTIONS(863), + [aux_sym_char_lit_token3] = ACTIONS(865), + [aux_sym_char_lit_token4] = ACTIONS(863), + [aux_sym_char_lit_token5] = ACTIONS(865), + [aux_sym_char_lit_token6] = ACTIONS(865), + [sym_nil_lit] = ACTIONS(853), + [aux_sym_sym_lit_token1] = ACTIONS(286), + [anon_sym_CARET] = ACTIONS(25), + [anon_sym_POUND_CARET] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(288), + [anon_sym_LBRACE] = ACTIONS(871), + [anon_sym_POUND0A] = ACTIONS(290), + [anon_sym_POUND0a] = ACTIONS(290), + [anon_sym_POUND_QMARK] = ACTIONS(292), + [anon_sym_POUND_QMARK_AT] = ACTIONS(294), + [anon_sym_POUND_SQUOTE] = ACTIONS(296), + [anon_sym_SQUOTE] = ACTIONS(298), + [anon_sym_BQUOTE] = ACTIONS(300), + [anon_sym_COMMA_AT] = ACTIONS(302), + [anon_sym_COMMA] = ACTIONS(304), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(853), + [anon_sym_cl] = ACTIONS(899), + [anon_sym_POUNDP] = ACTIONS(312), + [anon_sym_POUNDp] = ACTIONS(312), + [sym_self_referential_reader_macro] = ACTIONS(891), + [anon_sym_POUND_PLUS] = ACTIONS(316), + [anon_sym_POUND_DASH] = ACTIONS(316), + [anon_sym_POUNDC] = ACTIONS(318), + [anon_sym_POUNDc] = ACTIONS(318), + }, + [42] = { + [sym_num_lit] = STATE(1178), + [sym_kwd_lit] = STATE(1178), + [sym_str_lit] = STATE(1178), + [sym_char_lit] = STATE(1178), + [sym_sym_lit] = STATE(1164), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1180), + [sym__bare_list_lit] = STATE(1175), + [sym_vec_lit] = STATE(1178), + [sym_set_lit] = STATE(1178), + [sym__bare_set_lit] = STATE(1176), + [sym_read_cond_lit] = STATE(1178), + [sym_splicing_read_cond_lit] = STATE(1178), + [sym_var_quoting_lit] = STATE(1178), + [sym_quoting_lit] = STATE(1178), + [sym_syn_quoting_lit] = STATE(1178), + [sym_unquote_splicing_lit] = STATE(1178), + [sym_unquoting_lit] = STATE(1178), + [sym_defun] = STATE(1175), + [sym_loop_macro] = STATE(1175), + [sym_array_dimension] = STATE(2359), + [sym_path_lit] = STATE(1178), + [sym_package_lit] = STATE(1178), + [sym_include_reader_macro] = STATE(1178), + [sym_complex_num_lit] = STATE(1178), + [aux_sym_list_lit_repeat1] = STATE(2152), + [anon_sym_POUND] = ACTIONS(901), + [aux_sym__form_token1] = ACTIONS(903), + [anon_sym_DOT] = ACTIONS(905), + [aux_sym_num_lit_token1] = ACTIONS(907), + [anon_sym_COLON] = ACTIONS(909), + [anon_sym_COLON_COLON] = ACTIONS(911), + [anon_sym_DQUOTE] = ACTIONS(913), + [aux_sym_char_lit_token1] = ACTIONS(915), + [aux_sym_char_lit_token2] = ACTIONS(915), + [aux_sym_char_lit_token3] = ACTIONS(917), + [aux_sym_char_lit_token4] = ACTIONS(915), + [aux_sym_char_lit_token5] = ACTIONS(917), + [aux_sym_char_lit_token6] = ACTIONS(917), + [sym_nil_lit] = ACTIONS(905), + [aux_sym_sym_lit_token1] = ACTIONS(919), + [anon_sym_CARET] = ACTIONS(25), + [anon_sym_POUND_CARET] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(921), + [anon_sym_LBRACE] = ACTIONS(923), + [anon_sym_POUND0A] = ACTIONS(925), + [anon_sym_POUND0a] = ACTIONS(925), + [anon_sym_POUND_QMARK] = ACTIONS(927), + [anon_sym_POUND_QMARK_AT] = ACTIONS(929), + [anon_sym_POUND_SQUOTE] = ACTIONS(931), + [anon_sym_SQUOTE] = ACTIONS(933), + [anon_sym_BQUOTE] = ACTIONS(935), + [anon_sym_COMMA_AT] = ACTIONS(937), + [anon_sym_COMMA] = ACTIONS(939), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(905), + [anon_sym_cl] = ACTIONS(941), + [anon_sym_POUNDP] = ACTIONS(943), + [anon_sym_POUNDp] = ACTIONS(943), + [sym_self_referential_reader_macro] = ACTIONS(945), + [anon_sym_POUND_PLUS] = ACTIONS(947), + [anon_sym_POUND_DASH] = ACTIONS(947), + [anon_sym_POUNDC] = ACTIONS(949), + [anon_sym_POUNDc] = ACTIONS(949), + }, + [43] = { + [sym_num_lit] = STATE(2312), + [sym_kwd_lit] = STATE(2312), + [sym_str_lit] = STATE(2312), + [sym_char_lit] = STATE(2312), + [sym_sym_lit] = STATE(2343), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(2309), + [sym__bare_list_lit] = STATE(2315), + [sym_vec_lit] = STATE(2312), + [sym_set_lit] = STATE(2312), + [sym__bare_set_lit] = STATE(2313), + [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(2315), + [sym_loop_macro] = STATE(2315), [sym_array_dimension] = STATE(2365), - [sym_path_lit] = STATE(880), - [sym_package_lit] = STATE(880), - [sym_include_reader_macro] = STATE(880), - [sym_complex_num_lit] = STATE(880), - [aux_sym_list_lit_repeat1] = STATE(2065), - [anon_sym_POUND] = ACTIONS(531), - [aux_sym__form_token1] = ACTIONS(533), - [anon_sym_DOT] = ACTIONS(535), - [aux_sym_num_lit_token1] = ACTIONS(63), - [anon_sym_COLON] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [aux_sym_char_lit_token1] = ACTIONS(537), - [aux_sym_char_lit_token2] = ACTIONS(537), - [aux_sym_char_lit_token3] = ACTIONS(539), - [aux_sym_char_lit_token4] = ACTIONS(537), - [aux_sym_char_lit_token5] = ACTIONS(539), - [aux_sym_char_lit_token6] = ACTIONS(539), - [sym_nil_lit] = ACTIONS(535), - [aux_sym_sym_lit_token1] = ACTIONS(71), + [sym_path_lit] = STATE(2312), + [sym_package_lit] = STATE(2312), + [sym_include_reader_macro] = STATE(2312), + [sym_complex_num_lit] = STATE(2312), + [aux_sym_list_lit_repeat1] = STATE(2133), + [anon_sym_POUND] = ACTIONS(951), + [aux_sym__form_token1] = ACTIONS(953), + [anon_sym_DOT] = ACTIONS(588), + [aux_sym_num_lit_token1] = ACTIONS(590), + [anon_sym_COLON] = ACTIONS(857), + [anon_sym_COLON_COLON] = ACTIONS(859), + [anon_sym_DQUOTE] = ACTIONS(861), + [aux_sym_char_lit_token1] = ACTIONS(598), + [aux_sym_char_lit_token2] = ACTIONS(598), + [aux_sym_char_lit_token3] = ACTIONS(600), + [aux_sym_char_lit_token4] = ACTIONS(598), + [aux_sym_char_lit_token5] = ACTIONS(600), + [aux_sym_char_lit_token6] = ACTIONS(600), + [sym_nil_lit] = ACTIONS(588), + [aux_sym_sym_lit_token1] = ACTIONS(867), [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_LBRACE] = ACTIONS(543), - [anon_sym_POUND0A] = ACTIONS(73), - [anon_sym_POUND0a] = ACTIONS(73), - [anon_sym_POUND_QMARK] = ACTIONS(75), - [anon_sym_POUND_QMARK_AT] = ACTIONS(77), - [anon_sym_POUND_SQUOTE] = ACTIONS(79), - [anon_sym_SQUOTE] = ACTIONS(81), - [anon_sym_BQUOTE] = ACTIONS(83), - [anon_sym_COMMA_AT] = ACTIONS(85), - [anon_sym_COMMA] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(869), + [anon_sym_LBRACE] = ACTIONS(606), + [anon_sym_POUND0A] = ACTIONS(608), + [anon_sym_POUND0a] = ACTIONS(608), + [anon_sym_POUND_QMARK] = ACTIONS(875), + [anon_sym_POUND_QMARK_AT] = ACTIONS(955), + [anon_sym_POUND_SQUOTE] = ACTIONS(957), + [anon_sym_SQUOTE] = ACTIONS(959), + [anon_sym_BQUOTE] = ACTIONS(961), + [anon_sym_COMMA_AT] = ACTIONS(963), + [anon_sym_COMMA] = ACTIONS(965), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(535), - [anon_sym_cl] = ACTIONS(545), - [anon_sym_POUNDP] = ACTIONS(91), - [anon_sym_POUNDp] = ACTIONS(91), - [anon_sym_POUND_PLUS] = ACTIONS(93), - [anon_sym_POUND_DASH] = ACTIONS(93), - [anon_sym_POUNDC] = ACTIONS(95), - [anon_sym_POUNDc] = ACTIONS(95), + [sym_fancy_literal] = ACTIONS(588), + [anon_sym_cl] = ACTIONS(967), + [anon_sym_POUNDP] = ACTIONS(626), + [anon_sym_POUNDp] = ACTIONS(626), + [sym_self_referential_reader_macro] = ACTIONS(628), + [anon_sym_POUND_PLUS] = ACTIONS(969), + [anon_sym_POUND_DASH] = ACTIONS(969), + [anon_sym_POUNDC] = ACTIONS(632), + [anon_sym_POUNDc] = ACTIONS(632), }, - [32] = { - [sym_num_lit] = STATE(1047), - [sym_kwd_lit] = STATE(1047), - [sym_str_lit] = STATE(1047), - [sym_char_lit] = STATE(1047), - [sym_sym_lit] = STATE(1044), - [sym__metadata_lit] = STATE(2236), - [sym_meta_lit] = STATE(2222), - [sym_old_meta_lit] = STATE(2221), - [sym_list_lit] = STATE(1105), - [sym__bare_list_lit] = STATE(1058), - [sym_vec_lit] = STATE(1047), - [sym_set_lit] = STATE(1047), - [sym__bare_set_lit] = STATE(1057), - [sym_read_cond_lit] = STATE(1047), - [sym_splicing_read_cond_lit] = STATE(1047), - [sym_var_quoting_lit] = STATE(1047), - [sym_quoting_lit] = STATE(1047), - [sym_syn_quoting_lit] = STATE(1047), - [sym_unquote_splicing_lit] = STATE(1047), - [sym_unquoting_lit] = STATE(1047), - [sym_defun] = STATE(1058), - [sym_loop_macro] = STATE(1058), - [sym_array_dimension] = STATE(2355), - [sym_path_lit] = STATE(1047), - [sym_package_lit] = STATE(1047), - [sym_include_reader_macro] = STATE(1047), - [sym_complex_num_lit] = STATE(1047), - [aux_sym_list_lit_repeat1] = STATE(2062), - [anon_sym_POUND] = ACTIONS(547), - [aux_sym__form_token1] = ACTIONS(549), - [anon_sym_DOT] = ACTIONS(551), - [aux_sym_num_lit_token1] = ACTIONS(187), - [anon_sym_COLON] = ACTIONS(189), - [anon_sym_COLON_COLON] = ACTIONS(191), - [anon_sym_DQUOTE] = ACTIONS(193), - [aux_sym_char_lit_token1] = ACTIONS(553), - [aux_sym_char_lit_token2] = ACTIONS(553), - [aux_sym_char_lit_token3] = ACTIONS(555), - [aux_sym_char_lit_token4] = ACTIONS(553), - [aux_sym_char_lit_token5] = ACTIONS(555), - [aux_sym_char_lit_token6] = ACTIONS(555), - [sym_nil_lit] = ACTIONS(551), - [aux_sym_sym_lit_token1] = ACTIONS(195), + [44] = { + [sym__gap] = STATE(55), + [sym_dis_expr] = STATE(55), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(55), + [sym__ws] = ACTIONS(971), + [sym_comment] = ACTIONS(971), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(380), + [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(380), + [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(973), + [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(380), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [45] = { + [sym__gap] = STATE(82), + [sym_dis_expr] = STATE(82), + [sym__form] = STATE(2676), + [sym_num_lit] = STATE(2676), + [sym_kwd_lit] = STATE(2676), + [sym_str_lit] = STATE(2676), + [sym_char_lit] = STATE(2676), + [sym_sym_lit] = STATE(1828), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(2676), + [sym__bare_list_lit] = STATE(1901), + [sym_vec_lit] = STATE(2676), + [sym_set_lit] = STATE(2676), + [sym__bare_set_lit] = STATE(1902), + [sym_read_cond_lit] = STATE(2676), + [sym_splicing_read_cond_lit] = STATE(2676), + [sym_var_quoting_lit] = STATE(2676), + [sym_quoting_lit] = STATE(2676), + [sym_syn_quoting_lit] = STATE(2676), + [sym_unquote_splicing_lit] = STATE(2676), + [sym_unquoting_lit] = STATE(2676), + [sym_defun] = STATE(1901), + [sym_loop_macro] = STATE(1901), + [sym_path_lit] = STATE(2676), + [sym_package_lit] = STATE(2676), + [sym_include_reader_macro] = STATE(2676), + [sym_complex_num_lit] = STATE(2676), + [aux_sym_dis_expr_repeat1] = STATE(82), + [aux_sym_list_lit_repeat1] = STATE(2150), + [sym__ws] = ACTIONS(975), + [sym_comment] = ACTIONS(975), + [anon_sym_POUND_] = ACTIONS(977), + [anon_sym_POUND] = ACTIONS(979), + [anon_sym_DOT] = ACTIONS(981), + [aux_sym_num_lit_token1] = ACTIONS(522), + [anon_sym_COLON] = ACTIONS(524), + [anon_sym_COLON_COLON] = ACTIONS(526), + [anon_sym_DQUOTE] = ACTIONS(528), + [sym_nil_lit] = ACTIONS(981), + [aux_sym_sym_lit_token1] = ACTIONS(534), [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(557), - [anon_sym_LBRACE] = ACTIONS(559), - [anon_sym_POUND0A] = ACTIONS(208), - [anon_sym_POUND0a] = ACTIONS(208), - [anon_sym_POUND_QMARK] = ACTIONS(210), - [anon_sym_POUND_QMARK_AT] = ACTIONS(212), - [anon_sym_POUND_SQUOTE] = ACTIONS(214), - [anon_sym_SQUOTE] = ACTIONS(216), - [anon_sym_BQUOTE] = ACTIONS(218), - [anon_sym_COMMA_AT] = ACTIONS(220), - [anon_sym_COMMA] = ACTIONS(222), + [anon_sym_LPAREN] = ACTIONS(536), + [anon_sym_POUND0A] = ACTIONS(540), + [anon_sym_POUND0a] = ACTIONS(540), + [anon_sym_POUND_QMARK] = ACTIONS(542), + [anon_sym_POUND_QMARK_AT] = ACTIONS(544), + [anon_sym_POUND_SQUOTE] = ACTIONS(546), + [anon_sym_SQUOTE] = ACTIONS(548), + [anon_sym_BQUOTE] = ACTIONS(550), + [anon_sym_COMMA_AT] = ACTIONS(552), + [anon_sym_COMMA] = ACTIONS(554), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(551), - [anon_sym_cl] = ACTIONS(561), - [anon_sym_POUNDP] = ACTIONS(229), - [anon_sym_POUNDp] = ACTIONS(229), - [anon_sym_POUND_PLUS] = ACTIONS(231), - [anon_sym_POUND_DASH] = ACTIONS(231), - [anon_sym_POUNDC] = ACTIONS(233), - [anon_sym_POUNDc] = ACTIONS(233), + [sym_fancy_literal] = ACTIONS(981), + [anon_sym_cl] = ACTIONS(983), + [anon_sym_EQ] = ACTIONS(985), + [anon_sym_POUNDP] = ACTIONS(558), + [anon_sym_POUNDp] = ACTIONS(558), + [sym_self_referential_reader_macro] = ACTIONS(987), + [anon_sym_POUND_PLUS] = ACTIONS(562), + [anon_sym_POUND_DASH] = ACTIONS(562), + [anon_sym_POUNDC] = ACTIONS(564), + [anon_sym_POUNDc] = ACTIONS(564), }, - [33] = { - [sym_num_lit] = STATE(1605), - [sym_kwd_lit] = STATE(1605), - [sym_str_lit] = STATE(1605), - [sym_char_lit] = STATE(1605), - [sym_sym_lit] = STATE(1590), - [sym__metadata_lit] = STATE(2236), - [sym_meta_lit] = STATE(2222), - [sym_old_meta_lit] = STATE(2221), - [sym_list_lit] = STATE(1594), - [sym__bare_list_lit] = STATE(1609), - [sym_vec_lit] = STATE(1605), - [sym_set_lit] = STATE(1605), - [sym__bare_set_lit] = STATE(1608), - [sym_read_cond_lit] = STATE(1605), - [sym_splicing_read_cond_lit] = STATE(1605), - [sym_var_quoting_lit] = STATE(1605), - [sym_quoting_lit] = STATE(1605), - [sym_syn_quoting_lit] = STATE(1605), - [sym_unquote_splicing_lit] = STATE(1605), - [sym_unquoting_lit] = STATE(1605), - [sym_defun] = STATE(1609), - [sym_loop_macro] = STATE(1609), - [sym_array_dimension] = STATE(2357), - [sym_path_lit] = STATE(1605), - [sym_package_lit] = STATE(1605), - [sym_include_reader_macro] = STATE(1605), - [sym_complex_num_lit] = STATE(1605), - [aux_sym_list_lit_repeat1] = STATE(2052), - [anon_sym_POUND] = ACTIONS(429), - [aux_sym__form_token1] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(433), + [46] = { + [sym__gap] = STATE(44), + [sym_dis_expr] = STATE(44), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(52), + [sym__ws] = ACTIONS(989), + [sym_comment] = ACTIONS(989), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(380), [aux_sym_num_lit_token1] = ACTIONS(15), [anon_sym_COLON] = ACTIONS(17), [anon_sym_COLON_COLON] = ACTIONS(19), [anon_sym_DQUOTE] = ACTIONS(21), - [aux_sym_char_lit_token1] = ACTIONS(437), - [aux_sym_char_lit_token2] = ACTIONS(437), - [aux_sym_char_lit_token3] = ACTIONS(439), - [aux_sym_char_lit_token4] = ACTIONS(437), - [aux_sym_char_lit_token5] = ACTIONS(439), - [aux_sym_char_lit_token6] = ACTIONS(439), - [sym_nil_lit] = ACTIONS(433), + [sym_nil_lit] = ACTIONS(380), [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_LBRACE] = ACTIONS(441), + [anon_sym_RPAREN] = ACTIONS(991), [anon_sym_POUND0A] = ACTIONS(31), [anon_sym_POUND0a] = ACTIONS(31), [anon_sym_POUND_QMARK] = ACTIONS(33), @@ -12474,17809 +13501,7993 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COMMA_AT] = ACTIONS(43), [anon_sym_COMMA] = ACTIONS(45), [sym_block_comment] = ACTIONS(47), - [sym_fancy_literal] = ACTIONS(433), + [sym_fancy_literal] = ACTIONS(380), [anon_sym_cl] = ACTIONS(49), [anon_sym_POUNDP] = ACTIONS(51), [anon_sym_POUNDp] = ACTIONS(51), - [anon_sym_POUND_PLUS] = ACTIONS(53), - [anon_sym_POUND_DASH] = ACTIONS(53), - [anon_sym_POUNDC] = ACTIONS(55), - [anon_sym_POUNDc] = ACTIONS(55), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), }, - [34] = { - [sym_num_lit] = STATE(1187), - [sym_kwd_lit] = STATE(1187), - [sym_str_lit] = STATE(1187), - [sym_char_lit] = STATE(1187), - [sym_sym_lit] = STATE(1164), - [sym__metadata_lit] = STATE(2236), - [sym_meta_lit] = STATE(2222), - [sym_old_meta_lit] = STATE(2221), - [sym_list_lit] = STATE(1197), - [sym__bare_list_lit] = STATE(1183), - [sym_vec_lit] = STATE(1187), - [sym_set_lit] = STATE(1187), - [sym__bare_set_lit] = STATE(1186), - [sym_read_cond_lit] = STATE(1187), - [sym_splicing_read_cond_lit] = STATE(1187), - [sym_var_quoting_lit] = STATE(1187), - [sym_quoting_lit] = STATE(1187), - [sym_syn_quoting_lit] = STATE(1187), - [sym_unquote_splicing_lit] = STATE(1187), - [sym_unquoting_lit] = STATE(1187), - [sym_defun] = STATE(1183), - [sym_loop_macro] = STATE(1183), - [sym_array_dimension] = STATE(2363), - [sym_path_lit] = STATE(1187), - [sym_package_lit] = STATE(1187), - [sym_include_reader_macro] = STATE(1187), - [sym_complex_num_lit] = STATE(1187), - [aux_sym_list_lit_repeat1] = STATE(2027), - [anon_sym_POUND] = ACTIONS(563), - [aux_sym__form_token1] = ACTIONS(565), - [anon_sym_DOT] = ACTIONS(567), - [aux_sym_num_lit_token1] = ACTIONS(569), - [anon_sym_COLON] = ACTIONS(571), - [anon_sym_COLON_COLON] = ACTIONS(573), - [anon_sym_DQUOTE] = ACTIONS(575), - [aux_sym_char_lit_token1] = ACTIONS(577), - [aux_sym_char_lit_token2] = ACTIONS(577), - [aux_sym_char_lit_token3] = ACTIONS(579), - [aux_sym_char_lit_token4] = ACTIONS(577), - [aux_sym_char_lit_token5] = ACTIONS(579), - [aux_sym_char_lit_token6] = ACTIONS(579), - [sym_nil_lit] = ACTIONS(567), - [aux_sym_sym_lit_token1] = ACTIONS(581), + [47] = { + [sym__gap] = STATE(33), + [sym_dis_expr] = STATE(33), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(33), + [sym__ws] = ACTIONS(993), + [sym_comment] = ACTIONS(993), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(380), + [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(380), + [aux_sym_sym_lit_token1] = ACTIONS(23), [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(583), - [anon_sym_LBRACE] = ACTIONS(585), - [anon_sym_POUND0A] = ACTIONS(587), - [anon_sym_POUND0a] = ACTIONS(587), - [anon_sym_POUND_QMARK] = ACTIONS(589), - [anon_sym_POUND_QMARK_AT] = ACTIONS(591), - [anon_sym_POUND_SQUOTE] = ACTIONS(593), - [anon_sym_SQUOTE] = ACTIONS(595), - [anon_sym_BQUOTE] = ACTIONS(597), - [anon_sym_COMMA_AT] = ACTIONS(599), - [anon_sym_COMMA] = ACTIONS(601), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_RPAREN] = ACTIONS(995), + [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(567), - [anon_sym_cl] = ACTIONS(603), - [anon_sym_POUNDP] = ACTIONS(605), - [anon_sym_POUNDp] = ACTIONS(605), - [anon_sym_POUND_PLUS] = ACTIONS(607), - [anon_sym_POUND_DASH] = ACTIONS(607), - [anon_sym_POUNDC] = ACTIONS(609), - [anon_sym_POUNDc] = ACTIONS(609), + [sym_fancy_literal] = ACTIONS(380), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), }, - [35] = { - [sym_num_lit] = STATE(2334), - [sym_kwd_lit] = STATE(2334), - [sym_str_lit] = STATE(2334), - [sym_char_lit] = STATE(2334), - [sym_sym_lit] = STATE(2340), - [sym__metadata_lit] = STATE(2236), - [sym_meta_lit] = STATE(2222), - [sym_old_meta_lit] = STATE(2221), - [sym_list_lit] = STATE(2239), - [sym__bare_list_lit] = STATE(2332), - [sym_vec_lit] = STATE(2334), - [sym_set_lit] = STATE(2334), - [sym__bare_set_lit] = STATE(2333), - [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(2332), - [sym_loop_macro] = STATE(2332), - [sym_array_dimension] = STATE(2376), - [sym_path_lit] = STATE(2334), - [sym_package_lit] = STATE(2334), - [sym_include_reader_macro] = STATE(2334), - [sym_complex_num_lit] = STATE(2334), - [aux_sym_list_lit_repeat1] = STATE(2064), - [anon_sym_POUND] = ACTIONS(611), - [aux_sym__form_token1] = ACTIONS(613), - [anon_sym_DOT] = ACTIONS(615), - [aux_sym_num_lit_token1] = ACTIONS(617), - [anon_sym_COLON] = ACTIONS(619), - [anon_sym_COLON_COLON] = ACTIONS(621), - [anon_sym_DQUOTE] = ACTIONS(623), - [aux_sym_char_lit_token1] = ACTIONS(625), - [aux_sym_char_lit_token2] = ACTIONS(625), - [aux_sym_char_lit_token3] = ACTIONS(627), - [aux_sym_char_lit_token4] = ACTIONS(625), - [aux_sym_char_lit_token5] = ACTIONS(627), - [aux_sym_char_lit_token6] = ACTIONS(627), - [sym_nil_lit] = ACTIONS(615), - [aux_sym_sym_lit_token1] = ACTIONS(629), + [48] = { + [sym__gap] = STATE(33), + [sym_dis_expr] = STATE(33), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(33), + [sym__ws] = ACTIONS(993), + [sym_comment] = ACTIONS(993), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(380), + [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(380), + [aux_sym_sym_lit_token1] = ACTIONS(23), [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(631), - [anon_sym_LBRACE] = ACTIONS(633), - [anon_sym_POUND0A] = ACTIONS(635), - [anon_sym_POUND0a] = ACTIONS(635), - [anon_sym_POUND_QMARK] = ACTIONS(637), - [anon_sym_POUND_QMARK_AT] = ACTIONS(639), - [anon_sym_POUND_SQUOTE] = ACTIONS(641), - [anon_sym_SQUOTE] = ACTIONS(643), - [anon_sym_BQUOTE] = ACTIONS(645), - [anon_sym_COMMA_AT] = ACTIONS(647), - [anon_sym_COMMA] = ACTIONS(649), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_RBRACE] = ACTIONS(997), + [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(615), - [anon_sym_cl] = ACTIONS(651), - [anon_sym_POUNDP] = ACTIONS(653), - [anon_sym_POUNDp] = ACTIONS(653), - [anon_sym_POUND_PLUS] = ACTIONS(655), - [anon_sym_POUND_DASH] = ACTIONS(655), - [anon_sym_POUNDC] = ACTIONS(657), - [anon_sym_POUNDc] = ACTIONS(657), + [sym_fancy_literal] = ACTIONS(380), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), }, - [36] = { - [sym_num_lit] = STATE(2121), - [sym_kwd_lit] = STATE(2121), - [sym_str_lit] = STATE(2121), - [sym_char_lit] = STATE(2121), - [sym_sym_lit] = STATE(2026), - [sym__metadata_lit] = STATE(2236), - [sym_meta_lit] = STATE(2222), - [sym_old_meta_lit] = STATE(2221), - [sym_list_lit] = STATE(2126), - [sym__bare_list_lit] = STATE(2118), - [sym_vec_lit] = STATE(2121), - [sym_set_lit] = STATE(2121), - [sym__bare_set_lit] = STATE(2119), - [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(2118), - [sym_loop_macro] = STATE(2118), - [sym_array_dimension] = STATE(2338), - [sym_path_lit] = STATE(2121), - [sym_package_lit] = STATE(2121), - [sym_include_reader_macro] = STATE(2121), - [sym_complex_num_lit] = STATE(2121), - [aux_sym_list_lit_repeat1] = STATE(2029), - [anon_sym_POUND] = ACTIONS(659), - [aux_sym__form_token1] = ACTIONS(661), - [anon_sym_DOT] = ACTIONS(663), - [aux_sym_num_lit_token1] = ACTIONS(267), - [anon_sym_COLON] = ACTIONS(269), - [anon_sym_COLON_COLON] = ACTIONS(271), - [anon_sym_DQUOTE] = ACTIONS(273), - [aux_sym_char_lit_token1] = ACTIONS(665), - [aux_sym_char_lit_token2] = ACTIONS(665), - [aux_sym_char_lit_token3] = ACTIONS(667), - [aux_sym_char_lit_token4] = ACTIONS(665), - [aux_sym_char_lit_token5] = ACTIONS(667), - [aux_sym_char_lit_token6] = ACTIONS(667), - [sym_nil_lit] = ACTIONS(663), - [aux_sym_sym_lit_token1] = ACTIONS(275), + [49] = { + [sym__gap] = STATE(53), + [sym_dis_expr] = STATE(53), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(54), + [sym__ws] = ACTIONS(999), + [sym_comment] = ACTIONS(999), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(380), + [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(380), + [aux_sym_sym_lit_token1] = ACTIONS(23), [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(277), - [anon_sym_LBRACE] = ACTIONS(669), - [anon_sym_POUND0A] = ACTIONS(279), - [anon_sym_POUND0a] = ACTIONS(279), - [anon_sym_POUND_QMARK] = ACTIONS(281), - [anon_sym_POUND_QMARK_AT] = ACTIONS(283), - [anon_sym_POUND_SQUOTE] = ACTIONS(285), - [anon_sym_SQUOTE] = ACTIONS(287), - [anon_sym_BQUOTE] = ACTIONS(289), - [anon_sym_COMMA_AT] = ACTIONS(291), - [anon_sym_COMMA] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_RPAREN] = ACTIONS(973), + [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(663), - [anon_sym_cl] = ACTIONS(671), - [anon_sym_POUNDP] = ACTIONS(301), - [anon_sym_POUNDp] = ACTIONS(301), - [anon_sym_POUND_PLUS] = ACTIONS(303), - [anon_sym_POUND_DASH] = ACTIONS(303), - [anon_sym_POUNDC] = ACTIONS(305), - [anon_sym_POUNDc] = ACTIONS(305), + [sym_fancy_literal] = ACTIONS(380), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), }, - [37] = { - [sym_num_lit] = STATE(1519), - [sym_kwd_lit] = STATE(1519), - [sym_str_lit] = STATE(1519), - [sym_char_lit] = STATE(1519), - [sym_sym_lit] = STATE(1515), - [sym__metadata_lit] = STATE(2236), - [sym_meta_lit] = STATE(2222), - [sym_old_meta_lit] = STATE(2221), - [sym_list_lit] = STATE(1514), - [sym__bare_list_lit] = STATE(1524), - [sym_vec_lit] = STATE(1519), - [sym_set_lit] = STATE(1519), - [sym__bare_set_lit] = STATE(1522), - [sym_read_cond_lit] = STATE(1519), - [sym_splicing_read_cond_lit] = STATE(1519), - [sym_var_quoting_lit] = STATE(1519), - [sym_quoting_lit] = STATE(1519), - [sym_syn_quoting_lit] = STATE(1519), - [sym_unquote_splicing_lit] = STATE(1519), - [sym_unquoting_lit] = STATE(1519), - [sym_defun] = STATE(1524), - [sym_loop_macro] = STATE(1524), - [sym_array_dimension] = STATE(2378), - [sym_path_lit] = STATE(1519), - [sym_package_lit] = STATE(1519), - [sym_include_reader_macro] = STATE(1519), - [sym_complex_num_lit] = STATE(1519), - [aux_sym_list_lit_repeat1] = STATE(2032), - [anon_sym_POUND] = ACTIONS(673), - [aux_sym__form_token1] = ACTIONS(675), - [anon_sym_DOT] = ACTIONS(677), - [aux_sym_num_lit_token1] = ACTIONS(679), - [anon_sym_COLON] = ACTIONS(681), - [anon_sym_COLON_COLON] = ACTIONS(683), - [anon_sym_DQUOTE] = ACTIONS(685), - [aux_sym_char_lit_token1] = ACTIONS(687), - [aux_sym_char_lit_token2] = ACTIONS(687), - [aux_sym_char_lit_token3] = ACTIONS(689), - [aux_sym_char_lit_token4] = ACTIONS(687), - [aux_sym_char_lit_token5] = ACTIONS(689), - [aux_sym_char_lit_token6] = ACTIONS(689), - [sym_nil_lit] = ACTIONS(677), - [aux_sym_sym_lit_token1] = ACTIONS(691), + [50] = { + [sym__gap] = STATE(110), + [sym_dis_expr] = STATE(110), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(110), + [sym__ws] = ACTIONS(1001), + [sym_comment] = ACTIONS(1001), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(380), + [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(380), + [aux_sym_sym_lit_token1] = ACTIONS(23), [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(693), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_POUND0A] = ACTIONS(697), - [anon_sym_POUND0a] = ACTIONS(697), - [anon_sym_POUND_QMARK] = ACTIONS(699), - [anon_sym_POUND_QMARK_AT] = ACTIONS(701), - [anon_sym_POUND_SQUOTE] = ACTIONS(703), - [anon_sym_SQUOTE] = ACTIONS(705), - [anon_sym_BQUOTE] = ACTIONS(707), - [anon_sym_COMMA_AT] = ACTIONS(709), - [anon_sym_COMMA] = ACTIONS(711), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_RBRACE] = ACTIONS(1003), + [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(677), - [anon_sym_cl] = ACTIONS(713), - [anon_sym_POUNDP] = ACTIONS(715), - [anon_sym_POUNDp] = ACTIONS(715), - [anon_sym_POUND_PLUS] = ACTIONS(717), - [anon_sym_POUND_DASH] = ACTIONS(717), - [anon_sym_POUNDC] = ACTIONS(719), - [anon_sym_POUNDc] = ACTIONS(719), + [sym_fancy_literal] = ACTIONS(380), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), }, - [38] = { - [sym_num_lit] = STATE(1809), - [sym_kwd_lit] = STATE(1809), - [sym_str_lit] = STATE(1809), - [sym_char_lit] = STATE(1809), - [sym_sym_lit] = STATE(1807), - [sym__metadata_lit] = STATE(2236), - [sym_meta_lit] = STATE(2222), - [sym_old_meta_lit] = STATE(2221), - [sym_list_lit] = STATE(1806), - [sym__bare_list_lit] = STATE(1812), - [sym_vec_lit] = STATE(1809), - [sym_set_lit] = STATE(1809), - [sym__bare_set_lit] = STATE(1811), - [sym_read_cond_lit] = STATE(1809), - [sym_splicing_read_cond_lit] = STATE(1809), - [sym_var_quoting_lit] = STATE(1809), - [sym_quoting_lit] = STATE(1809), - [sym_syn_quoting_lit] = STATE(1809), - [sym_unquote_splicing_lit] = STATE(1809), - [sym_unquoting_lit] = STATE(1809), - [sym_defun] = STATE(1812), - [sym_loop_macro] = STATE(1812), - [sym_array_dimension] = STATE(2359), - [sym_path_lit] = STATE(1809), - [sym_package_lit] = STATE(1809), - [sym_include_reader_macro] = STATE(1809), - [sym_complex_num_lit] = STATE(1809), - [aux_sym_list_lit_repeat1] = STATE(2036), - [anon_sym_POUND] = ACTIONS(721), - [aux_sym__form_token1] = ACTIONS(723), - [anon_sym_DOT] = ACTIONS(725), - [aux_sym_num_lit_token1] = ACTIONS(727), - [anon_sym_COLON] = ACTIONS(729), - [anon_sym_COLON_COLON] = ACTIONS(731), - [anon_sym_DQUOTE] = ACTIONS(733), - [aux_sym_char_lit_token1] = ACTIONS(735), - [aux_sym_char_lit_token2] = ACTIONS(735), - [aux_sym_char_lit_token3] = ACTIONS(737), - [aux_sym_char_lit_token4] = ACTIONS(735), - [aux_sym_char_lit_token5] = ACTIONS(737), - [aux_sym_char_lit_token6] = ACTIONS(737), - [sym_nil_lit] = ACTIONS(725), - [aux_sym_sym_lit_token1] = ACTIONS(739), + [51] = { + [sym__gap] = STATE(33), + [sym_dis_expr] = STATE(33), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(33), + [sym__ws] = ACTIONS(993), + [sym_comment] = ACTIONS(993), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(380), + [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(380), + [aux_sym_sym_lit_token1] = ACTIONS(23), [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(741), - [anon_sym_LBRACE] = ACTIONS(743), - [anon_sym_POUND0A] = ACTIONS(745), - [anon_sym_POUND0a] = ACTIONS(745), - [anon_sym_POUND_QMARK] = ACTIONS(747), - [anon_sym_POUND_QMARK_AT] = ACTIONS(749), - [anon_sym_POUND_SQUOTE] = ACTIONS(751), - [anon_sym_SQUOTE] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_COMMA_AT] = ACTIONS(757), - [anon_sym_COMMA] = ACTIONS(759), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_RPAREN] = ACTIONS(1005), + [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(725), - [anon_sym_cl] = ACTIONS(761), - [anon_sym_POUNDP] = ACTIONS(763), - [anon_sym_POUNDp] = ACTIONS(763), - [anon_sym_POUND_PLUS] = ACTIONS(765), - [anon_sym_POUND_DASH] = ACTIONS(765), - [anon_sym_POUNDC] = ACTIONS(767), - [anon_sym_POUNDc] = ACTIONS(767), + [sym_fancy_literal] = ACTIONS(380), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), }, - [39] = { - [sym_num_lit] = STATE(1382), - [sym_kwd_lit] = STATE(1382), - [sym_str_lit] = STATE(1382), - [sym_char_lit] = STATE(1382), - [sym_sym_lit] = STATE(1818), - [sym__metadata_lit] = STATE(2236), - [sym_meta_lit] = STATE(2222), - [sym_old_meta_lit] = STATE(2221), - [sym_list_lit] = STATE(1380), - [sym__bare_list_lit] = STATE(1330), - [sym_vec_lit] = STATE(1382), - [sym_set_lit] = STATE(1382), - [sym__bare_set_lit] = STATE(1384), - [sym_read_cond_lit] = STATE(1382), - [sym_splicing_read_cond_lit] = STATE(1382), - [sym_var_quoting_lit] = STATE(1382), - [sym_quoting_lit] = STATE(1382), - [sym_syn_quoting_lit] = STATE(1382), - [sym_unquote_splicing_lit] = STATE(1382), - [sym_unquoting_lit] = STATE(1382), - [sym_defun] = STATE(1330), - [sym_loop_macro] = STATE(1330), - [sym_array_dimension] = STATE(2346), - [sym_path_lit] = STATE(1382), - [sym_package_lit] = STATE(1382), - [sym_include_reader_macro] = STATE(1382), - [sym_complex_num_lit] = STATE(1382), - [aux_sym_list_lit_repeat1] = STATE(2037), - [anon_sym_POUND] = ACTIONS(769), - [aux_sym__form_token1] = ACTIONS(771), - [anon_sym_DOT] = ACTIONS(773), - [aux_sym_num_lit_token1] = ACTIONS(775), - [anon_sym_COLON] = ACTIONS(777), - [anon_sym_COLON_COLON] = ACTIONS(779), - [anon_sym_DQUOTE] = ACTIONS(781), - [aux_sym_char_lit_token1] = ACTIONS(783), - [aux_sym_char_lit_token2] = ACTIONS(783), - [aux_sym_char_lit_token3] = ACTIONS(785), - [aux_sym_char_lit_token4] = ACTIONS(783), - [aux_sym_char_lit_token5] = ACTIONS(785), - [aux_sym_char_lit_token6] = ACTIONS(785), - [sym_nil_lit] = ACTIONS(773), - [aux_sym_sym_lit_token1] = ACTIONS(787), + [52] = { + [sym__gap] = STATE(33), + [sym_dis_expr] = STATE(33), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(33), + [sym__ws] = ACTIONS(993), + [sym_comment] = ACTIONS(993), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(380), + [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(380), + [aux_sym_sym_lit_token1] = ACTIONS(23), [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(789), - [anon_sym_LBRACE] = ACTIONS(791), - [anon_sym_POUND0A] = ACTIONS(793), - [anon_sym_POUND0a] = ACTIONS(793), - [anon_sym_POUND_QMARK] = ACTIONS(795), - [anon_sym_POUND_QMARK_AT] = ACTIONS(797), - [anon_sym_POUND_SQUOTE] = ACTIONS(799), - [anon_sym_SQUOTE] = ACTIONS(801), - [anon_sym_BQUOTE] = ACTIONS(803), - [anon_sym_COMMA_AT] = ACTIONS(805), - [anon_sym_COMMA] = ACTIONS(807), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_RPAREN] = ACTIONS(1007), + [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(773), - [anon_sym_cl] = ACTIONS(809), - [anon_sym_POUNDP] = ACTIONS(811), - [anon_sym_POUNDp] = ACTIONS(811), - [anon_sym_POUND_PLUS] = ACTIONS(813), - [anon_sym_POUND_DASH] = ACTIONS(813), - [anon_sym_POUNDC] = ACTIONS(815), - [anon_sym_POUNDc] = ACTIONS(815), + [sym_fancy_literal] = ACTIONS(380), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), }, - [40] = { - [sym_num_lit] = STATE(2334), - [sym_kwd_lit] = STATE(2334), - [sym_str_lit] = STATE(2334), - [sym_char_lit] = STATE(2334), - [sym_sym_lit] = STATE(2421), - [sym__metadata_lit] = STATE(2236), - [sym_meta_lit] = STATE(2222), - [sym_old_meta_lit] = STATE(2221), - [sym_list_lit] = STATE(2239), - [sym__bare_list_lit] = STATE(2332), - [sym_vec_lit] = STATE(2334), - [sym_set_lit] = STATE(2334), - [sym__bare_set_lit] = STATE(2333), - [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(2332), - [sym_loop_macro] = STATE(2332), - [sym_array_dimension] = STATE(2352), - [sym_path_lit] = STATE(2334), - [sym_package_lit] = STATE(2334), - [sym_include_reader_macro] = STATE(2334), - [sym_complex_num_lit] = STATE(2334), - [aux_sym_list_lit_repeat1] = STATE(2056), - [anon_sym_POUND] = ACTIONS(817), - [aux_sym__form_token1] = ACTIONS(819), - [anon_sym_DOT] = ACTIONS(615), - [aux_sym_num_lit_token1] = ACTIONS(617), - [anon_sym_COLON] = ACTIONS(821), - [anon_sym_COLON_COLON] = ACTIONS(823), - [anon_sym_DQUOTE] = ACTIONS(825), - [aux_sym_char_lit_token1] = ACTIONS(625), - [aux_sym_char_lit_token2] = ACTIONS(625), - [aux_sym_char_lit_token3] = ACTIONS(627), - [aux_sym_char_lit_token4] = ACTIONS(625), - [aux_sym_char_lit_token5] = ACTIONS(627), - [aux_sym_char_lit_token6] = ACTIONS(627), - [sym_nil_lit] = ACTIONS(615), - [aux_sym_sym_lit_token1] = ACTIONS(827), + [53] = { + [sym__gap] = STATE(56), + [sym_dis_expr] = STATE(56), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(56), + [sym__ws] = ACTIONS(1009), + [sym_comment] = ACTIONS(1009), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(380), + [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(380), + [aux_sym_sym_lit_token1] = ACTIONS(23), [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(829), - [anon_sym_LBRACE] = ACTIONS(633), - [anon_sym_POUND0A] = ACTIONS(635), - [anon_sym_POUND0a] = ACTIONS(635), - [anon_sym_POUND_QMARK] = ACTIONS(831), - [anon_sym_POUND_QMARK_AT] = ACTIONS(833), - [anon_sym_POUND_SQUOTE] = ACTIONS(835), - [anon_sym_SQUOTE] = ACTIONS(837), - [anon_sym_BQUOTE] = ACTIONS(839), - [anon_sym_COMMA_AT] = ACTIONS(841), - [anon_sym_COMMA] = ACTIONS(843), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_RPAREN] = ACTIONS(1011), + [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(615), - [anon_sym_cl] = ACTIONS(845), - [anon_sym_POUNDP] = ACTIONS(653), - [anon_sym_POUNDp] = ACTIONS(653), - [anon_sym_POUND_PLUS] = ACTIONS(847), - [anon_sym_POUND_DASH] = ACTIONS(847), - [anon_sym_POUNDC] = ACTIONS(657), - [anon_sym_POUNDc] = ACTIONS(657), + [sym_fancy_literal] = ACTIONS(380), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), }, - [41] = { - [sym_num_lit] = STATE(2334), - [sym_kwd_lit] = STATE(2334), - [sym_str_lit] = STATE(2334), - [sym_char_lit] = STATE(2334), - [sym_sym_lit] = STATE(2421), - [sym__metadata_lit] = STATE(2236), - [sym_meta_lit] = STATE(2222), - [sym_old_meta_lit] = STATE(2221), - [sym_list_lit] = STATE(2239), - [sym__bare_list_lit] = STATE(2332), - [sym_vec_lit] = STATE(2334), - [sym_set_lit] = STATE(2334), - [sym__bare_set_lit] = STATE(2333), - [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(2332), - [sym_loop_macro] = STATE(2332), - [sym_array_dimension] = STATE(2374), - [sym_path_lit] = STATE(2334), - [sym_package_lit] = STATE(2334), - [sym_include_reader_macro] = STATE(2334), - [sym_complex_num_lit] = STATE(2334), - [aux_sym_list_lit_repeat1] = STATE(2051), - [anon_sym_POUND] = ACTIONS(849), - [aux_sym__form_token1] = ACTIONS(851), - [anon_sym_DOT] = ACTIONS(615), - [aux_sym_num_lit_token1] = ACTIONS(853), - [anon_sym_COLON] = ACTIONS(821), - [anon_sym_COLON_COLON] = ACTIONS(823), - [anon_sym_DQUOTE] = ACTIONS(825), - [aux_sym_char_lit_token1] = ACTIONS(625), - [aux_sym_char_lit_token2] = ACTIONS(625), - [aux_sym_char_lit_token3] = ACTIONS(627), - [aux_sym_char_lit_token4] = ACTIONS(625), - [aux_sym_char_lit_token5] = ACTIONS(627), - [aux_sym_char_lit_token6] = ACTIONS(627), - [sym_nil_lit] = ACTIONS(615), - [aux_sym_sym_lit_token1] = ACTIONS(827), + [54] = { + [sym__gap] = STATE(33), + [sym_dis_expr] = STATE(33), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(33), + [sym__ws] = ACTIONS(993), + [sym_comment] = ACTIONS(993), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(380), + [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(380), + [aux_sym_sym_lit_token1] = ACTIONS(23), [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(789), - [anon_sym_LBRACE] = ACTIONS(633), - [anon_sym_POUND0A] = ACTIONS(855), - [anon_sym_POUND0a] = ACTIONS(855), - [anon_sym_POUND_QMARK] = ACTIONS(857), - [anon_sym_POUND_QMARK_AT] = ACTIONS(859), - [anon_sym_POUND_SQUOTE] = ACTIONS(861), - [anon_sym_SQUOTE] = ACTIONS(863), - [anon_sym_BQUOTE] = ACTIONS(865), - [anon_sym_COMMA_AT] = ACTIONS(867), - [anon_sym_COMMA] = ACTIONS(869), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_RPAREN] = ACTIONS(1013), + [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(615), - [anon_sym_cl] = ACTIONS(845), - [anon_sym_POUNDP] = ACTIONS(653), - [anon_sym_POUNDp] = ACTIONS(653), - [anon_sym_POUND_PLUS] = ACTIONS(871), - [anon_sym_POUND_DASH] = ACTIONS(871), - [anon_sym_POUNDC] = ACTIONS(657), - [anon_sym_POUNDc] = ACTIONS(657), + [sym_fancy_literal] = ACTIONS(380), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), }, - [42] = { - [sym_num_lit] = STATE(1382), - [sym_kwd_lit] = STATE(1382), - [sym_str_lit] = STATE(1382), - [sym_char_lit] = STATE(1382), - [sym_sym_lit] = STATE(1818), - [sym__metadata_lit] = STATE(2236), - [sym_meta_lit] = STATE(2222), - [sym_old_meta_lit] = STATE(2221), - [sym_list_lit] = STATE(1380), - [sym__bare_list_lit] = STATE(1330), - [sym_vec_lit] = STATE(1382), - [sym_set_lit] = STATE(1382), - [sym__bare_set_lit] = STATE(1384), - [sym_read_cond_lit] = STATE(1382), - [sym_splicing_read_cond_lit] = STATE(1382), - [sym_var_quoting_lit] = STATE(1382), - [sym_quoting_lit] = STATE(1382), - [sym_syn_quoting_lit] = STATE(1382), - [sym_unquote_splicing_lit] = STATE(1382), - [sym_unquoting_lit] = STATE(1382), - [sym_defun] = STATE(1330), - [sym_loop_macro] = STATE(1330), - [sym_array_dimension] = STATE(2346), - [sym_path_lit] = STATE(1382), - [sym_package_lit] = STATE(1382), - [sym_include_reader_macro] = STATE(1382), - [sym_complex_num_lit] = STATE(1382), - [aux_sym_list_lit_repeat1] = STATE(2048), - [anon_sym_POUND] = ACTIONS(769), - [aux_sym__form_token1] = ACTIONS(771), - [anon_sym_DOT] = ACTIONS(773), - [aux_sym_num_lit_token1] = ACTIONS(873), - [anon_sym_COLON] = ACTIONS(777), - [anon_sym_COLON_COLON] = ACTIONS(779), - [anon_sym_DQUOTE] = ACTIONS(781), - [aux_sym_char_lit_token1] = ACTIONS(783), - [aux_sym_char_lit_token2] = ACTIONS(783), - [aux_sym_char_lit_token3] = ACTIONS(785), - [aux_sym_char_lit_token4] = ACTIONS(783), - [aux_sym_char_lit_token5] = ACTIONS(785), - [aux_sym_char_lit_token6] = ACTIONS(785), - [sym_nil_lit] = ACTIONS(773), - [aux_sym_sym_lit_token1] = ACTIONS(787), + [55] = { + [sym__gap] = STATE(33), + [sym_dis_expr] = STATE(33), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(33), + [sym__ws] = ACTIONS(993), + [sym_comment] = ACTIONS(993), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(380), + [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(380), + [aux_sym_sym_lit_token1] = ACTIONS(23), [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(789), - [anon_sym_LBRACE] = ACTIONS(791), - [anon_sym_POUND0A] = ACTIONS(875), - [anon_sym_POUND0a] = ACTIONS(875), - [anon_sym_POUND_QMARK] = ACTIONS(795), - [anon_sym_POUND_QMARK_AT] = ACTIONS(797), - [anon_sym_POUND_SQUOTE] = ACTIONS(877), - [anon_sym_SQUOTE] = ACTIONS(879), - [anon_sym_BQUOTE] = ACTIONS(881), - [anon_sym_COMMA_AT] = ACTIONS(883), - [anon_sym_COMMA] = ACTIONS(885), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_RPAREN] = ACTIONS(1015), + [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(773), - [anon_sym_cl] = ACTIONS(809), - [anon_sym_POUNDP] = ACTIONS(811), - [anon_sym_POUNDp] = ACTIONS(811), - [anon_sym_POUND_PLUS] = ACTIONS(887), - [anon_sym_POUND_DASH] = ACTIONS(887), - [anon_sym_POUNDC] = ACTIONS(815), - [anon_sym_POUNDc] = ACTIONS(815), + [sym_fancy_literal] = ACTIONS(380), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), }, - [43] = { - [sym_num_lit] = STATE(1382), - [sym_kwd_lit] = STATE(1382), - [sym_str_lit] = STATE(1382), - [sym_char_lit] = STATE(1382), - [sym_sym_lit] = STATE(2224), - [sym__metadata_lit] = STATE(2236), - [sym_meta_lit] = STATE(2222), - [sym_old_meta_lit] = STATE(2221), - [sym_list_lit] = STATE(1380), - [sym__bare_list_lit] = STATE(1330), - [sym_vec_lit] = STATE(1382), - [sym_set_lit] = STATE(1382), - [sym__bare_set_lit] = STATE(1384), - [sym_read_cond_lit] = STATE(1382), - [sym_splicing_read_cond_lit] = STATE(1382), - [sym_var_quoting_lit] = STATE(1382), - [sym_quoting_lit] = STATE(1382), - [sym_syn_quoting_lit] = STATE(1382), - [sym_unquote_splicing_lit] = STATE(1382), - [sym_unquoting_lit] = STATE(1382), - [sym_defun] = STATE(1330), - [sym_loop_macro] = STATE(1330), - [sym_array_dimension] = STATE(2347), - [sym_path_lit] = STATE(1382), - [sym_package_lit] = STATE(1382), - [sym_include_reader_macro] = STATE(1382), - [sym_complex_num_lit] = STATE(1382), - [aux_sym_list_lit_repeat1] = STATE(2050), - [anon_sym_POUND] = ACTIONS(889), - [aux_sym__form_token1] = ACTIONS(891), - [anon_sym_DOT] = ACTIONS(773), - [aux_sym_num_lit_token1] = ACTIONS(873), - [anon_sym_COLON] = ACTIONS(619), - [anon_sym_COLON_COLON] = ACTIONS(621), - [anon_sym_DQUOTE] = ACTIONS(623), - [aux_sym_char_lit_token1] = ACTIONS(783), - [aux_sym_char_lit_token2] = ACTIONS(783), - [aux_sym_char_lit_token3] = ACTIONS(785), - [aux_sym_char_lit_token4] = ACTIONS(783), - [aux_sym_char_lit_token5] = ACTIONS(785), - [aux_sym_char_lit_token6] = ACTIONS(785), - [sym_nil_lit] = ACTIONS(773), - [aux_sym_sym_lit_token1] = ACTIONS(629), + [56] = { + [sym__gap] = STATE(33), + [sym_dis_expr] = STATE(33), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(33), + [sym__ws] = ACTIONS(993), + [sym_comment] = ACTIONS(993), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(380), + [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(380), + [aux_sym_sym_lit_token1] = ACTIONS(23), [anon_sym_CARET] = ACTIONS(25), [anon_sym_POUND_CARET] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(631), - [anon_sym_LBRACE] = ACTIONS(791), - [anon_sym_POUND0A] = ACTIONS(875), - [anon_sym_POUND0a] = ACTIONS(875), - [anon_sym_POUND_QMARK] = ACTIONS(637), - [anon_sym_POUND_QMARK_AT] = ACTIONS(893), - [anon_sym_POUND_SQUOTE] = ACTIONS(895), - [anon_sym_SQUOTE] = ACTIONS(897), - [anon_sym_BQUOTE] = ACTIONS(899), - [anon_sym_COMMA_AT] = ACTIONS(901), - [anon_sym_COMMA] = ACTIONS(903), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_RPAREN] = ACTIONS(1017), + [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(773), - [anon_sym_cl] = ACTIONS(905), - [anon_sym_POUNDP] = ACTIONS(811), - [anon_sym_POUNDp] = ACTIONS(811), - [anon_sym_POUND_PLUS] = ACTIONS(907), - [anon_sym_POUND_DASH] = ACTIONS(907), - [anon_sym_POUNDC] = ACTIONS(815), - [anon_sym_POUNDc] = ACTIONS(815), + [sym_fancy_literal] = ACTIONS(380), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), }, -}; - -static uint16_t ts_small_parse_table[] = { - [0] = 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(49), 1, - anon_sym_cl, - ACTIONS(911), 1, - anon_sym_RBRACE, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(909), 2, - sym__ws, - sym_comment, - ACTIONS(345), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(30), 3, - sym__gap, - sym_dis_expr, - aux_sym__bare_list_lit_repeat1, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1658), 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, - [135] = 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(49), 1, - anon_sym_cl, - ACTIONS(913), 1, - anon_sym_RPAREN, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(909), 2, - sym__ws, - sym_comment, - ACTIONS(345), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(30), 3, - sym__gap, - sym_dis_expr, - aux_sym__bare_list_lit_repeat1, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1658), 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, - [270] = 36, - 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(49), 1, - anon_sym_cl, - ACTIONS(917), 1, - anon_sym_RPAREN, - STATE(60), 1, - aux_sym__bare_list_lit_repeat1, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(915), 2, - sym__ws, - sym_comment, - STATE(59), 2, - sym__gap, - sym_dis_expr, - ACTIONS(345), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1658), 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, - [407] = 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(49), 1, - anon_sym_cl, - ACTIONS(921), 1, - anon_sym_RBRACE, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(919), 2, - sym__ws, - sym_comment, - ACTIONS(345), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(110), 3, - sym__gap, - sym_dis_expr, - aux_sym__bare_list_lit_repeat1, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1658), 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, - [542] = 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(49), 1, - anon_sym_cl, - ACTIONS(917), 1, - anon_sym_RPAREN, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(923), 2, - sym__ws, - sym_comment, - ACTIONS(345), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(62), 3, - sym__gap, - sym_dis_expr, - aux_sym__bare_list_lit_repeat1, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1658), 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, - [677] = 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(49), 1, - anon_sym_cl, - ACTIONS(925), 1, - anon_sym_RPAREN, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(909), 2, - sym__ws, - sym_comment, - ACTIONS(345), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(30), 3, - sym__gap, - sym_dis_expr, - aux_sym__bare_list_lit_repeat1, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1658), 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, - [812] = 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(49), 1, - anon_sym_cl, - ACTIONS(927), 1, - anon_sym_RPAREN, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(909), 2, - sym__ws, - sym_comment, - ACTIONS(345), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(30), 3, - sym__gap, - sym_dis_expr, - aux_sym__bare_list_lit_repeat1, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1658), 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, - [947] = 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(49), 1, - anon_sym_cl, - ACTIONS(929), 1, - anon_sym_RPAREN, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(909), 2, - sym__ws, - sym_comment, - ACTIONS(345), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(30), 3, - sym__gap, - sym_dis_expr, - aux_sym__bare_list_lit_repeat1, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1658), 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, - [1082] = 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(49), 1, - anon_sym_cl, - ACTIONS(931), 1, - anon_sym_RPAREN, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(909), 2, - sym__ws, - sym_comment, - ACTIONS(345), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(30), 3, - sym__gap, - sym_dis_expr, - aux_sym__bare_list_lit_repeat1, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1658), 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, - [1217] = 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(49), 1, - anon_sym_cl, - ACTIONS(935), 1, - anon_sym_RPAREN, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(933), 2, - sym__ws, - sym_comment, - ACTIONS(345), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(50), 3, - sym__gap, - sym_dis_expr, - aux_sym__bare_list_lit_repeat1, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1658), 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, - [1352] = 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(49), 1, - anon_sym_cl, - ACTIONS(937), 1, - anon_sym_RPAREN, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(909), 2, - sym__ws, - sym_comment, - ACTIONS(345), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(30), 3, - sym__gap, - sym_dis_expr, - aux_sym__bare_list_lit_repeat1, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1658), 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, - [1487] = 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(49), 1, - anon_sym_cl, - ACTIONS(941), 1, - anon_sym_RPAREN, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(939), 2, - sym__ws, - sym_comment, - ACTIONS(345), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(51), 3, - sym__gap, - sym_dis_expr, - aux_sym__bare_list_lit_repeat1, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1658), 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, - [1622] = 36, - 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(49), 1, - anon_sym_cl, - ACTIONS(941), 1, - anon_sym_RPAREN, - STATE(52), 1, - aux_sym__bare_list_lit_repeat1, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(943), 2, - sym__ws, - sym_comment, - STATE(53), 2, - sym__gap, - sym_dis_expr, - ACTIONS(345), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1658), 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, - [1759] = 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(49), 1, - anon_sym_cl, - ACTIONS(947), 1, - anon_sym_RBRACE, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(945), 2, - sym__ws, - sym_comment, - ACTIONS(345), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(127), 3, - sym__gap, - sym_dis_expr, - aux_sym__bare_list_lit_repeat1, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1658), 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, - [1894] = 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(49), 1, - anon_sym_cl, - ACTIONS(949), 1, - anon_sym_RBRACE, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(909), 2, - sym__ws, - sym_comment, - ACTIONS(345), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(30), 3, - sym__gap, - sym_dis_expr, - aux_sym__bare_list_lit_repeat1, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1658), 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, - [2029] = 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(49), 1, - anon_sym_cl, - ACTIONS(953), 1, - anon_sym_RPAREN, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(951), 2, - sym__ws, - sym_comment, - ACTIONS(345), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(65), 3, - sym__gap, - sym_dis_expr, - aux_sym__bare_list_lit_repeat1, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1658), 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, - [2164] = 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(49), 1, - anon_sym_cl, - ACTIONS(955), 1, - anon_sym_RPAREN, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(909), 2, - sym__ws, - sym_comment, - ACTIONS(345), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(30), 3, - sym__gap, - sym_dis_expr, - aux_sym__bare_list_lit_repeat1, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1658), 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, - [2299] = 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(49), 1, - anon_sym_cl, - ACTIONS(957), 1, - anon_sym_RPAREN, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(909), 2, - sym__ws, - sym_comment, - ACTIONS(345), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(30), 3, - sym__gap, - sym_dis_expr, - aux_sym__bare_list_lit_repeat1, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1658), 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, - [2434] = 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(49), 1, - anon_sym_cl, - ACTIONS(959), 1, - anon_sym_RPAREN, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(909), 2, - sym__ws, - sym_comment, - ACTIONS(345), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(30), 3, - sym__gap, - sym_dis_expr, - aux_sym__bare_list_lit_repeat1, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1658), 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, - [2569] = 36, - 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(49), 1, - anon_sym_cl, - ACTIONS(963), 1, - anon_sym_RPAREN, - STATE(54), 1, - aux_sym__bare_list_lit_repeat1, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(961), 2, - sym__ws, - sym_comment, - STATE(55), 2, - sym__gap, - sym_dis_expr, - ACTIONS(345), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1658), 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, - [2706] = 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(49), 1, - anon_sym_cl, - ACTIONS(967), 1, - anon_sym_RBRACE, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(965), 2, - sym__ws, - sym_comment, - ACTIONS(345), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(58), 3, - sym__gap, - sym_dis_expr, - aux_sym__bare_list_lit_repeat1, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1658), 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, - [2841] = 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(49), 1, - anon_sym_cl, - ACTIONS(969), 1, - anon_sym_RPAREN, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(909), 2, - sym__ws, - sym_comment, - ACTIONS(345), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(30), 3, - sym__gap, - sym_dis_expr, - aux_sym__bare_list_lit_repeat1, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1658), 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, - [2976] = 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(49), 1, - anon_sym_cl, - ACTIONS(973), 1, - anon_sym_RBRACE, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(971), 2, - sym__ws, - sym_comment, - ACTIONS(345), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(71), 3, - sym__gap, - sym_dis_expr, - aux_sym__bare_list_lit_repeat1, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1658), 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, - [3111] = 36, - 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(49), 1, - anon_sym_cl, - ACTIONS(977), 1, - anon_sym_RPAREN, - STATE(74), 1, - aux_sym__bare_list_lit_repeat1, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(975), 2, - sym__ws, - sym_comment, - STATE(73), 2, - sym__gap, - sym_dis_expr, - ACTIONS(345), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1658), 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, - [3248] = 36, - 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(49), 1, - anon_sym_cl, - ACTIONS(981), 1, - anon_sym_RPAREN, - STATE(156), 1, - aux_sym__bare_list_lit_repeat1, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(979), 2, - sym__ws, - sym_comment, - STATE(155), 2, - sym__gap, - sym_dis_expr, - ACTIONS(345), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1658), 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, - [3385] = 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(49), 1, - anon_sym_cl, - ACTIONS(983), 1, - anon_sym_RPAREN, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(909), 2, - sym__ws, - sym_comment, - ACTIONS(345), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(30), 3, - sym__gap, - sym_dis_expr, - aux_sym__bare_list_lit_repeat1, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1658), 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, - [3520] = 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(49), 1, - anon_sym_cl, - ACTIONS(985), 1, - anon_sym_RPAREN, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(909), 2, - sym__ws, - sym_comment, - ACTIONS(345), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(30), 3, - sym__gap, - sym_dis_expr, - aux_sym__bare_list_lit_repeat1, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1658), 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, - [3655] = 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(49), 1, - anon_sym_cl, - ACTIONS(987), 1, - anon_sym_RBRACE, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(909), 2, - sym__ws, - sym_comment, - ACTIONS(345), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(30), 3, - sym__gap, - sym_dis_expr, - aux_sym__bare_list_lit_repeat1, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1658), 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, - [3790] = 36, - 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(49), 1, - anon_sym_cl, - ACTIONS(991), 1, - anon_sym_RPAREN, - STATE(76), 1, - aux_sym__bare_list_lit_repeat1, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(989), 2, - sym__ws, - sym_comment, - STATE(75), 2, - sym__gap, - sym_dis_expr, - ACTIONS(345), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1658), 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, - [3927] = 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(49), 1, - anon_sym_cl, - ACTIONS(991), 1, - anon_sym_RPAREN, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(993), 2, - sym__ws, - sym_comment, - ACTIONS(345), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(77), 3, - sym__gap, - sym_dis_expr, - aux_sym__bare_list_lit_repeat1, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1658), 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, - [4062] = 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(49), 1, - anon_sym_cl, - ACTIONS(995), 1, - anon_sym_RPAREN, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(909), 2, - sym__ws, - sym_comment, - ACTIONS(345), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(30), 3, - sym__gap, - sym_dis_expr, - aux_sym__bare_list_lit_repeat1, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1658), 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, - [4197] = 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(49), 1, - anon_sym_cl, - ACTIONS(999), 1, - anon_sym_RPAREN, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(997), 2, - sym__ws, - sym_comment, - ACTIONS(345), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(78), 3, - sym__gap, - sym_dis_expr, - aux_sym__bare_list_lit_repeat1, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1658), 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, - [4332] = 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(49), 1, - anon_sym_cl, - ACTIONS(1001), 1, - anon_sym_RPAREN, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(909), 2, - sym__ws, - sym_comment, - ACTIONS(345), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(30), 3, - sym__gap, - sym_dis_expr, - aux_sym__bare_list_lit_repeat1, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1658), 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, - [4467] = 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(49), 1, - anon_sym_cl, - ACTIONS(1003), 1, - anon_sym_RPAREN, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(909), 2, - sym__ws, - sym_comment, - ACTIONS(345), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(30), 3, - sym__gap, - sym_dis_expr, - aux_sym__bare_list_lit_repeat1, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1658), 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, - [4602] = 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(49), 1, - anon_sym_cl, - ACTIONS(1005), 1, - anon_sym_RPAREN, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(909), 2, - sym__ws, - sym_comment, - ACTIONS(345), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(30), 3, - sym__gap, - sym_dis_expr, - aux_sym__bare_list_lit_repeat1, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1658), 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, - [4737] = 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(49), 1, - anon_sym_cl, - ACTIONS(1009), 1, - anon_sym_RBRACE, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(1007), 2, - sym__ws, - sym_comment, - ACTIONS(345), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(44), 3, - sym__gap, - sym_dis_expr, - aux_sym__bare_list_lit_repeat1, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1658), 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, - [4872] = 35, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(777), 1, - anon_sym_COLON, - ACTIONS(779), 1, - anon_sym_COLON_COLON, - ACTIONS(781), 1, - anon_sym_DQUOTE, - ACTIONS(787), 1, - aux_sym_sym_lit_token1, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(795), 1, - anon_sym_POUND_QMARK, - ACTIONS(797), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(873), 1, - aux_sym_num_lit_token1, - ACTIONS(877), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(879), 1, - anon_sym_SQUOTE, - ACTIONS(881), 1, - anon_sym_BQUOTE, - ACTIONS(883), 1, - anon_sym_COMMA_AT, - ACTIONS(885), 1, - anon_sym_COMMA, - ACTIONS(1013), 1, - anon_sym_POUND_, - ACTIONS(1015), 1, - anon_sym_POUND, - ACTIONS(1019), 1, - anon_sym_cl, - ACTIONS(1021), 1, - anon_sym_EQ, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, - sym_sym_lit, - STATE(2048), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(811), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(815), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(875), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(887), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(1011), 2, - sym__ws, - sym_comment, - ACTIONS(1017), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1656), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2676), 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, - [5007] = 36, - 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(49), 1, - anon_sym_cl, - ACTIONS(1025), 1, - anon_sym_RPAREN, - STATE(86), 1, - aux_sym__bare_list_lit_repeat1, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(1023), 2, - sym__ws, - sym_comment, - STATE(84), 2, - sym__gap, - sym_dis_expr, - ACTIONS(345), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1658), 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, - [5144] = 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(49), 1, - anon_sym_cl, - ACTIONS(1027), 1, - anon_sym_RPAREN, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(909), 2, - sym__ws, - sym_comment, - ACTIONS(345), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(30), 3, - sym__gap, - sym_dis_expr, - aux_sym__bare_list_lit_repeat1, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1658), 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, - [5279] = 36, - 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(49), 1, - anon_sym_cl, - ACTIONS(1031), 1, - anon_sym_RPAREN, - STATE(88), 1, - aux_sym__bare_list_lit_repeat1, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(1029), 2, - sym__ws, - sym_comment, - STATE(87), 2, - sym__gap, - sym_dis_expr, - ACTIONS(345), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1658), 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, - [5416] = 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(49), 1, - anon_sym_cl, - ACTIONS(1031), 1, - anon_sym_RPAREN, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(1033), 2, - sym__ws, - sym_comment, - ACTIONS(345), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(90), 3, - sym__gap, - sym_dis_expr, - aux_sym__bare_list_lit_repeat1, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1658), 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, - [5551] = 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(49), 1, - anon_sym_cl, - ACTIONS(1035), 1, - anon_sym_RPAREN, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(909), 2, - sym__ws, - sym_comment, - ACTIONS(345), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(30), 3, - sym__gap, - sym_dis_expr, - aux_sym__bare_list_lit_repeat1, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1658), 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, - [5686] = 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(49), 1, - anon_sym_cl, - ACTIONS(1037), 1, - anon_sym_RPAREN, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(909), 2, - sym__ws, - sym_comment, - ACTIONS(345), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(30), 3, - sym__gap, - sym_dis_expr, - aux_sym__bare_list_lit_repeat1, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1658), 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, - [5821] = 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(49), 1, - anon_sym_cl, - ACTIONS(1041), 1, - anon_sym_RPAREN, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(1039), 2, - sym__ws, - sym_comment, - ACTIONS(345), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(91), 3, - sym__gap, - sym_dis_expr, - aux_sym__bare_list_lit_repeat1, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1658), 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, - [5956] = 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(49), 1, - anon_sym_cl, - ACTIONS(1043), 1, - anon_sym_RPAREN, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(909), 2, - sym__ws, - sym_comment, - ACTIONS(345), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(30), 3, - sym__gap, - sym_dis_expr, - aux_sym__bare_list_lit_repeat1, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1658), 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, - [6091] = 35, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(1045), 1, - ts_builtin_sym_end, - ACTIONS(1050), 1, - anon_sym_POUND_, - ACTIONS(1053), 1, - anon_sym_POUND, - ACTIONS(1059), 1, - aux_sym_num_lit_token1, - ACTIONS(1062), 1, - anon_sym_COLON, - ACTIONS(1065), 1, - anon_sym_COLON_COLON, - ACTIONS(1068), 1, - anon_sym_DQUOTE, - ACTIONS(1071), 1, - aux_sym_sym_lit_token1, - ACTIONS(1074), 1, - anon_sym_CARET, - ACTIONS(1077), 1, - anon_sym_POUND_CARET, - ACTIONS(1080), 1, - anon_sym_LPAREN, - ACTIONS(1086), 1, - anon_sym_POUND_QMARK, - ACTIONS(1089), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(1092), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(1095), 1, - anon_sym_SQUOTE, - ACTIONS(1098), 1, - anon_sym_BQUOTE, - ACTIONS(1101), 1, - anon_sym_COMMA_AT, - ACTIONS(1104), 1, - anon_sym_COMMA, - ACTIONS(1107), 1, - anon_sym_cl, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(1047), 2, - sym__ws, - sym_comment, - ACTIONS(1083), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(1110), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(1113), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(1116), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(1056), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(89), 3, - sym__gap, - sym_dis_expr, - aux_sym_source_repeat1, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1814), 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, - [6226] = 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(49), 1, - anon_sym_cl, - ACTIONS(1119), 1, - anon_sym_RPAREN, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(909), 2, - sym__ws, - sym_comment, - ACTIONS(345), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(30), 3, - sym__gap, - sym_dis_expr, - aux_sym__bare_list_lit_repeat1, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1658), 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, - [6361] = 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(49), 1, - anon_sym_cl, - ACTIONS(1121), 1, - anon_sym_RPAREN, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(909), 2, - sym__ws, - sym_comment, - ACTIONS(345), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(30), 3, - sym__gap, - sym_dis_expr, - aux_sym__bare_list_lit_repeat1, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1658), 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, - [6496] = 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(49), 1, - anon_sym_cl, - ACTIONS(1123), 1, - anon_sym_RBRACE, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(909), 2, - sym__ws, - sym_comment, - ACTIONS(345), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(30), 3, - sym__gap, - sym_dis_expr, - aux_sym__bare_list_lit_repeat1, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1658), 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, - [6631] = 36, - 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(49), 1, - anon_sym_cl, - ACTIONS(1127), 1, - anon_sym_RPAREN, - STATE(119), 1, - aux_sym__bare_list_lit_repeat1, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(1125), 2, - sym__ws, - sym_comment, - STATE(118), 2, - sym__gap, - sym_dis_expr, - ACTIONS(345), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1658), 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, - [6768] = 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(49), 1, - anon_sym_cl, - ACTIONS(1131), 1, - anon_sym_RBRACE, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(1129), 2, - sym__ws, - sym_comment, - ACTIONS(345), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(102), 3, - sym__gap, - sym_dis_expr, - aux_sym__bare_list_lit_repeat1, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1658), 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, - [6903] = 36, - 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(49), 1, - anon_sym_cl, - ACTIONS(1135), 1, - anon_sym_RPAREN, - STATE(45), 1, - aux_sym__bare_list_lit_repeat1, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(1133), 2, - sym__ws, - sym_comment, - STATE(104), 2, - sym__gap, - sym_dis_expr, - ACTIONS(345), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1658), 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, - [7040] = 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(49), 1, - anon_sym_cl, - ACTIONS(1137), 1, - anon_sym_RPAREN, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(909), 2, - sym__ws, - sym_comment, - ACTIONS(345), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(30), 3, - sym__gap, - sym_dis_expr, - aux_sym__bare_list_lit_repeat1, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1658), 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, - [7175] = 35, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(777), 1, - anon_sym_COLON, - ACTIONS(779), 1, - anon_sym_COLON_COLON, - ACTIONS(781), 1, - anon_sym_DQUOTE, - ACTIONS(787), 1, - aux_sym_sym_lit_token1, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(795), 1, - anon_sym_POUND_QMARK, - ACTIONS(797), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(873), 1, - aux_sym_num_lit_token1, - ACTIONS(877), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(879), 1, - anon_sym_SQUOTE, - ACTIONS(881), 1, - anon_sym_BQUOTE, - ACTIONS(883), 1, - anon_sym_COMMA_AT, - ACTIONS(885), 1, - anon_sym_COMMA, - ACTIONS(1013), 1, - anon_sym_POUND_, - ACTIONS(1015), 1, - anon_sym_POUND, - ACTIONS(1143), 1, - anon_sym_cl, - ACTIONS(1145), 1, - anon_sym_EQ, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, - sym_sym_lit, - STATE(2048), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(811), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(815), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(875), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(887), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(1139), 2, - sym__ws, - sym_comment, - ACTIONS(1141), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(80), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(2751), 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, - [7310] = 35, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(777), 1, - anon_sym_COLON, - ACTIONS(779), 1, - anon_sym_COLON_COLON, - ACTIONS(781), 1, - anon_sym_DQUOTE, - ACTIONS(787), 1, - aux_sym_sym_lit_token1, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(795), 1, - anon_sym_POUND_QMARK, - ACTIONS(797), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(873), 1, - aux_sym_num_lit_token1, - ACTIONS(877), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(879), 1, - anon_sym_SQUOTE, - ACTIONS(881), 1, - anon_sym_BQUOTE, - ACTIONS(883), 1, - anon_sym_COMMA_AT, - ACTIONS(885), 1, - anon_sym_COMMA, - ACTIONS(1013), 1, - anon_sym_POUND_, - ACTIONS(1015), 1, - anon_sym_POUND, - ACTIONS(1149), 1, - anon_sym_cl, - ACTIONS(1151), 1, - anon_sym_EQ, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, - sym_sym_lit, - STATE(2048), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(811), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(815), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(875), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(887), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(1011), 2, - sym__ws, - sym_comment, - ACTIONS(1147), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1656), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2748), 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, - [7445] = 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(49), 1, - anon_sym_cl, - ACTIONS(1153), 1, - ts_builtin_sym_end, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(1155), 2, - sym__ws, - sym_comment, - ACTIONS(13), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(89), 3, - sym__gap, - sym_dis_expr, - aux_sym_source_repeat1, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1814), 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, - [7580] = 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(49), 1, - anon_sym_cl, - ACTIONS(1157), 1, - anon_sym_RPAREN, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(909), 2, - sym__ws, - sym_comment, - ACTIONS(345), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(30), 3, - sym__gap, - sym_dis_expr, - aux_sym__bare_list_lit_repeat1, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1658), 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, - [7715] = 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(49), 1, - anon_sym_cl, - ACTIONS(1159), 1, - anon_sym_RBRACE, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(909), 2, - sym__ws, - sym_comment, - ACTIONS(345), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(30), 3, - sym__gap, - sym_dis_expr, - aux_sym__bare_list_lit_repeat1, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1658), 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, - [7850] = 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(49), 1, - anon_sym_cl, - ACTIONS(1161), 1, - anon_sym_RBRACE, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(909), 2, - sym__ws, - sym_comment, - ACTIONS(345), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(30), 3, - sym__gap, - sym_dis_expr, - aux_sym__bare_list_lit_repeat1, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1658), 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, - [7985] = 36, - 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(49), 1, - anon_sym_cl, - ACTIONS(1165), 1, - anon_sym_RPAREN, - STATE(108), 1, - aux_sym__bare_list_lit_repeat1, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(1163), 2, - sym__ws, - sym_comment, - STATE(106), 2, - sym__gap, - sym_dis_expr, - ACTIONS(345), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1658), 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, - [8122] = 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(49), 1, - anon_sym_cl, - ACTIONS(1165), 1, - anon_sym_RPAREN, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(1167), 2, - sym__ws, - sym_comment, - ACTIONS(345), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(109), 3, - sym__gap, - sym_dis_expr, - aux_sym__bare_list_lit_repeat1, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1658), 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, - [8257] = 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(49), 1, - anon_sym_cl, - ACTIONS(1171), 1, - anon_sym_RBRACE, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(1169), 2, - sym__ws, - sym_comment, - ACTIONS(345), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(101), 3, - sym__gap, - sym_dis_expr, - aux_sym__bare_list_lit_repeat1, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1658), 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, - [8392] = 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(49), 1, - anon_sym_cl, - ACTIONS(1175), 1, - anon_sym_RPAREN, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(1173), 2, - sym__ws, - sym_comment, - ACTIONS(345), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(111), 3, - sym__gap, - sym_dis_expr, - aux_sym__bare_list_lit_repeat1, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1658), 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, - [8527] = 36, - 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(49), 1, - anon_sym_cl, - ACTIONS(1179), 1, - anon_sym_RPAREN, - STATE(133), 1, - aux_sym__bare_list_lit_repeat1, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(1177), 2, - sym__ws, - sym_comment, - STATE(122), 2, - sym__gap, - sym_dis_expr, - ACTIONS(345), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1658), 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, - [8664] = 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(49), 1, - anon_sym_cl, - ACTIONS(1181), 1, - anon_sym_RPAREN, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(909), 2, - sym__ws, - sym_comment, - ACTIONS(345), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(30), 3, - sym__gap, - sym_dis_expr, - aux_sym__bare_list_lit_repeat1, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1658), 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, - [8799] = 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(49), 1, - anon_sym_cl, - ACTIONS(1183), 1, - anon_sym_RPAREN, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(909), 2, - sym__ws, - sym_comment, - ACTIONS(345), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(30), 3, - sym__gap, - sym_dis_expr, - aux_sym__bare_list_lit_repeat1, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1658), 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, - [8934] = 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(49), 1, - anon_sym_cl, - ACTIONS(1185), 1, - anon_sym_RBRACE, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(909), 2, - sym__ws, - sym_comment, - ACTIONS(345), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(30), 3, - sym__gap, - sym_dis_expr, - aux_sym__bare_list_lit_repeat1, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1658), 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, - [9069] = 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(49), 1, - anon_sym_cl, - ACTIONS(1187), 1, - anon_sym_RPAREN, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(909), 2, - sym__ws, - sym_comment, - ACTIONS(345), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(30), 3, - sym__gap, - sym_dis_expr, - aux_sym__bare_list_lit_repeat1, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1658), 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, - [9204] = 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(49), 1, - anon_sym_cl, - ACTIONS(1189), 1, - anon_sym_RPAREN, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(909), 2, - sym__ws, - sym_comment, - ACTIONS(345), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(30), 3, - sym__gap, - sym_dis_expr, - aux_sym__bare_list_lit_repeat1, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1658), 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, - [9339] = 36, - 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(49), 1, - anon_sym_cl, - ACTIONS(1193), 1, - anon_sym_RPAREN, - STATE(49), 1, - aux_sym__bare_list_lit_repeat1, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(1191), 2, - sym__ws, - sym_comment, - STATE(48), 2, - sym__gap, - sym_dis_expr, - ACTIONS(345), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1658), 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, - [9476] = 35, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(777), 1, - anon_sym_COLON, - ACTIONS(779), 1, - anon_sym_COLON_COLON, - ACTIONS(781), 1, - anon_sym_DQUOTE, - ACTIONS(787), 1, - aux_sym_sym_lit_token1, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(795), 1, - anon_sym_POUND_QMARK, - ACTIONS(797), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(873), 1, - aux_sym_num_lit_token1, - ACTIONS(877), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(879), 1, - anon_sym_SQUOTE, - ACTIONS(881), 1, - anon_sym_BQUOTE, - ACTIONS(883), 1, - anon_sym_COMMA_AT, - ACTIONS(885), 1, - anon_sym_COMMA, - ACTIONS(1013), 1, - anon_sym_POUND_, - ACTIONS(1015), 1, - anon_sym_POUND, - ACTIONS(1197), 1, - anon_sym_cl, - ACTIONS(1199), 1, - anon_sym_EQ, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, - sym_sym_lit, - STATE(2048), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(811), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(815), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(875), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(887), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(1011), 2, - sym__ws, - sym_comment, - ACTIONS(1195), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1656), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2747), 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, - [9611] = 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(49), 1, - anon_sym_cl, - ACTIONS(1203), 1, - anon_sym_RBRACE, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(1201), 2, - sym__ws, - sym_comment, - ACTIONS(345), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(123), 3, - sym__gap, - sym_dis_expr, - aux_sym__bare_list_lit_repeat1, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1658), 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, - [9746] = 36, - 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(49), 1, - anon_sym_cl, - ACTIONS(1207), 1, - anon_sym_RPAREN, - STATE(126), 1, - aux_sym__bare_list_lit_repeat1, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(1205), 2, - sym__ws, - sym_comment, - STATE(125), 2, - sym__gap, - sym_dis_expr, - ACTIONS(345), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1658), 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, - [9883] = 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(49), 1, - anon_sym_cl, - ACTIONS(1209), 1, - anon_sym_RPAREN, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(909), 2, - sym__ws, - sym_comment, - ACTIONS(345), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(30), 3, - sym__gap, - sym_dis_expr, - aux_sym__bare_list_lit_repeat1, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1658), 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, - [10018] = 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(49), 1, - anon_sym_cl, - ACTIONS(1179), 1, - anon_sym_RPAREN, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(1211), 2, - sym__ws, - sym_comment, - ACTIONS(345), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(134), 3, - sym__gap, - sym_dis_expr, - aux_sym__bare_list_lit_repeat1, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1658), 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, - [10153] = 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(49), 1, - anon_sym_cl, - ACTIONS(1213), 1, - anon_sym_RPAREN, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(909), 2, - sym__ws, - sym_comment, - ACTIONS(345), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(30), 3, - sym__gap, - sym_dis_expr, - aux_sym__bare_list_lit_repeat1, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1658), 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, - [10288] = 35, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(777), 1, - anon_sym_COLON, - ACTIONS(779), 1, - anon_sym_COLON_COLON, - ACTIONS(781), 1, - anon_sym_DQUOTE, - ACTIONS(787), 1, - aux_sym_sym_lit_token1, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(795), 1, - anon_sym_POUND_QMARK, - ACTIONS(797), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(873), 1, - aux_sym_num_lit_token1, - ACTIONS(877), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(879), 1, - anon_sym_SQUOTE, - ACTIONS(881), 1, - anon_sym_BQUOTE, - ACTIONS(883), 1, - anon_sym_COMMA_AT, - ACTIONS(885), 1, - anon_sym_COMMA, - ACTIONS(1013), 1, - anon_sym_POUND_, - ACTIONS(1015), 1, - anon_sym_POUND, - ACTIONS(1219), 1, - anon_sym_cl, - ACTIONS(1221), 1, - anon_sym_EQ, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, - sym_sym_lit, - STATE(2048), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(811), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(815), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(875), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(887), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(1215), 2, - sym__ws, - sym_comment, - ACTIONS(1217), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(98), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(2743), 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, - [10423] = 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(49), 1, - anon_sym_cl, - ACTIONS(1225), 1, - anon_sym_RBRACE, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(1223), 2, - sym__ws, - sym_comment, - ACTIONS(345), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(92), 3, - sym__gap, - sym_dis_expr, - aux_sym__bare_list_lit_repeat1, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1658), 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, - [10558] = 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(49), 1, - anon_sym_cl, - ACTIONS(1229), 1, - anon_sym_RPAREN, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(1227), 2, - sym__ws, - sym_comment, - ACTIONS(345), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(139), 3, - sym__gap, - sym_dis_expr, - aux_sym__bare_list_lit_repeat1, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1658), 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, - [10693] = 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(49), 1, - anon_sym_cl, - ACTIONS(1231), 1, - anon_sym_RBRACE, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(909), 2, - sym__ws, - sym_comment, - ACTIONS(345), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(30), 3, - sym__gap, - sym_dis_expr, - aux_sym__bare_list_lit_repeat1, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1658), 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, - [10828] = 36, - 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(49), 1, - anon_sym_cl, - ACTIONS(1235), 1, - anon_sym_RPAREN, - STATE(129), 1, - aux_sym__bare_list_lit_repeat1, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(1233), 2, - sym__ws, - sym_comment, - STATE(128), 2, - sym__gap, - sym_dis_expr, - ACTIONS(345), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1658), 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, - [10965] = 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(49), 1, - anon_sym_cl, - ACTIONS(1235), 1, - anon_sym_RPAREN, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(1237), 2, - sym__ws, - sym_comment, - ACTIONS(345), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(130), 3, - sym__gap, - sym_dis_expr, - aux_sym__bare_list_lit_repeat1, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1658), 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, - [11100] = 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(49), 1, - anon_sym_cl, - ACTIONS(1239), 1, - anon_sym_RPAREN, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(909), 2, - sym__ws, - sym_comment, - ACTIONS(345), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(30), 3, - sym__gap, - sym_dis_expr, - aux_sym__bare_list_lit_repeat1, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1658), 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, - [11235] = 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(49), 1, - anon_sym_cl, - ACTIONS(1241), 1, - anon_sym_RBRACE, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(909), 2, - sym__ws, - sym_comment, - ACTIONS(345), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(30), 3, - sym__gap, - sym_dis_expr, - aux_sym__bare_list_lit_repeat1, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1658), 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, - [11370] = 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(49), 1, - anon_sym_cl, - ACTIONS(1245), 1, - anon_sym_RPAREN, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(1243), 2, - sym__ws, - sym_comment, - ACTIONS(345), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(132), 3, - sym__gap, - sym_dis_expr, - aux_sym__bare_list_lit_repeat1, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1658), 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, - [11505] = 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(49), 1, - anon_sym_cl, - ACTIONS(1247), 1, - anon_sym_RPAREN, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(909), 2, - sym__ws, - sym_comment, - ACTIONS(345), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(30), 3, - sym__gap, - sym_dis_expr, - aux_sym__bare_list_lit_repeat1, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1658), 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, - [11640] = 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(49), 1, - anon_sym_cl, - ACTIONS(1249), 1, - anon_sym_RPAREN, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(909), 2, - sym__ws, - sym_comment, - ACTIONS(345), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(30), 3, - sym__gap, - sym_dis_expr, - aux_sym__bare_list_lit_repeat1, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1658), 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, - [11775] = 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(49), 1, - anon_sym_cl, - ACTIONS(1251), 1, - anon_sym_RPAREN, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(909), 2, - sym__ws, - sym_comment, - ACTIONS(345), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(30), 3, - sym__gap, - sym_dis_expr, - aux_sym__bare_list_lit_repeat1, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1658), 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, - [11910] = 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(49), 1, - anon_sym_cl, - ACTIONS(1253), 1, - anon_sym_RPAREN, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(909), 2, - sym__ws, - sym_comment, - ACTIONS(345), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(30), 3, - sym__gap, - sym_dis_expr, - aux_sym__bare_list_lit_repeat1, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1658), 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, - [12045] = 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(49), 1, - anon_sym_cl, - ACTIONS(1255), 1, - anon_sym_RPAREN, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(909), 2, - sym__ws, - sym_comment, - ACTIONS(345), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(30), 3, - sym__gap, - sym_dis_expr, - aux_sym__bare_list_lit_repeat1, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1658), 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, - [12180] = 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(49), 1, - anon_sym_cl, - ACTIONS(1257), 1, - anon_sym_RPAREN, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(909), 2, - sym__ws, - sym_comment, - ACTIONS(345), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(30), 3, - sym__gap, - sym_dis_expr, - aux_sym__bare_list_lit_repeat1, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1658), 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, - [12315] = 35, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(777), 1, - anon_sym_COLON, - ACTIONS(779), 1, - anon_sym_COLON_COLON, - ACTIONS(781), 1, - anon_sym_DQUOTE, - ACTIONS(787), 1, - aux_sym_sym_lit_token1, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(795), 1, - anon_sym_POUND_QMARK, - ACTIONS(797), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(873), 1, - aux_sym_num_lit_token1, - ACTIONS(877), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(879), 1, - anon_sym_SQUOTE, - ACTIONS(881), 1, - anon_sym_BQUOTE, - ACTIONS(883), 1, - anon_sym_COMMA_AT, - ACTIONS(885), 1, - anon_sym_COMMA, - ACTIONS(1013), 1, - anon_sym_POUND_, - ACTIONS(1015), 1, - anon_sym_POUND, - ACTIONS(1263), 1, - anon_sym_cl, - ACTIONS(1265), 1, - anon_sym_EQ, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, - sym_sym_lit, - STATE(2048), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(811), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(815), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(875), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(887), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(1259), 2, - sym__ws, - sym_comment, - ACTIONS(1261), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(114), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(2734), 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, - [12450] = 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(49), 1, - anon_sym_cl, - ACTIONS(1267), 1, - anon_sym_RPAREN, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(909), 2, - sym__ws, - sym_comment, - ACTIONS(345), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(30), 3, - sym__gap, - sym_dis_expr, - aux_sym__bare_list_lit_repeat1, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1658), 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, - [12585] = 35, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(777), 1, - anon_sym_COLON, - ACTIONS(779), 1, - anon_sym_COLON_COLON, - ACTIONS(781), 1, - anon_sym_DQUOTE, - ACTIONS(787), 1, - aux_sym_sym_lit_token1, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(795), 1, - anon_sym_POUND_QMARK, - ACTIONS(797), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(873), 1, - aux_sym_num_lit_token1, - ACTIONS(877), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(879), 1, - anon_sym_SQUOTE, - ACTIONS(881), 1, - anon_sym_BQUOTE, - ACTIONS(883), 1, - anon_sym_COMMA_AT, - ACTIONS(885), 1, - anon_sym_COMMA, - ACTIONS(1013), 1, - anon_sym_POUND_, - ACTIONS(1015), 1, - anon_sym_POUND, - ACTIONS(1271), 1, - anon_sym_cl, - ACTIONS(1273), 1, - anon_sym_EQ, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, - sym_sym_lit, - STATE(2048), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(811), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(815), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(875), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(887), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(1011), 2, - sym__ws, - sym_comment, - ACTIONS(1269), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1656), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2733), 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, - [12720] = 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(59), 1, - anon_sym_POUND, - ACTIONS(63), 1, - aux_sym_num_lit_token1, - ACTIONS(65), 1, - anon_sym_COLON, - ACTIONS(67), 1, - anon_sym_COLON_COLON, - ACTIONS(69), 1, - anon_sym_DQUOTE, - ACTIONS(71), 1, - aux_sym_sym_lit_token1, - ACTIONS(75), 1, - anon_sym_POUND_QMARK, - ACTIONS(77), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(79), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(81), 1, - anon_sym_SQUOTE, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(85), 1, - anon_sym_COMMA_AT, - ACTIONS(87), 1, - anon_sym_COMMA, - ACTIONS(541), 1, - anon_sym_LPAREN, - ACTIONS(545), 1, - anon_sym_cl, - STATE(2), 1, - aux_sym_do_clause_repeat1, - STATE(877), 1, - sym_sym_lit, - STATE(938), 1, - sym__bare_set_lit, - STATE(2065), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(73), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(91), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(93), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(95), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(1275), 2, - sym__ws, - sym_comment, - ACTIONS(61), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(226), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(939), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(815), 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, - [12855] = 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(49), 1, - anon_sym_cl, - ACTIONS(1277), 1, - anon_sym_RPAREN, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(909), 2, - sym__ws, - sym_comment, - ACTIONS(345), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(30), 3, - sym__gap, - sym_dis_expr, - aux_sym__bare_list_lit_repeat1, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1658), 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, - [12990] = 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(49), 1, - anon_sym_cl, - ACTIONS(1279), 1, - anon_sym_RPAREN, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(909), 2, - sym__ws, - sym_comment, - ACTIONS(345), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(30), 3, - sym__gap, - sym_dis_expr, - aux_sym__bare_list_lit_repeat1, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1658), 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, - [13125] = 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(49), 1, - anon_sym_cl, - ACTIONS(1281), 1, - anon_sym_RPAREN, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(909), 2, - sym__ws, - sym_comment, - ACTIONS(345), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(30), 3, - sym__gap, - sym_dis_expr, - aux_sym__bare_list_lit_repeat1, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1658), 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, - [13260] = 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(49), 1, - anon_sym_cl, - ACTIONS(1285), 1, - anon_sym_RPAREN, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(1283), 2, - sym__ws, - sym_comment, - ACTIONS(345), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(136), 3, - sym__gap, - sym_dis_expr, - aux_sym__bare_list_lit_repeat1, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1658), 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, - [13395] = 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(59), 1, - anon_sym_POUND, - ACTIONS(63), 1, - aux_sym_num_lit_token1, - ACTIONS(65), 1, - anon_sym_COLON, - ACTIONS(67), 1, - anon_sym_COLON_COLON, - ACTIONS(69), 1, - anon_sym_DQUOTE, - ACTIONS(71), 1, - aux_sym_sym_lit_token1, - ACTIONS(75), 1, - anon_sym_POUND_QMARK, - ACTIONS(77), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(79), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(81), 1, - anon_sym_SQUOTE, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(85), 1, - anon_sym_COMMA_AT, - ACTIONS(87), 1, - anon_sym_COMMA, - ACTIONS(541), 1, - anon_sym_LPAREN, - ACTIONS(545), 1, - anon_sym_cl, - STATE(3), 1, - aux_sym_do_clause_repeat1, - STATE(877), 1, - sym_sym_lit, - STATE(938), 1, - sym__bare_set_lit, - STATE(2065), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(73), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(91), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(93), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(95), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(1275), 2, - sym__ws, - sym_comment, - ACTIONS(61), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(226), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(939), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(815), 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, - [13530] = 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(49), 1, - anon_sym_cl, - ACTIONS(1287), 1, - anon_sym_RPAREN, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(909), 2, - sym__ws, - sym_comment, - ACTIONS(345), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(30), 3, - sym__gap, - sym_dis_expr, - aux_sym__bare_list_lit_repeat1, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1658), 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, - [13665] = 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(49), 1, - anon_sym_cl, - ACTIONS(1291), 1, - anon_sym_RPAREN, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(1289), 2, - sym__ws, - sym_comment, - ACTIONS(345), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(140), 3, - sym__gap, - sym_dis_expr, - aux_sym__bare_list_lit_repeat1, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1658), 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, - [13800] = 36, - 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(49), 1, - anon_sym_cl, - ACTIONS(1295), 1, - anon_sym_RPAREN, - STATE(163), 1, - aux_sym__bare_list_lit_repeat1, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(1293), 2, - sym__ws, - sym_comment, - STATE(148), 2, - sym__gap, - sym_dis_expr, - ACTIONS(345), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1658), 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, - [13937] = 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(49), 1, - anon_sym_cl, - ACTIONS(1297), 1, - anon_sym_RPAREN, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(909), 2, - sym__ws, - sym_comment, - ACTIONS(345), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(30), 3, - sym__gap, - sym_dis_expr, - aux_sym__bare_list_lit_repeat1, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1658), 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, - [14072] = 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(49), 1, - anon_sym_cl, - ACTIONS(1301), 1, - anon_sym_RPAREN, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(1299), 2, - sym__ws, - sym_comment, - ACTIONS(345), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(149), 3, - sym__gap, - sym_dis_expr, - aux_sym__bare_list_lit_repeat1, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1658), 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, - [14207] = 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(49), 1, - anon_sym_cl, - ACTIONS(1303), 1, - anon_sym_RPAREN, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(909), 2, - sym__ws, - sym_comment, - ACTIONS(345), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(30), 3, - sym__gap, - sym_dis_expr, - aux_sym__bare_list_lit_repeat1, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1658), 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, - [14342] = 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(49), 1, - anon_sym_cl, - ACTIONS(1305), 1, - anon_sym_RPAREN, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(909), 2, - sym__ws, - sym_comment, - ACTIONS(345), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(30), 3, - sym__gap, - sym_dis_expr, - aux_sym__bare_list_lit_repeat1, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1658), 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, - [14477] = 36, - 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(49), 1, - anon_sym_cl, - ACTIONS(1309), 1, - anon_sym_RPAREN, - STATE(85), 1, - aux_sym__bare_list_lit_repeat1, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(1307), 2, - sym__ws, - sym_comment, - STATE(161), 2, - sym__gap, - sym_dis_expr, - ACTIONS(345), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1658), 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, - [14614] = 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(49), 1, - anon_sym_cl, - ACTIONS(1313), 1, - anon_sym_RPAREN, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(1311), 2, - sym__ws, - sym_comment, - ACTIONS(345), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(165), 3, - sym__gap, - sym_dis_expr, - aux_sym__bare_list_lit_repeat1, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1658), 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, - [14749] = 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(49), 1, - anon_sym_cl, - ACTIONS(1315), 1, - anon_sym_RPAREN, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(909), 2, - sym__ws, - sym_comment, - ACTIONS(345), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(30), 3, - sym__gap, - sym_dis_expr, - aux_sym__bare_list_lit_repeat1, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1658), 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, - [14884] = 36, - 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(49), 1, - anon_sym_cl, - ACTIONS(1291), 1, - anon_sym_RPAREN, - STATE(141), 1, - aux_sym__bare_list_lit_repeat1, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(1317), 2, - sym__ws, - sym_comment, - STATE(142), 2, - sym__gap, - sym_dis_expr, - ACTIONS(345), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1658), 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, - [15021] = 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(49), 1, - anon_sym_cl, - ACTIONS(1309), 1, - anon_sym_RPAREN, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(1319), 2, - sym__ws, - sym_comment, - ACTIONS(345), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(153), 3, - sym__gap, - sym_dis_expr, - aux_sym__bare_list_lit_repeat1, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1658), 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, - [15156] = 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(49), 1, - anon_sym_cl, - ACTIONS(1321), 1, - anon_sym_RPAREN, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(909), 2, - sym__ws, - sym_comment, - ACTIONS(345), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(30), 3, - sym__gap, - sym_dis_expr, - aux_sym__bare_list_lit_repeat1, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1658), 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, - [15291] = 36, - 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(49), 1, - anon_sym_cl, - ACTIONS(1301), 1, - anon_sym_RPAREN, - STATE(150), 1, - aux_sym__bare_list_lit_repeat1, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(1323), 2, - sym__ws, - sym_comment, - STATE(152), 2, - sym__gap, - sym_dis_expr, - ACTIONS(345), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1658), 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, - [15428] = 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(49), 1, - anon_sym_cl, - ACTIONS(1325), 1, - anon_sym_RPAREN, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(909), 2, - sym__ws, - sym_comment, - ACTIONS(345), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(30), 3, - sym__gap, - sym_dis_expr, - aux_sym__bare_list_lit_repeat1, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1658), 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, - [15563] = 36, - 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(49), 1, - anon_sym_cl, - ACTIONS(1329), 1, - anon_sym_RPAREN, - STATE(144), 1, - aux_sym__bare_list_lit_repeat1, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(1327), 2, - sym__ws, - sym_comment, - STATE(145), 2, - sym__gap, - sym_dis_expr, - ACTIONS(345), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1658), 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, - [15700] = 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(49), 1, - anon_sym_cl, - ACTIONS(1331), 1, - anon_sym_RBRACE, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(909), 2, - sym__ws, - sym_comment, - ACTIONS(345), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(30), 3, - sym__gap, - sym_dis_expr, - aux_sym__bare_list_lit_repeat1, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1658), 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, - [15835] = 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(49), 1, - anon_sym_cl, - ACTIONS(1335), 1, - anon_sym_RPAREN, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(1333), 2, - sym__ws, - sym_comment, - ACTIONS(345), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(131), 3, - sym__gap, - sym_dis_expr, - aux_sym__bare_list_lit_repeat1, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1658), 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, - [15970] = 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(49), 1, - anon_sym_cl, - ACTIONS(1339), 1, - anon_sym_RBRACE, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(1337), 2, - sym__ws, - sym_comment, - ACTIONS(345), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(160), 3, - sym__gap, - sym_dis_expr, - aux_sym__bare_list_lit_repeat1, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1658), 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, - [16105] = 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(49), 1, - anon_sym_cl, - ACTIONS(1341), 1, - anon_sym_RPAREN, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(909), 2, - sym__ws, - sym_comment, - ACTIONS(345), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(30), 3, - sym__gap, - sym_dis_expr, - aux_sym__bare_list_lit_repeat1, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1658), 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, - [16240] = 35, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(777), 1, - anon_sym_COLON, - ACTIONS(779), 1, - anon_sym_COLON_COLON, - ACTIONS(781), 1, - anon_sym_DQUOTE, - ACTIONS(787), 1, - aux_sym_sym_lit_token1, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(795), 1, - anon_sym_POUND_QMARK, - ACTIONS(797), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(873), 1, - aux_sym_num_lit_token1, - ACTIONS(877), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(879), 1, - anon_sym_SQUOTE, - ACTIONS(881), 1, - anon_sym_BQUOTE, - ACTIONS(883), 1, - anon_sym_COMMA_AT, - ACTIONS(885), 1, - anon_sym_COMMA, - ACTIONS(1013), 1, - anon_sym_POUND_, - ACTIONS(1015), 1, - anon_sym_POUND, - ACTIONS(1347), 1, - anon_sym_cl, - ACTIONS(1349), 1, - anon_sym_EQ, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, - sym_sym_lit, - STATE(2048), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(811), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(815), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(875), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(887), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(1343), 2, - sym__ws, - sym_comment, - ACTIONS(1345), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(137), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(2719), 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, - [16375] = 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(49), 1, - anon_sym_cl, - ACTIONS(1351), 1, - anon_sym_RPAREN, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(909), 2, - sym__ws, - sym_comment, - ACTIONS(345), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(30), 3, - sym__gap, - sym_dis_expr, - aux_sym__bare_list_lit_repeat1, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1658), 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, - [16510] = 34, - 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(183), 1, - anon_sym_POUND, - ACTIONS(187), 1, - aux_sym_num_lit_token1, - ACTIONS(189), 1, - anon_sym_COLON, - ACTIONS(191), 1, - anon_sym_COLON_COLON, - ACTIONS(193), 1, - anon_sym_DQUOTE, - ACTIONS(195), 1, - aux_sym_sym_lit_token1, - ACTIONS(210), 1, - anon_sym_POUND_QMARK, - ACTIONS(212), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(214), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(216), 1, - anon_sym_SQUOTE, - ACTIONS(218), 1, - anon_sym_BQUOTE, - ACTIONS(220), 1, - anon_sym_COMMA_AT, - ACTIONS(222), 1, - anon_sym_COMMA, - ACTIONS(557), 1, - anon_sym_LPAREN, - ACTIONS(561), 1, - anon_sym_cl, - STATE(1057), 1, - sym__bare_set_lit, - STATE(1059), 1, - sym_sym_lit, - STATE(2062), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(208), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(229), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(231), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(233), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(1353), 2, - sym__ws, - sym_comment, - ACTIONS(1355), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(1058), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1070), 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, - [16642] = 34, - 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(49), 1, - anon_sym_cl, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(1353), 2, - sym__ws, - sym_comment, - ACTIONS(1357), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(371), 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, - [16774] = 34, - 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(59), 1, - anon_sym_POUND, - ACTIONS(63), 1, - aux_sym_num_lit_token1, - ACTIONS(65), 1, - anon_sym_COLON, - ACTIONS(67), 1, - anon_sym_COLON_COLON, - ACTIONS(69), 1, - anon_sym_DQUOTE, - ACTIONS(71), 1, - aux_sym_sym_lit_token1, - ACTIONS(75), 1, - anon_sym_POUND_QMARK, - ACTIONS(77), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(79), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(81), 1, - anon_sym_SQUOTE, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(85), 1, - anon_sym_COMMA_AT, - ACTIONS(87), 1, - anon_sym_COMMA, - ACTIONS(541), 1, - anon_sym_LPAREN, - ACTIONS(545), 1, - anon_sym_cl, - STATE(877), 1, - sym_sym_lit, - STATE(938), 1, - sym__bare_set_lit, - STATE(2065), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(73), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(91), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(93), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(95), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(1359), 2, - sym__ws, - sym_comment, - ACTIONS(1361), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(563), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(939), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(937), 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, - [16906] = 34, - 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(789), 1, - anon_sym_LPAREN, - ACTIONS(821), 1, - anon_sym_COLON, - ACTIONS(823), 1, - anon_sym_COLON_COLON, - ACTIONS(825), 1, - anon_sym_DQUOTE, - ACTIONS(827), 1, - aux_sym_sym_lit_token1, - ACTIONS(845), 1, - anon_sym_cl, - ACTIONS(853), 1, - aux_sym_num_lit_token1, - ACTIONS(857), 1, - anon_sym_POUND_QMARK, - ACTIONS(859), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(861), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(863), 1, - anon_sym_SQUOTE, - ACTIONS(865), 1, - anon_sym_BQUOTE, - ACTIONS(867), 1, - anon_sym_COMMA_AT, - ACTIONS(869), 1, - anon_sym_COMMA, - ACTIONS(1365), 1, - anon_sym_POUND, - STATE(2051), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - STATE(2333), 1, - sym__bare_set_lit, - STATE(2404), 1, - sym_sym_lit, - ACTIONS(653), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(657), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(855), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(871), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(1363), 2, - sym__ws, - sym_comment, - ACTIONS(1367), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(312), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2332), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(2327), 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, - [17038] = 34, - 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(789), 1, - anon_sym_LPAREN, - ACTIONS(821), 1, - anon_sym_COLON, - ACTIONS(823), 1, - anon_sym_COLON_COLON, - ACTIONS(825), 1, - anon_sym_DQUOTE, - ACTIONS(827), 1, - aux_sym_sym_lit_token1, - ACTIONS(845), 1, - anon_sym_cl, - ACTIONS(853), 1, - aux_sym_num_lit_token1, - ACTIONS(857), 1, - anon_sym_POUND_QMARK, - ACTIONS(859), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(861), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(863), 1, - anon_sym_SQUOTE, - ACTIONS(865), 1, - anon_sym_BQUOTE, - ACTIONS(867), 1, - anon_sym_COMMA_AT, - ACTIONS(869), 1, - anon_sym_COMMA, - ACTIONS(1365), 1, - anon_sym_POUND, - STATE(2051), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - STATE(2333), 1, - sym__bare_set_lit, - STATE(2404), 1, - sym_sym_lit, - ACTIONS(653), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(657), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(855), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(871), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(1369), 2, - sym__ws, - sym_comment, - ACTIONS(1371), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(294), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2332), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(2328), 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, - [17170] = 34, - 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(617), 1, - aux_sym_num_lit_token1, - ACTIONS(821), 1, - anon_sym_COLON, - ACTIONS(823), 1, - anon_sym_COLON_COLON, - ACTIONS(825), 1, - anon_sym_DQUOTE, - ACTIONS(827), 1, - aux_sym_sym_lit_token1, - ACTIONS(829), 1, - anon_sym_LPAREN, - ACTIONS(831), 1, - anon_sym_POUND_QMARK, - ACTIONS(833), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(835), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(837), 1, - anon_sym_SQUOTE, - ACTIONS(839), 1, - anon_sym_BQUOTE, - ACTIONS(841), 1, - anon_sym_COMMA_AT, - ACTIONS(843), 1, - anon_sym_COMMA, - ACTIONS(845), 1, - anon_sym_cl, - ACTIONS(1373), 1, - anon_sym_POUND, - STATE(2056), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - STATE(2333), 1, - sym__bare_set_lit, - STATE(2404), 1, - sym_sym_lit, - ACTIONS(635), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(653), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(657), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(847), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(1353), 2, - sym__ws, - sym_comment, - ACTIONS(1375), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(1657), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2332), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(2016), 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, - [17302] = 34, - 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(789), 1, - anon_sym_LPAREN, - ACTIONS(821), 1, - anon_sym_COLON, - ACTIONS(823), 1, - anon_sym_COLON_COLON, - ACTIONS(825), 1, - anon_sym_DQUOTE, - ACTIONS(827), 1, - aux_sym_sym_lit_token1, - ACTIONS(845), 1, - anon_sym_cl, - ACTIONS(853), 1, - aux_sym_num_lit_token1, - ACTIONS(857), 1, - anon_sym_POUND_QMARK, - ACTIONS(859), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(861), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(863), 1, - anon_sym_SQUOTE, - ACTIONS(865), 1, - anon_sym_BQUOTE, - ACTIONS(867), 1, - anon_sym_COMMA_AT, - ACTIONS(869), 1, - anon_sym_COMMA, - ACTIONS(1365), 1, - anon_sym_POUND, - STATE(2051), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - STATE(2333), 1, - sym__bare_set_lit, - STATE(2404), 1, - sym_sym_lit, - ACTIONS(653), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(657), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(855), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(871), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(1377), 2, - sym__ws, - sym_comment, - ACTIONS(1379), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(283), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2332), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(2329), 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, - [17434] = 34, - 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(789), 1, - anon_sym_LPAREN, - ACTIONS(821), 1, - anon_sym_COLON, - ACTIONS(823), 1, - anon_sym_COLON_COLON, - ACTIONS(825), 1, - anon_sym_DQUOTE, - ACTIONS(827), 1, - aux_sym_sym_lit_token1, - ACTIONS(845), 1, - anon_sym_cl, - ACTIONS(853), 1, - aux_sym_num_lit_token1, - ACTIONS(857), 1, - anon_sym_POUND_QMARK, - ACTIONS(859), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(861), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(863), 1, - anon_sym_SQUOTE, - ACTIONS(865), 1, - anon_sym_BQUOTE, - ACTIONS(867), 1, - anon_sym_COMMA_AT, - ACTIONS(869), 1, - anon_sym_COMMA, - ACTIONS(1365), 1, - anon_sym_POUND, - STATE(2051), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - STATE(2333), 1, - sym__bare_set_lit, - STATE(2404), 1, - sym_sym_lit, - ACTIONS(653), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(657), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(855), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(871), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(1381), 2, - sym__ws, - sym_comment, - ACTIONS(1383), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(276), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2332), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(2330), 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, - [17566] = 34, - 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(569), 1, - aux_sym_num_lit_token1, - ACTIONS(571), 1, - anon_sym_COLON, - ACTIONS(573), 1, - anon_sym_COLON_COLON, - ACTIONS(575), 1, - anon_sym_DQUOTE, - ACTIONS(581), 1, - aux_sym_sym_lit_token1, - ACTIONS(583), 1, - anon_sym_LPAREN, - ACTIONS(589), 1, - anon_sym_POUND_QMARK, - ACTIONS(591), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(593), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(595), 1, - anon_sym_SQUOTE, - ACTIONS(597), 1, - anon_sym_BQUOTE, - ACTIONS(599), 1, - anon_sym_COMMA_AT, - ACTIONS(601), 1, - anon_sym_COMMA, - ACTIONS(603), 1, - anon_sym_cl, - ACTIONS(1387), 1, - anon_sym_POUND, - STATE(1163), 1, - sym_sym_lit, - STATE(1186), 1, - sym__bare_set_lit, - STATE(2027), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(587), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(605), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(607), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(609), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(1385), 2, - sym__ws, - sym_comment, - ACTIONS(1389), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(182), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1183), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1217), 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, - [17698] = 34, - 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(49), 1, - anon_sym_cl, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(1353), 2, - sym__ws, - sym_comment, - ACTIONS(1391), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(452), 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, - [17830] = 34, - 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(569), 1, - aux_sym_num_lit_token1, - ACTIONS(571), 1, - anon_sym_COLON, - ACTIONS(573), 1, - anon_sym_COLON_COLON, - ACTIONS(575), 1, - anon_sym_DQUOTE, - ACTIONS(581), 1, - aux_sym_sym_lit_token1, - ACTIONS(583), 1, - anon_sym_LPAREN, - ACTIONS(589), 1, - anon_sym_POUND_QMARK, - ACTIONS(591), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(593), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(595), 1, - anon_sym_SQUOTE, - ACTIONS(597), 1, - anon_sym_BQUOTE, - ACTIONS(599), 1, - anon_sym_COMMA_AT, - ACTIONS(601), 1, - anon_sym_COMMA, - ACTIONS(603), 1, - anon_sym_cl, - ACTIONS(1387), 1, - anon_sym_POUND, - STATE(1163), 1, - sym_sym_lit, - STATE(1186), 1, - sym__bare_set_lit, - STATE(2027), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(587), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(605), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(607), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(609), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(1393), 2, - sym__ws, - sym_comment, - ACTIONS(1395), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(183), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1183), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1218), 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, - [17962] = 34, - 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(569), 1, - aux_sym_num_lit_token1, - ACTIONS(571), 1, - anon_sym_COLON, - ACTIONS(573), 1, - anon_sym_COLON_COLON, - ACTIONS(575), 1, - anon_sym_DQUOTE, - ACTIONS(581), 1, - aux_sym_sym_lit_token1, - ACTIONS(583), 1, - anon_sym_LPAREN, - ACTIONS(589), 1, - anon_sym_POUND_QMARK, - ACTIONS(591), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(593), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(595), 1, - anon_sym_SQUOTE, - ACTIONS(597), 1, - anon_sym_BQUOTE, - ACTIONS(599), 1, - anon_sym_COMMA_AT, - ACTIONS(601), 1, - anon_sym_COMMA, - ACTIONS(603), 1, - anon_sym_cl, - ACTIONS(1387), 1, - anon_sym_POUND, - STATE(1163), 1, - sym_sym_lit, - STATE(1186), 1, - sym__bare_set_lit, - STATE(2027), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(587), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(605), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(607), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(609), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(1353), 2, - sym__ws, - sym_comment, - ACTIONS(1397), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(1183), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1250), 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, - [18094] = 34, - 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(569), 1, - aux_sym_num_lit_token1, - ACTIONS(571), 1, - anon_sym_COLON, - ACTIONS(573), 1, - anon_sym_COLON_COLON, - ACTIONS(575), 1, - anon_sym_DQUOTE, - ACTIONS(581), 1, - aux_sym_sym_lit_token1, - ACTIONS(583), 1, - anon_sym_LPAREN, - ACTIONS(589), 1, - anon_sym_POUND_QMARK, - ACTIONS(591), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(593), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(595), 1, - anon_sym_SQUOTE, - ACTIONS(597), 1, - anon_sym_BQUOTE, - ACTIONS(599), 1, - anon_sym_COMMA_AT, - ACTIONS(601), 1, - anon_sym_COMMA, - ACTIONS(603), 1, - anon_sym_cl, - ACTIONS(1387), 1, - anon_sym_POUND, - STATE(1163), 1, - sym_sym_lit, - STATE(1186), 1, - sym__bare_set_lit, - STATE(2027), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(587), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(605), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(607), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(609), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(1353), 2, - sym__ws, - sym_comment, - ACTIONS(1399), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(1183), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1251), 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, - [18226] = 34, - 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(59), 1, - anon_sym_POUND, - ACTIONS(63), 1, - aux_sym_num_lit_token1, - ACTIONS(65), 1, - anon_sym_COLON, - ACTIONS(67), 1, - anon_sym_COLON_COLON, - ACTIONS(69), 1, - anon_sym_DQUOTE, - ACTIONS(71), 1, - aux_sym_sym_lit_token1, - ACTIONS(75), 1, - anon_sym_POUND_QMARK, - ACTIONS(77), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(79), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(81), 1, - anon_sym_SQUOTE, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(85), 1, - anon_sym_COMMA_AT, - ACTIONS(87), 1, - anon_sym_COMMA, - ACTIONS(541), 1, - anon_sym_LPAREN, - ACTIONS(545), 1, - anon_sym_cl, - STATE(877), 1, - sym_sym_lit, - STATE(938), 1, - sym__bare_set_lit, - STATE(2065), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(73), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(91), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(93), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(95), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(1353), 2, - sym__ws, - sym_comment, - ACTIONS(1401), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(939), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(894), 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, - [18358] = 34, - 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(59), 1, - anon_sym_POUND, - ACTIONS(63), 1, - aux_sym_num_lit_token1, - ACTIONS(65), 1, - anon_sym_COLON, - ACTIONS(67), 1, - anon_sym_COLON_COLON, - ACTIONS(69), 1, - anon_sym_DQUOTE, - ACTIONS(71), 1, - aux_sym_sym_lit_token1, - ACTIONS(75), 1, - anon_sym_POUND_QMARK, - ACTIONS(77), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(79), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(81), 1, - anon_sym_SQUOTE, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(85), 1, - anon_sym_COMMA_AT, - ACTIONS(87), 1, - anon_sym_COMMA, - ACTIONS(541), 1, - anon_sym_LPAREN, - ACTIONS(545), 1, - anon_sym_cl, - STATE(877), 1, - sym_sym_lit, - STATE(938), 1, - sym__bare_set_lit, - STATE(2065), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(73), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(91), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(93), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(95), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(1353), 2, - sym__ws, - sym_comment, - ACTIONS(1403), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(939), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(893), 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, - [18490] = 34, - 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(569), 1, - aux_sym_num_lit_token1, - ACTIONS(571), 1, - anon_sym_COLON, - ACTIONS(573), 1, - anon_sym_COLON_COLON, - ACTIONS(575), 1, - anon_sym_DQUOTE, - ACTIONS(581), 1, - aux_sym_sym_lit_token1, - ACTIONS(583), 1, - anon_sym_LPAREN, - ACTIONS(589), 1, - anon_sym_POUND_QMARK, - ACTIONS(591), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(593), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(595), 1, - anon_sym_SQUOTE, - ACTIONS(597), 1, - anon_sym_BQUOTE, - ACTIONS(599), 1, - anon_sym_COMMA_AT, - ACTIONS(601), 1, - anon_sym_COMMA, - ACTIONS(603), 1, - anon_sym_cl, - ACTIONS(1387), 1, - anon_sym_POUND, - STATE(1163), 1, - sym_sym_lit, - STATE(1186), 1, - sym__bare_set_lit, - STATE(2027), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(587), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(605), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(607), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(609), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(1353), 2, - sym__ws, - sym_comment, - ACTIONS(1405), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(1183), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1254), 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, - [18622] = 34, - 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(569), 1, - aux_sym_num_lit_token1, - ACTIONS(571), 1, - anon_sym_COLON, - ACTIONS(573), 1, - anon_sym_COLON_COLON, - ACTIONS(575), 1, - anon_sym_DQUOTE, - ACTIONS(581), 1, - aux_sym_sym_lit_token1, - ACTIONS(583), 1, - anon_sym_LPAREN, - ACTIONS(589), 1, - anon_sym_POUND_QMARK, - ACTIONS(591), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(593), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(595), 1, - anon_sym_SQUOTE, - ACTIONS(597), 1, - anon_sym_BQUOTE, - ACTIONS(599), 1, - anon_sym_COMMA_AT, - ACTIONS(601), 1, - anon_sym_COMMA, - ACTIONS(603), 1, - anon_sym_cl, - ACTIONS(1387), 1, - anon_sym_POUND, - STATE(1163), 1, - sym_sym_lit, - STATE(1186), 1, - sym__bare_set_lit, - STATE(2027), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(587), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(605), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(607), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(609), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(1353), 2, - sym__ws, - sym_comment, - ACTIONS(1407), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(1183), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1255), 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, - [18754] = 34, - 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(569), 1, - aux_sym_num_lit_token1, - ACTIONS(571), 1, - anon_sym_COLON, - ACTIONS(573), 1, - anon_sym_COLON_COLON, - ACTIONS(575), 1, - anon_sym_DQUOTE, - ACTIONS(581), 1, - aux_sym_sym_lit_token1, - ACTIONS(583), 1, - anon_sym_LPAREN, - ACTIONS(589), 1, - anon_sym_POUND_QMARK, - ACTIONS(591), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(593), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(595), 1, - anon_sym_SQUOTE, - ACTIONS(597), 1, - anon_sym_BQUOTE, - ACTIONS(599), 1, - anon_sym_COMMA_AT, - ACTIONS(601), 1, - anon_sym_COMMA, - ACTIONS(603), 1, - anon_sym_cl, - ACTIONS(1387), 1, - anon_sym_POUND, - STATE(1163), 1, - sym_sym_lit, - STATE(1186), 1, - sym__bare_set_lit, - STATE(2027), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(587), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(605), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(607), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(609), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(1353), 2, - sym__ws, - sym_comment, - ACTIONS(1409), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(1183), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1256), 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, - [18886] = 34, - 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(49), 1, - anon_sym_cl, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(1353), 2, - sym__ws, - sym_comment, - ACTIONS(1411), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1582), 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, - [19018] = 34, - 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(49), 1, - anon_sym_cl, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(1413), 2, - sym__ws, - sym_comment, - ACTIONS(1415), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(251), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1646), 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, - [19150] = 34, - 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(49), 1, - anon_sym_cl, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(1353), 2, - sym__ws, - sym_comment, - ACTIONS(1417), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(445), 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, - [19282] = 34, - 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(49), 1, - anon_sym_cl, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(1419), 2, - sym__ws, - sym_comment, - ACTIONS(1421), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(175), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(408), 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, - [19414] = 34, - 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(49), 1, - anon_sym_cl, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(1423), 2, - sym__ws, - sym_comment, - ACTIONS(1425), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(186), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(401), 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, - [19546] = 34, - 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(569), 1, - aux_sym_num_lit_token1, - ACTIONS(571), 1, - anon_sym_COLON, - ACTIONS(573), 1, - anon_sym_COLON_COLON, - ACTIONS(575), 1, - anon_sym_DQUOTE, - ACTIONS(581), 1, - aux_sym_sym_lit_token1, - ACTIONS(583), 1, - anon_sym_LPAREN, - ACTIONS(589), 1, - anon_sym_POUND_QMARK, - ACTIONS(591), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(593), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(595), 1, - anon_sym_SQUOTE, - ACTIONS(597), 1, - anon_sym_BQUOTE, - ACTIONS(599), 1, - anon_sym_COMMA_AT, - ACTIONS(601), 1, - anon_sym_COMMA, - ACTIONS(603), 1, - anon_sym_cl, - ACTIONS(1387), 1, - anon_sym_POUND, - STATE(1163), 1, - sym_sym_lit, - STATE(1186), 1, - sym__bare_set_lit, - STATE(2027), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(587), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(605), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(607), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(609), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(1427), 2, - sym__ws, - sym_comment, - ACTIONS(1429), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(217), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1183), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1258), 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, - [19678] = 34, - 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(49), 1, - anon_sym_cl, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(1353), 2, - sym__ws, - sym_comment, - ACTIONS(1431), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(358), 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, - [19810] = 34, - 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(59), 1, - anon_sym_POUND, - ACTIONS(63), 1, - aux_sym_num_lit_token1, - ACTIONS(65), 1, - anon_sym_COLON, - ACTIONS(67), 1, - anon_sym_COLON_COLON, - ACTIONS(69), 1, - anon_sym_DQUOTE, - ACTIONS(71), 1, - aux_sym_sym_lit_token1, - ACTIONS(75), 1, - anon_sym_POUND_QMARK, - ACTIONS(77), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(79), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(81), 1, - anon_sym_SQUOTE, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(85), 1, - anon_sym_COMMA_AT, - ACTIONS(87), 1, - anon_sym_COMMA, - ACTIONS(541), 1, - anon_sym_LPAREN, - ACTIONS(545), 1, - anon_sym_cl, - STATE(877), 1, - sym_sym_lit, - STATE(938), 1, - sym__bare_set_lit, - STATE(2065), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(73), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(91), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(93), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(95), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(1433), 2, - sym__ws, - sym_comment, - ACTIONS(1435), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(179), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(939), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(887), 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, - [19942] = 34, - 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(59), 1, - anon_sym_POUND, - ACTIONS(63), 1, - aux_sym_num_lit_token1, - ACTIONS(65), 1, - anon_sym_COLON, - ACTIONS(67), 1, - anon_sym_COLON_COLON, - ACTIONS(69), 1, - anon_sym_DQUOTE, - ACTIONS(71), 1, - aux_sym_sym_lit_token1, - ACTIONS(75), 1, - anon_sym_POUND_QMARK, - ACTIONS(77), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(79), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(81), 1, - anon_sym_SQUOTE, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(85), 1, - anon_sym_COMMA_AT, - ACTIONS(87), 1, - anon_sym_COMMA, - ACTIONS(541), 1, - anon_sym_LPAREN, - ACTIONS(545), 1, - anon_sym_cl, - STATE(877), 1, - sym_sym_lit, - STATE(938), 1, - sym__bare_set_lit, - STATE(2065), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(73), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(91), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(93), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(95), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(1353), 2, - sym__ws, - sym_comment, - ACTIONS(1437), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(939), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(886), 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, - [20074] = 34, - 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(59), 1, - anon_sym_POUND, - ACTIONS(63), 1, - aux_sym_num_lit_token1, - ACTIONS(65), 1, - anon_sym_COLON, - ACTIONS(67), 1, - anon_sym_COLON_COLON, - ACTIONS(69), 1, - anon_sym_DQUOTE, - ACTIONS(71), 1, - aux_sym_sym_lit_token1, - ACTIONS(75), 1, - anon_sym_POUND_QMARK, - ACTIONS(77), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(79), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(81), 1, - anon_sym_SQUOTE, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(85), 1, - anon_sym_COMMA_AT, - ACTIONS(87), 1, - anon_sym_COMMA, - ACTIONS(541), 1, - anon_sym_LPAREN, - ACTIONS(545), 1, - anon_sym_cl, - STATE(877), 1, - sym_sym_lit, - STATE(938), 1, - sym__bare_set_lit, - STATE(2065), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(73), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(91), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(93), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(95), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(1439), 2, - sym__ws, - sym_comment, - ACTIONS(1441), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(180), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(939), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(885), 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, - [20206] = 34, - 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(49), 1, - anon_sym_cl, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(1353), 2, - sym__ws, - sym_comment, - ACTIONS(1443), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1603), 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, - [20338] = 34, - 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(59), 1, - anon_sym_POUND, - ACTIONS(63), 1, - aux_sym_num_lit_token1, - ACTIONS(65), 1, - anon_sym_COLON, - ACTIONS(67), 1, - anon_sym_COLON_COLON, - ACTIONS(69), 1, - anon_sym_DQUOTE, - ACTIONS(71), 1, - aux_sym_sym_lit_token1, - ACTIONS(75), 1, - anon_sym_POUND_QMARK, - ACTIONS(77), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(79), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(81), 1, - anon_sym_SQUOTE, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(85), 1, - anon_sym_COMMA_AT, - ACTIONS(87), 1, - anon_sym_COMMA, - ACTIONS(541), 1, - anon_sym_LPAREN, - ACTIONS(545), 1, - anon_sym_cl, - STATE(877), 1, - sym_sym_lit, - STATE(938), 1, - sym__bare_set_lit, - STATE(2065), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(73), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(91), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(93), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(95), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(1353), 2, - sym__ws, - sym_comment, - ACTIONS(1445), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(939), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(884), 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, - [20470] = 34, - 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(49), 1, - anon_sym_cl, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(1353), 2, - sym__ws, - sym_comment, - ACTIONS(1447), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1602), 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, - [20602] = 34, - 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(59), 1, - anon_sym_POUND, - ACTIONS(63), 1, - aux_sym_num_lit_token1, - ACTIONS(65), 1, - anon_sym_COLON, - ACTIONS(67), 1, - anon_sym_COLON_COLON, - ACTIONS(69), 1, - anon_sym_DQUOTE, - ACTIONS(71), 1, - aux_sym_sym_lit_token1, - ACTIONS(75), 1, - anon_sym_POUND_QMARK, - ACTIONS(77), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(79), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(81), 1, - anon_sym_SQUOTE, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(85), 1, - anon_sym_COMMA_AT, - ACTIONS(87), 1, - anon_sym_COMMA, - ACTIONS(541), 1, - anon_sym_LPAREN, - ACTIONS(545), 1, - anon_sym_cl, - STATE(877), 1, - sym_sym_lit, - STATE(938), 1, - sym__bare_set_lit, - STATE(2065), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(73), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(91), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(93), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(95), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(1353), 2, - sym__ws, - sym_comment, - ACTIONS(1449), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(939), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(882), 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, - [20734] = 34, - 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(49), 1, - anon_sym_cl, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(1353), 2, - sym__ws, - sym_comment, - ACTIONS(1451), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1599), 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, - [20866] = 34, - 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(49), 1, - anon_sym_cl, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(1453), 2, - sym__ws, - sym_comment, - ACTIONS(1455), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(261), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1591), 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, - [20998] = 34, - 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(49), 1, - anon_sym_cl, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(1353), 2, - sym__ws, - sym_comment, - ACTIONS(1457), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(262), 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, - [21130] = 34, - 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(49), 1, - anon_sym_cl, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(1459), 2, - sym__ws, - sym_comment, - ACTIONS(1461), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(264), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1592), 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, - [21262] = 34, - 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(49), 1, - anon_sym_cl, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(1353), 2, - sym__ws, - sym_comment, - ACTIONS(1463), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(265), 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, - [21394] = 34, - 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(569), 1, - aux_sym_num_lit_token1, - ACTIONS(571), 1, - anon_sym_COLON, - ACTIONS(573), 1, - anon_sym_COLON_COLON, - ACTIONS(575), 1, - anon_sym_DQUOTE, - ACTIONS(581), 1, - aux_sym_sym_lit_token1, - ACTIONS(583), 1, - anon_sym_LPAREN, - ACTIONS(589), 1, - anon_sym_POUND_QMARK, - ACTIONS(591), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(593), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(595), 1, - anon_sym_SQUOTE, - ACTIONS(597), 1, - anon_sym_BQUOTE, - ACTIONS(599), 1, - anon_sym_COMMA_AT, - ACTIONS(601), 1, - anon_sym_COMMA, - ACTIONS(603), 1, - anon_sym_cl, - ACTIONS(1387), 1, - anon_sym_POUND, - STATE(1163), 1, - sym_sym_lit, - STATE(1186), 1, - sym__bare_set_lit, - STATE(2027), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(587), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(605), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(607), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(609), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(1465), 2, - sym__ws, - sym_comment, - ACTIONS(1467), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(219), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1183), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1266), 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, - [21526] = 34, - 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(49), 1, - anon_sym_cl, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(1469), 2, - sym__ws, - sym_comment, - ACTIONS(1471), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(190), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(303), 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, - [21658] = 34, - 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(727), 1, - aux_sym_num_lit_token1, - ACTIONS(729), 1, - anon_sym_COLON, - ACTIONS(731), 1, - anon_sym_COLON_COLON, - ACTIONS(733), 1, - anon_sym_DQUOTE, - ACTIONS(739), 1, - aux_sym_sym_lit_token1, - ACTIONS(741), 1, - anon_sym_LPAREN, - ACTIONS(747), 1, - anon_sym_POUND_QMARK, - ACTIONS(749), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(751), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(753), 1, - anon_sym_SQUOTE, - ACTIONS(755), 1, - anon_sym_BQUOTE, - ACTIONS(757), 1, - anon_sym_COMMA_AT, - ACTIONS(759), 1, - anon_sym_COMMA, - ACTIONS(761), 1, - anon_sym_cl, - ACTIONS(1475), 1, - anon_sym_POUND, - STATE(1811), 1, - sym__bare_set_lit, - STATE(1813), 1, - sym_sym_lit, - STATE(2036), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(745), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(763), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(765), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(767), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(1473), 2, - sym__ws, - sym_comment, - ACTIONS(1477), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(270), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1812), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1810), 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, - [21790] = 34, - 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(569), 1, - aux_sym_num_lit_token1, - ACTIONS(571), 1, - anon_sym_COLON, - ACTIONS(573), 1, - anon_sym_COLON_COLON, - ACTIONS(575), 1, - anon_sym_DQUOTE, - ACTIONS(581), 1, - aux_sym_sym_lit_token1, - ACTIONS(583), 1, - anon_sym_LPAREN, - ACTIONS(589), 1, - anon_sym_POUND_QMARK, - ACTIONS(591), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(593), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(595), 1, - anon_sym_SQUOTE, - ACTIONS(597), 1, - anon_sym_BQUOTE, - ACTIONS(599), 1, - anon_sym_COMMA_AT, - ACTIONS(601), 1, - anon_sym_COMMA, - ACTIONS(603), 1, - anon_sym_cl, - ACTIONS(1387), 1, - anon_sym_POUND, - STATE(1163), 1, - sym_sym_lit, - STATE(1186), 1, - sym__bare_set_lit, - STATE(2027), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(587), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(605), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(607), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(609), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(1479), 2, - sym__ws, - sym_comment, - ACTIONS(1481), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(238), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1183), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1268), 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, - [21922] = 34, - 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(569), 1, - aux_sym_num_lit_token1, - ACTIONS(571), 1, - anon_sym_COLON, - ACTIONS(573), 1, - anon_sym_COLON_COLON, - ACTIONS(575), 1, - anon_sym_DQUOTE, - ACTIONS(581), 1, - aux_sym_sym_lit_token1, - ACTIONS(583), 1, - anon_sym_LPAREN, - ACTIONS(589), 1, - anon_sym_POUND_QMARK, - ACTIONS(591), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(593), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(595), 1, - anon_sym_SQUOTE, - ACTIONS(597), 1, - anon_sym_BQUOTE, - ACTIONS(599), 1, - anon_sym_COMMA_AT, - ACTIONS(601), 1, - anon_sym_COMMA, - ACTIONS(603), 1, - anon_sym_cl, - ACTIONS(1387), 1, - anon_sym_POUND, - STATE(1163), 1, - sym_sym_lit, - STATE(1186), 1, - sym__bare_set_lit, - STATE(2027), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(587), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(605), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(607), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(609), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(1483), 2, - sym__ws, - sym_comment, - ACTIONS(1485), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(245), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1183), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1167), 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, - [22054] = 34, - 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(59), 1, - anon_sym_POUND, - ACTIONS(63), 1, - aux_sym_num_lit_token1, - ACTIONS(65), 1, - anon_sym_COLON, - ACTIONS(67), 1, - anon_sym_COLON_COLON, - ACTIONS(69), 1, - anon_sym_DQUOTE, - ACTIONS(71), 1, - aux_sym_sym_lit_token1, - ACTIONS(75), 1, - anon_sym_POUND_QMARK, - ACTIONS(77), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(79), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(81), 1, - anon_sym_SQUOTE, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(85), 1, - anon_sym_COMMA_AT, - ACTIONS(87), 1, - anon_sym_COMMA, - ACTIONS(541), 1, - anon_sym_LPAREN, - ACTIONS(545), 1, - anon_sym_cl, - STATE(877), 1, - sym_sym_lit, - STATE(938), 1, - sym__bare_set_lit, - STATE(2065), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(73), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(91), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(93), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(95), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(1487), 2, - sym__ws, - sym_comment, - ACTIONS(1489), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(192), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(939), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(819), 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, - [22186] = 34, - 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(59), 1, - anon_sym_POUND, - ACTIONS(63), 1, - aux_sym_num_lit_token1, - ACTIONS(65), 1, - anon_sym_COLON, - ACTIONS(67), 1, - anon_sym_COLON_COLON, - ACTIONS(69), 1, - anon_sym_DQUOTE, - ACTIONS(71), 1, - aux_sym_sym_lit_token1, - ACTIONS(75), 1, - anon_sym_POUND_QMARK, - ACTIONS(77), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(79), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(81), 1, - anon_sym_SQUOTE, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(85), 1, - anon_sym_COMMA_AT, - ACTIONS(87), 1, - anon_sym_COMMA, - ACTIONS(541), 1, - anon_sym_LPAREN, - ACTIONS(545), 1, - anon_sym_cl, - STATE(877), 1, - sym_sym_lit, - STATE(938), 1, - sym__bare_set_lit, - STATE(2065), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(73), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(91), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(93), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(95), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(1491), 2, - sym__ws, - sym_comment, - ACTIONS(1493), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(195), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(939), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(876), 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, - [22318] = 34, - 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(59), 1, - anon_sym_POUND, - ACTIONS(63), 1, - aux_sym_num_lit_token1, - ACTIONS(65), 1, - anon_sym_COLON, - ACTIONS(67), 1, - anon_sym_COLON_COLON, - ACTIONS(69), 1, - anon_sym_DQUOTE, - ACTIONS(71), 1, - aux_sym_sym_lit_token1, - ACTIONS(75), 1, - anon_sym_POUND_QMARK, - ACTIONS(77), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(79), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(81), 1, - anon_sym_SQUOTE, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(85), 1, - anon_sym_COMMA_AT, - ACTIONS(87), 1, - anon_sym_COMMA, - ACTIONS(541), 1, - anon_sym_LPAREN, - ACTIONS(545), 1, - anon_sym_cl, - STATE(877), 1, - sym_sym_lit, - STATE(938), 1, - sym__bare_set_lit, - STATE(2065), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(73), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(91), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(93), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(95), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(1353), 2, - sym__ws, - sym_comment, - ACTIONS(1495), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(939), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(875), 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, - [22450] = 34, - 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(59), 1, - anon_sym_POUND, - ACTIONS(63), 1, - aux_sym_num_lit_token1, - ACTIONS(65), 1, - anon_sym_COLON, - ACTIONS(67), 1, - anon_sym_COLON_COLON, - ACTIONS(69), 1, - anon_sym_DQUOTE, - ACTIONS(71), 1, - aux_sym_sym_lit_token1, - ACTIONS(75), 1, - anon_sym_POUND_QMARK, - ACTIONS(77), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(79), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(81), 1, - anon_sym_SQUOTE, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(85), 1, - anon_sym_COMMA_AT, - ACTIONS(87), 1, - anon_sym_COMMA, - ACTIONS(541), 1, - anon_sym_LPAREN, - ACTIONS(545), 1, - anon_sym_cl, - STATE(877), 1, - sym_sym_lit, - STATE(938), 1, - sym__bare_set_lit, - STATE(2065), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(73), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(91), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(93), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(95), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(1353), 2, - sym__ws, - sym_comment, - ACTIONS(1497), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(939), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(874), 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, - [22582] = 34, - 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(59), 1, - anon_sym_POUND, - ACTIONS(63), 1, - aux_sym_num_lit_token1, - ACTIONS(65), 1, - anon_sym_COLON, - ACTIONS(67), 1, - anon_sym_COLON_COLON, - ACTIONS(69), 1, - anon_sym_DQUOTE, - ACTIONS(71), 1, - aux_sym_sym_lit_token1, - ACTIONS(75), 1, - anon_sym_POUND_QMARK, - ACTIONS(77), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(79), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(81), 1, - anon_sym_SQUOTE, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(85), 1, - anon_sym_COMMA_AT, - ACTIONS(87), 1, - anon_sym_COMMA, - ACTIONS(541), 1, - anon_sym_LPAREN, - ACTIONS(545), 1, - anon_sym_cl, - STATE(877), 1, - sym_sym_lit, - STATE(938), 1, - sym__bare_set_lit, - STATE(2065), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(73), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(91), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(93), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(95), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(1353), 2, - sym__ws, - sym_comment, - ACTIONS(1499), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(939), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(873), 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, - [22714] = 34, - 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(59), 1, - anon_sym_POUND, - ACTIONS(63), 1, - aux_sym_num_lit_token1, - ACTIONS(65), 1, - anon_sym_COLON, - ACTIONS(67), 1, - anon_sym_COLON_COLON, - ACTIONS(69), 1, - anon_sym_DQUOTE, - ACTIONS(71), 1, - aux_sym_sym_lit_token1, - ACTIONS(75), 1, - anon_sym_POUND_QMARK, - ACTIONS(77), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(79), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(81), 1, - anon_sym_SQUOTE, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(85), 1, - anon_sym_COMMA_AT, - ACTIONS(87), 1, - anon_sym_COMMA, - ACTIONS(541), 1, - anon_sym_LPAREN, - ACTIONS(545), 1, - anon_sym_cl, - STATE(877), 1, - sym_sym_lit, - STATE(938), 1, - sym__bare_set_lit, - STATE(2065), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(73), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(91), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(93), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(95), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(1501), 2, - sym__ws, - sym_comment, - ACTIONS(1503), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(197), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(939), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(870), 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, - [22846] = 34, - 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(49), 1, - anon_sym_cl, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(1353), 2, - sym__ws, - sym_comment, - ACTIONS(1505), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(191), 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, - [22978] = 34, - 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(59), 1, - anon_sym_POUND, - ACTIONS(63), 1, - aux_sym_num_lit_token1, - ACTIONS(65), 1, - anon_sym_COLON, - ACTIONS(67), 1, - anon_sym_COLON_COLON, - ACTIONS(69), 1, - anon_sym_DQUOTE, - ACTIONS(71), 1, - aux_sym_sym_lit_token1, - ACTIONS(75), 1, - anon_sym_POUND_QMARK, - ACTIONS(77), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(79), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(81), 1, - anon_sym_SQUOTE, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(85), 1, - anon_sym_COMMA_AT, - ACTIONS(87), 1, - anon_sym_COMMA, - ACTIONS(541), 1, - anon_sym_LPAREN, - ACTIONS(545), 1, - anon_sym_cl, - STATE(877), 1, - sym_sym_lit, - STATE(938), 1, - sym__bare_set_lit, - STATE(2065), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(73), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(91), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(93), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(95), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(1353), 2, - sym__ws, - sym_comment, - ACTIONS(1507), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(939), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(869), 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, - [23110] = 34, + [57] = { + [sym__gap] = STATE(127), + [sym_dis_expr] = STATE(127), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(127), + [sym__ws] = ACTIONS(1019), + [sym_comment] = ACTIONS(1019), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(380), + [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(380), + [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(1021), + [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(380), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [58] = { + [sym__gap] = STATE(61), + [sym_dis_expr] = STATE(61), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(61), + [sym__ws] = ACTIONS(1023), + [sym_comment] = ACTIONS(1023), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(380), + [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(380), + [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(1025), + [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(380), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [59] = { + [sym__gap] = STATE(64), + [sym_dis_expr] = STATE(64), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(65), + [sym__ws] = ACTIONS(1027), + [sym_comment] = ACTIONS(1027), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(380), + [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(380), + [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(1029), + [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(380), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [60] = { + [sym__gap] = STATE(33), + [sym_dis_expr] = STATE(33), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(33), + [sym__ws] = ACTIONS(993), + [sym_comment] = ACTIONS(993), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(380), + [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(380), + [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(1031), + [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(380), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [61] = { + [sym__gap] = STATE(33), + [sym_dis_expr] = STATE(33), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(33), + [sym__ws] = ACTIONS(993), + [sym_comment] = ACTIONS(993), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(380), + [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(380), + [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(1033), + [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(380), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [62] = { + [sym__gap] = STATE(1443), + [sym_dis_expr] = STATE(1443), + [sym__form] = STATE(2493), + [sym_num_lit] = STATE(2493), + [sym_kwd_lit] = STATE(2493), + [sym_str_lit] = STATE(2493), + [sym_char_lit] = STATE(2493), + [sym_sym_lit] = STATE(1828), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(2493), + [sym__bare_list_lit] = STATE(1901), + [sym_vec_lit] = STATE(2493), + [sym_set_lit] = STATE(2493), + [sym__bare_set_lit] = STATE(1902), + [sym_read_cond_lit] = STATE(2493), + [sym_splicing_read_cond_lit] = STATE(2493), + [sym_var_quoting_lit] = STATE(2493), + [sym_quoting_lit] = STATE(2493), + [sym_syn_quoting_lit] = STATE(2493), + [sym_unquote_splicing_lit] = STATE(2493), + [sym_unquoting_lit] = STATE(2493), + [sym_defun] = STATE(1901), + [sym_loop_macro] = STATE(1901), + [sym_path_lit] = STATE(2493), + [sym_package_lit] = STATE(2493), + [sym_include_reader_macro] = STATE(2493), + [sym_complex_num_lit] = STATE(2493), + [aux_sym_dis_expr_repeat1] = STATE(1443), + [aux_sym_list_lit_repeat1] = STATE(2150), + [sym__ws] = ACTIONS(1035), + [sym_comment] = ACTIONS(1035), + [anon_sym_POUND_] = ACTIONS(977), + [anon_sym_POUND] = ACTIONS(979), + [anon_sym_DOT] = ACTIONS(1037), + [aux_sym_num_lit_token1] = ACTIONS(522), + [anon_sym_COLON] = ACTIONS(524), + [anon_sym_COLON_COLON] = ACTIONS(526), + [anon_sym_DQUOTE] = ACTIONS(528), + [sym_nil_lit] = ACTIONS(1037), + [aux_sym_sym_lit_token1] = ACTIONS(534), + [anon_sym_CARET] = ACTIONS(25), + [anon_sym_POUND_CARET] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(536), + [anon_sym_POUND0A] = ACTIONS(540), + [anon_sym_POUND0a] = ACTIONS(540), + [anon_sym_POUND_QMARK] = ACTIONS(542), + [anon_sym_POUND_QMARK_AT] = ACTIONS(544), + [anon_sym_POUND_SQUOTE] = ACTIONS(546), + [anon_sym_SQUOTE] = ACTIONS(548), + [anon_sym_BQUOTE] = ACTIONS(550), + [anon_sym_COMMA_AT] = ACTIONS(552), + [anon_sym_COMMA] = ACTIONS(554), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(1037), + [anon_sym_cl] = ACTIONS(1039), + [anon_sym_EQ] = ACTIONS(1041), + [anon_sym_POUNDP] = ACTIONS(558), + [anon_sym_POUNDp] = ACTIONS(558), + [sym_self_referential_reader_macro] = ACTIONS(1043), + [anon_sym_POUND_PLUS] = ACTIONS(562), + [anon_sym_POUND_DASH] = ACTIONS(562), + [anon_sym_POUNDC] = ACTIONS(564), + [anon_sym_POUNDc] = ACTIONS(564), + }, + [63] = { + [sym__gap] = STATE(66), + [sym_dis_expr] = STATE(66), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(67), + [sym__ws] = ACTIONS(1045), + [sym_comment] = ACTIONS(1045), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(380), + [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(380), + [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(1047), + [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(380), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [64] = { + [sym__gap] = STATE(68), + [sym_dis_expr] = STATE(68), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(68), + [sym__ws] = ACTIONS(1049), + [sym_comment] = ACTIONS(1049), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(380), + [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(380), + [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(1047), + [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(380), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [65] = { + [sym__gap] = STATE(33), + [sym_dis_expr] = STATE(33), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(33), + [sym__ws] = ACTIONS(993), + [sym_comment] = ACTIONS(993), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(380), + [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(380), + [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(1051), + [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(380), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [66] = { + [sym__gap] = STATE(69), + [sym_dis_expr] = STATE(69), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(69), + [sym__ws] = ACTIONS(1053), + [sym_comment] = ACTIONS(1053), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(380), + [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(380), + [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(1055), + [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(380), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [67] = { + [sym__gap] = STATE(33), + [sym_dis_expr] = STATE(33), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(33), + [sym__ws] = ACTIONS(993), + [sym_comment] = ACTIONS(993), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(380), + [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(380), + [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(1057), + [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(380), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [68] = { + [sym__gap] = STATE(33), + [sym_dis_expr] = STATE(33), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(33), + [sym__ws] = ACTIONS(993), + [sym_comment] = ACTIONS(993), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(380), + [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(380), + [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(1059), + [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(380), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [69] = { + [sym__gap] = STATE(33), + [sym_dis_expr] = STATE(33), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(33), + [sym__ws] = ACTIONS(993), + [sym_comment] = ACTIONS(993), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(380), + [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(380), + [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(1061), + [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(380), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [70] = { + [sym__gap] = STATE(155), + [sym_dis_expr] = STATE(155), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(156), + [sym__ws] = ACTIONS(1063), + [sym_comment] = ACTIONS(1063), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(380), + [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(380), + [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(1065), + [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(380), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [71] = { + [sym__gap] = STATE(33), + [sym_dis_expr] = STATE(33), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(33), + [sym__ws] = ACTIONS(993), + [sym_comment] = ACTIONS(993), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(380), + [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(380), + [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(1067), + [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(380), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [72] = { + [sym__gap] = STATE(75), + [sym_dis_expr] = STATE(75), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(75), + [sym__ws] = ACTIONS(1069), + [sym_comment] = ACTIONS(1069), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(380), + [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(380), + [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(1071), + [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(380), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [73] = { + [sym__gap] = STATE(77), + [sym_dis_expr] = STATE(77), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(78), + [sym__ws] = ACTIONS(1073), + [sym_comment] = ACTIONS(1073), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(380), + [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(380), + [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(1075), + [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(380), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [74] = { + [sym__gap] = STATE(33), + [sym_dis_expr] = STATE(33), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(33), + [sym__ws] = ACTIONS(993), + [sym_comment] = ACTIONS(993), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(380), + [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(380), + [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(1077), + [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(380), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [75] = { + [sym__gap] = STATE(33), + [sym_dis_expr] = STATE(33), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(33), + [sym__ws] = ACTIONS(993), + [sym_comment] = ACTIONS(993), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(380), + [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(380), + [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(1079), + [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(380), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [76] = { + [sym__gap] = STATE(79), + [sym_dis_expr] = STATE(79), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(80), + [sym__ws] = ACTIONS(1081), + [sym_comment] = ACTIONS(1081), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(380), + [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(380), + [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(1083), + [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(380), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [77] = { + [sym__gap] = STATE(83), + [sym_dis_expr] = STATE(83), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(83), + [sym__ws] = ACTIONS(1085), + [sym_comment] = ACTIONS(1085), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(380), + [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(380), + [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(1083), + [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(380), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [78] = { + [sym__gap] = STATE(33), + [sym_dis_expr] = STATE(33), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(33), + [sym__ws] = ACTIONS(993), + [sym_comment] = ACTIONS(993), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(380), + [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(380), + [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(1087), + [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(380), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [79] = { + [sym__gap] = STATE(84), + [sym_dis_expr] = STATE(84), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(84), + [sym__ws] = ACTIONS(1089), + [sym_comment] = ACTIONS(1089), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(380), + [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(380), + [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(1091), + [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(380), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [80] = { + [sym__gap] = STATE(33), + [sym_dis_expr] = STATE(33), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(33), + [sym__ws] = ACTIONS(993), + [sym_comment] = ACTIONS(993), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(380), + [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(380), + [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(1093), + [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(380), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [81] = { + [sym__gap] = STATE(62), + [sym_dis_expr] = STATE(62), + [sym__form] = STATE(2587), + [sym_num_lit] = STATE(2587), + [sym_kwd_lit] = STATE(2587), + [sym_str_lit] = STATE(2587), + [sym_char_lit] = STATE(2587), + [sym_sym_lit] = STATE(1828), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(2587), + [sym__bare_list_lit] = STATE(1901), + [sym_vec_lit] = STATE(2587), + [sym_set_lit] = STATE(2587), + [sym__bare_set_lit] = STATE(1902), + [sym_read_cond_lit] = STATE(2587), + [sym_splicing_read_cond_lit] = STATE(2587), + [sym_var_quoting_lit] = STATE(2587), + [sym_quoting_lit] = STATE(2587), + [sym_syn_quoting_lit] = STATE(2587), + [sym_unquote_splicing_lit] = STATE(2587), + [sym_unquoting_lit] = STATE(2587), + [sym_defun] = STATE(1901), + [sym_loop_macro] = STATE(1901), + [sym_path_lit] = STATE(2587), + [sym_package_lit] = STATE(2587), + [sym_include_reader_macro] = STATE(2587), + [sym_complex_num_lit] = STATE(2587), + [aux_sym_dis_expr_repeat1] = STATE(62), + [aux_sym_list_lit_repeat1] = STATE(2150), + [sym__ws] = ACTIONS(1095), + [sym_comment] = ACTIONS(1095), + [anon_sym_POUND_] = ACTIONS(977), + [anon_sym_POUND] = ACTIONS(979), + [anon_sym_DOT] = ACTIONS(1097), + [aux_sym_num_lit_token1] = ACTIONS(522), + [anon_sym_COLON] = ACTIONS(524), + [anon_sym_COLON_COLON] = ACTIONS(526), + [anon_sym_DQUOTE] = ACTIONS(528), + [sym_nil_lit] = ACTIONS(1097), + [aux_sym_sym_lit_token1] = ACTIONS(534), + [anon_sym_CARET] = ACTIONS(25), + [anon_sym_POUND_CARET] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(536), + [anon_sym_POUND0A] = ACTIONS(540), + [anon_sym_POUND0a] = ACTIONS(540), + [anon_sym_POUND_QMARK] = ACTIONS(542), + [anon_sym_POUND_QMARK_AT] = ACTIONS(544), + [anon_sym_POUND_SQUOTE] = ACTIONS(546), + [anon_sym_SQUOTE] = ACTIONS(548), + [anon_sym_BQUOTE] = ACTIONS(550), + [anon_sym_COMMA_AT] = ACTIONS(552), + [anon_sym_COMMA] = ACTIONS(554), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(1097), + [anon_sym_cl] = ACTIONS(1099), + [anon_sym_EQ] = ACTIONS(1101), + [anon_sym_POUNDP] = ACTIONS(558), + [anon_sym_POUNDp] = ACTIONS(558), + [sym_self_referential_reader_macro] = ACTIONS(1103), + [anon_sym_POUND_PLUS] = ACTIONS(562), + [anon_sym_POUND_DASH] = ACTIONS(562), + [anon_sym_POUNDC] = ACTIONS(564), + [anon_sym_POUNDc] = ACTIONS(564), + }, + [82] = { + [sym__gap] = STATE(1443), + [sym_dis_expr] = STATE(1443), + [sym__form] = STATE(2589), + [sym_num_lit] = STATE(2589), + [sym_kwd_lit] = STATE(2589), + [sym_str_lit] = STATE(2589), + [sym_char_lit] = STATE(2589), + [sym_sym_lit] = STATE(1828), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(2589), + [sym__bare_list_lit] = STATE(1901), + [sym_vec_lit] = STATE(2589), + [sym_set_lit] = STATE(2589), + [sym__bare_set_lit] = STATE(1902), + [sym_read_cond_lit] = STATE(2589), + [sym_splicing_read_cond_lit] = STATE(2589), + [sym_var_quoting_lit] = STATE(2589), + [sym_quoting_lit] = STATE(2589), + [sym_syn_quoting_lit] = STATE(2589), + [sym_unquote_splicing_lit] = STATE(2589), + [sym_unquoting_lit] = STATE(2589), + [sym_defun] = STATE(1901), + [sym_loop_macro] = STATE(1901), + [sym_path_lit] = STATE(2589), + [sym_package_lit] = STATE(2589), + [sym_include_reader_macro] = STATE(2589), + [sym_complex_num_lit] = STATE(2589), + [aux_sym_dis_expr_repeat1] = STATE(1443), + [aux_sym_list_lit_repeat1] = STATE(2150), + [sym__ws] = ACTIONS(1035), + [sym_comment] = ACTIONS(1035), + [anon_sym_POUND_] = ACTIONS(977), + [anon_sym_POUND] = ACTIONS(979), + [anon_sym_DOT] = ACTIONS(1105), + [aux_sym_num_lit_token1] = ACTIONS(522), + [anon_sym_COLON] = ACTIONS(524), + [anon_sym_COLON_COLON] = ACTIONS(526), + [anon_sym_DQUOTE] = ACTIONS(528), + [sym_nil_lit] = ACTIONS(1105), + [aux_sym_sym_lit_token1] = ACTIONS(534), + [anon_sym_CARET] = ACTIONS(25), + [anon_sym_POUND_CARET] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(536), + [anon_sym_POUND0A] = ACTIONS(540), + [anon_sym_POUND0a] = ACTIONS(540), + [anon_sym_POUND_QMARK] = ACTIONS(542), + [anon_sym_POUND_QMARK_AT] = ACTIONS(544), + [anon_sym_POUND_SQUOTE] = ACTIONS(546), + [anon_sym_SQUOTE] = ACTIONS(548), + [anon_sym_BQUOTE] = ACTIONS(550), + [anon_sym_COMMA_AT] = ACTIONS(552), + [anon_sym_COMMA] = ACTIONS(554), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(1105), + [anon_sym_cl] = ACTIONS(1107), + [anon_sym_EQ] = ACTIONS(1109), + [anon_sym_POUNDP] = ACTIONS(558), + [anon_sym_POUNDp] = ACTIONS(558), + [sym_self_referential_reader_macro] = ACTIONS(1111), + [anon_sym_POUND_PLUS] = ACTIONS(562), + [anon_sym_POUND_DASH] = ACTIONS(562), + [anon_sym_POUNDC] = ACTIONS(564), + [anon_sym_POUNDc] = ACTIONS(564), + }, + [83] = { + [sym__gap] = STATE(33), + [sym_dis_expr] = STATE(33), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(33), + [sym__ws] = ACTIONS(993), + [sym_comment] = ACTIONS(993), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(380), + [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(380), + [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(1113), + [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(380), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [84] = { + [sym__gap] = STATE(33), + [sym_dis_expr] = STATE(33), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(33), + [sym__ws] = ACTIONS(993), + [sym_comment] = ACTIONS(993), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(380), + [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(380), + [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(1115), + [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(380), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [85] = { + [sym__gap] = STATE(160), + [sym_dis_expr] = STATE(160), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(160), + [sym__ws] = ACTIONS(1117), + [sym_comment] = ACTIONS(1117), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(380), + [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(380), + [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(1119), + [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(380), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [86] = { + [sym__gap] = STATE(91), + [sym_dis_expr] = STATE(91), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(91), + [sym__ws] = ACTIONS(1121), + [sym_comment] = ACTIONS(1121), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(380), + [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(380), + [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(1123), + [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(380), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [87] = { + [sym__gap] = STATE(93), + [sym_dis_expr] = STATE(93), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(94), + [sym__ws] = ACTIONS(1125), + [sym_comment] = ACTIONS(1125), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(380), + [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(380), + [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(1127), + [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(380), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [88] = { + [sym__gap] = STATE(33), + [sym_dis_expr] = STATE(33), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(33), + [sym__ws] = ACTIONS(993), + [sym_comment] = ACTIONS(993), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(380), + [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(380), + [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(1129), + [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(380), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [89] = { + [sym__gap] = STATE(89), + [sym_dis_expr] = STATE(89), + [sym__form] = STATE(1677), + [sym_num_lit] = STATE(1677), + [sym_kwd_lit] = STATE(1677), + [sym_str_lit] = STATE(1677), + [sym_char_lit] = STATE(1677), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1677), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1677), + [sym_set_lit] = STATE(1677), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1677), + [sym_splicing_read_cond_lit] = STATE(1677), + [sym_var_quoting_lit] = STATE(1677), + [sym_quoting_lit] = STATE(1677), + [sym_syn_quoting_lit] = STATE(1677), + [sym_unquote_splicing_lit] = STATE(1677), + [sym_unquoting_lit] = STATE(1677), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1677), + [sym_package_lit] = STATE(1677), + [sym_include_reader_macro] = STATE(1677), + [sym_complex_num_lit] = STATE(1677), + [aux_sym_source_repeat1] = STATE(89), + [aux_sym_list_lit_repeat1] = STATE(2153), + [ts_builtin_sym_end] = ACTIONS(1131), + [sym__ws] = ACTIONS(1133), + [sym_comment] = ACTIONS(1133), + [anon_sym_POUND_] = ACTIONS(1136), + [anon_sym_POUND] = ACTIONS(1139), + [anon_sym_DOT] = ACTIONS(1142), + [aux_sym_num_lit_token1] = ACTIONS(1145), + [anon_sym_COLON] = ACTIONS(1148), + [anon_sym_COLON_COLON] = ACTIONS(1151), + [anon_sym_DQUOTE] = ACTIONS(1154), + [sym_nil_lit] = ACTIONS(1142), + [aux_sym_sym_lit_token1] = ACTIONS(1157), + [anon_sym_CARET] = ACTIONS(1160), + [anon_sym_POUND_CARET] = ACTIONS(1163), + [anon_sym_LPAREN] = ACTIONS(1166), + [anon_sym_POUND0A] = ACTIONS(1169), + [anon_sym_POUND0a] = ACTIONS(1169), + [anon_sym_POUND_QMARK] = ACTIONS(1172), + [anon_sym_POUND_QMARK_AT] = ACTIONS(1175), + [anon_sym_POUND_SQUOTE] = ACTIONS(1178), + [anon_sym_SQUOTE] = ACTIONS(1181), + [anon_sym_BQUOTE] = ACTIONS(1184), + [anon_sym_COMMA_AT] = ACTIONS(1187), + [anon_sym_COMMA] = ACTIONS(1190), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(1142), + [anon_sym_cl] = ACTIONS(1193), + [anon_sym_POUNDP] = ACTIONS(1196), + [anon_sym_POUNDp] = ACTIONS(1196), + [sym_self_referential_reader_macro] = ACTIONS(1199), + [anon_sym_POUND_PLUS] = ACTIONS(1202), + [anon_sym_POUND_DASH] = ACTIONS(1202), + [anon_sym_POUNDC] = ACTIONS(1205), + [anon_sym_POUNDc] = ACTIONS(1205), + }, + [90] = { + [sym__gap] = STATE(89), + [sym_dis_expr] = STATE(89), + [sym__form] = STATE(1677), + [sym_num_lit] = STATE(1677), + [sym_kwd_lit] = STATE(1677), + [sym_str_lit] = STATE(1677), + [sym_char_lit] = STATE(1677), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1677), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1677), + [sym_set_lit] = STATE(1677), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1677), + [sym_splicing_read_cond_lit] = STATE(1677), + [sym_var_quoting_lit] = STATE(1677), + [sym_quoting_lit] = STATE(1677), + [sym_syn_quoting_lit] = STATE(1677), + [sym_unquote_splicing_lit] = STATE(1677), + [sym_unquoting_lit] = STATE(1677), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1677), + [sym_package_lit] = STATE(1677), + [sym_include_reader_macro] = STATE(1677), + [sym_complex_num_lit] = STATE(1677), + [aux_sym_source_repeat1] = STATE(89), + [aux_sym_list_lit_repeat1] = STATE(2153), + [ts_builtin_sym_end] = ACTIONS(1208), + [sym__ws] = ACTIONS(1210), + [sym_comment] = ACTIONS(1210), + [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), + }, + [91] = { + [sym__gap] = STATE(33), + [sym_dis_expr] = STATE(33), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(33), + [sym__ws] = ACTIONS(993), + [sym_comment] = ACTIONS(993), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(380), + [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(380), + [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(1212), + [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(380), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [92] = { + [sym__gap] = STATE(95), + [sym_dis_expr] = STATE(95), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(96), + [sym__ws] = ACTIONS(1214), + [sym_comment] = ACTIONS(1214), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(380), + [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(380), + [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(1216), + [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(380), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [93] = { + [sym__gap] = STATE(97), + [sym_dis_expr] = STATE(97), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(97), + [sym__ws] = ACTIONS(1218), + [sym_comment] = ACTIONS(1218), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(380), + [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(380), + [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(1216), + [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(380), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [94] = { + [sym__gap] = STATE(33), + [sym_dis_expr] = STATE(33), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(33), + [sym__ws] = ACTIONS(993), + [sym_comment] = ACTIONS(993), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(380), + [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(380), + [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(1220), + [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(380), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [95] = { + [sym__gap] = STATE(99), + [sym_dis_expr] = STATE(99), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(99), + [sym__ws] = ACTIONS(1222), + [sym_comment] = ACTIONS(1222), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(380), + [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(380), + [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(1224), + [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(380), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [96] = { + [sym__gap] = STATE(33), + [sym_dis_expr] = STATE(33), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(33), + [sym__ws] = ACTIONS(993), + [sym_comment] = ACTIONS(993), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(380), + [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(380), + [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(1226), + [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(380), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [97] = { + [sym__gap] = STATE(33), + [sym_dis_expr] = STATE(33), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(33), + [sym__ws] = ACTIONS(993), + [sym_comment] = ACTIONS(993), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(380), + [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(380), + [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(1228), + [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(380), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [98] = { + [sym__gap] = STATE(1443), + [sym_dis_expr] = STATE(1443), + [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(1828), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(2682), + [sym__bare_list_lit] = STATE(1901), + [sym_vec_lit] = STATE(2682), + [sym_set_lit] = STATE(2682), + [sym__bare_set_lit] = STATE(1902), + [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(1901), + [sym_loop_macro] = STATE(1901), + [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(1443), + [aux_sym_list_lit_repeat1] = STATE(2150), + [sym__ws] = ACTIONS(1035), + [sym_comment] = ACTIONS(1035), + [anon_sym_POUND_] = ACTIONS(977), + [anon_sym_POUND] = ACTIONS(979), + [anon_sym_DOT] = ACTIONS(1230), + [aux_sym_num_lit_token1] = ACTIONS(522), + [anon_sym_COLON] = ACTIONS(524), + [anon_sym_COLON_COLON] = ACTIONS(526), + [anon_sym_DQUOTE] = ACTIONS(528), + [sym_nil_lit] = ACTIONS(1230), + [aux_sym_sym_lit_token1] = ACTIONS(534), + [anon_sym_CARET] = ACTIONS(25), + [anon_sym_POUND_CARET] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(536), + [anon_sym_POUND0A] = ACTIONS(540), + [anon_sym_POUND0a] = ACTIONS(540), + [anon_sym_POUND_QMARK] = ACTIONS(542), + [anon_sym_POUND_QMARK_AT] = ACTIONS(544), + [anon_sym_POUND_SQUOTE] = ACTIONS(546), + [anon_sym_SQUOTE] = ACTIONS(548), + [anon_sym_BQUOTE] = ACTIONS(550), + [anon_sym_COMMA_AT] = ACTIONS(552), + [anon_sym_COMMA] = ACTIONS(554), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(1230), + [anon_sym_cl] = ACTIONS(1232), + [anon_sym_EQ] = ACTIONS(1234), + [anon_sym_POUNDP] = ACTIONS(558), + [anon_sym_POUNDp] = ACTIONS(558), + [sym_self_referential_reader_macro] = ACTIONS(1236), + [anon_sym_POUND_PLUS] = ACTIONS(562), + [anon_sym_POUND_DASH] = ACTIONS(562), + [anon_sym_POUNDC] = ACTIONS(564), + [anon_sym_POUNDc] = ACTIONS(564), + }, + [99] = { + [sym__gap] = STATE(33), + [sym_dis_expr] = STATE(33), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(33), + [sym__ws] = ACTIONS(993), + [sym_comment] = ACTIONS(993), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(380), + [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(380), + [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(1238), + [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(380), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [100] = { + [sym__gap] = STATE(33), + [sym_dis_expr] = STATE(33), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(33), + [sym__ws] = ACTIONS(993), + [sym_comment] = ACTIONS(993), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(380), + [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(380), + [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(1240), + [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(380), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [101] = { + [sym__gap] = STATE(33), + [sym_dis_expr] = STATE(33), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(33), + [sym__ws] = ACTIONS(993), + [sym_comment] = ACTIONS(993), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(380), + [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(380), + [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(1242), + [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(380), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [102] = { + [sym__gap] = STATE(33), + [sym_dis_expr] = STATE(33), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(33), + [sym__ws] = ACTIONS(993), + [sym_comment] = ACTIONS(993), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(380), + [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(380), + [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(1244), + [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(380), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [103] = { + [sym__gap] = STATE(111), + [sym_dis_expr] = STATE(111), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(111), + [sym__ws] = ACTIONS(1246), + [sym_comment] = ACTIONS(1246), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(380), + [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(380), + [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(1248), + [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(380), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [104] = { + [sym__gap] = STATE(100), + [sym_dis_expr] = STATE(100), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(100), + [sym__ws] = ACTIONS(1250), + [sym_comment] = ACTIONS(1250), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(380), + [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(380), + [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(1252), + [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(380), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [105] = { + [sym__gap] = STATE(48), + [sym_dis_expr] = STATE(48), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(48), + [sym__ws] = ACTIONS(1254), + [sym_comment] = ACTIONS(1254), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(380), + [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(380), + [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(1256), + [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(380), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [106] = { + [sym__gap] = STATE(33), + [sym_dis_expr] = STATE(33), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(33), + [sym__ws] = ACTIONS(993), + [sym_comment] = ACTIONS(993), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(380), + [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(380), + [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(1258), + [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(380), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [107] = { + [sym__gap] = STATE(101), + [sym_dis_expr] = STATE(101), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(101), + [sym__ws] = ACTIONS(1260), + [sym_comment] = ACTIONS(1260), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(380), + [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(380), + [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(1262), + [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(380), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [108] = { + [sym__gap] = STATE(114), + [sym_dis_expr] = STATE(114), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(115), + [sym__ws] = ACTIONS(1264), + [sym_comment] = ACTIONS(1264), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(380), + [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(380), + [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(1266), + [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(380), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [109] = { + [sym__gap] = STATE(33), + [sym_dis_expr] = STATE(33), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(33), + [sym__ws] = ACTIONS(993), + [sym_comment] = ACTIONS(993), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(380), + [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(380), + [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(1268), + [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(380), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [110] = { + [sym__gap] = STATE(33), + [sym_dis_expr] = STATE(33), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(33), + [sym__ws] = ACTIONS(993), + [sym_comment] = ACTIONS(993), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(380), + [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(380), + [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(1270), + [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(380), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [111] = { + [sym__gap] = STATE(33), + [sym_dis_expr] = STATE(33), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(33), + [sym__ws] = ACTIONS(993), + [sym_comment] = ACTIONS(993), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(380), + [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(380), + [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(1272), + [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(380), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [112] = { + [sym__gap] = STATE(116), + [sym_dis_expr] = STATE(116), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(117), + [sym__ws] = ACTIONS(1274), + [sym_comment] = ACTIONS(1274), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(380), + [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(380), + [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(1276), + [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(380), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [113] = { + [sym__gap] = STATE(104), + [sym_dis_expr] = STATE(104), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(102), + [sym__ws] = ACTIONS(1278), + [sym_comment] = ACTIONS(1278), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(380), + [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(380), + [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(1262), + [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(380), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [114] = { + [sym__gap] = STATE(119), + [sym_dis_expr] = STATE(119), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(119), + [sym__ws] = ACTIONS(1280), + [sym_comment] = ACTIONS(1280), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(380), + [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(380), + [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(1276), + [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(380), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [115] = { + [sym__gap] = STATE(33), + [sym_dis_expr] = STATE(33), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(33), + [sym__ws] = ACTIONS(993), + [sym_comment] = ACTIONS(993), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(380), + [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(380), + [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(1282), + [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(380), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [116] = { + [sym__gap] = STATE(121), + [sym_dis_expr] = STATE(121), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(121), + [sym__ws] = ACTIONS(1284), + [sym_comment] = ACTIONS(1284), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(380), + [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(380), + [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(1286), + [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(380), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [117] = { + [sym__gap] = STATE(33), + [sym_dis_expr] = STATE(33), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(33), + [sym__ws] = ACTIONS(993), + [sym_comment] = ACTIONS(993), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(380), + [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(380), + [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(1288), + [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(380), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [118] = { + [sym__gap] = STATE(33), + [sym_dis_expr] = STATE(33), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(33), + [sym__ws] = ACTIONS(993), + [sym_comment] = ACTIONS(993), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(380), + [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(380), + [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(1290), + [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(380), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [119] = { + [sym__gap] = STATE(33), + [sym_dis_expr] = STATE(33), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(33), + [sym__ws] = ACTIONS(993), + [sym_comment] = ACTIONS(993), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(380), + [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(380), + [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(1292), + [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(380), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [120] = { + [sym__gap] = STATE(33), + [sym_dis_expr] = STATE(33), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(33), + [sym__ws] = ACTIONS(993), + [sym_comment] = ACTIONS(993), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(380), + [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(380), + [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(1294), + [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(380), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [121] = { + [sym__gap] = STATE(33), + [sym_dis_expr] = STATE(33), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(33), + [sym__ws] = ACTIONS(993), + [sym_comment] = ACTIONS(993), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(380), + [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(380), + [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(1296), + [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(380), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [122] = { + [sym__gap] = STATE(33), + [sym_dis_expr] = STATE(33), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(33), + [sym__ws] = ACTIONS(993), + [sym_comment] = ACTIONS(993), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(380), + [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(380), + [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(1298), + [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(380), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [123] = { + [sym__gap] = STATE(33), + [sym_dis_expr] = STATE(33), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(33), + [sym__ws] = ACTIONS(993), + [sym_comment] = ACTIONS(993), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(380), + [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(380), + [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(1300), + [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(380), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [124] = { + [sym__gap] = STATE(98), + [sym_dis_expr] = STATE(98), + [sym__form] = STATE(2750), + [sym_num_lit] = STATE(2750), + [sym_kwd_lit] = STATE(2750), + [sym_str_lit] = STATE(2750), + [sym_char_lit] = STATE(2750), + [sym_sym_lit] = STATE(1828), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(2750), + [sym__bare_list_lit] = STATE(1901), + [sym_vec_lit] = STATE(2750), + [sym_set_lit] = STATE(2750), + [sym__bare_set_lit] = STATE(1902), + [sym_read_cond_lit] = STATE(2750), + [sym_splicing_read_cond_lit] = STATE(2750), + [sym_var_quoting_lit] = STATE(2750), + [sym_quoting_lit] = STATE(2750), + [sym_syn_quoting_lit] = STATE(2750), + [sym_unquote_splicing_lit] = STATE(2750), + [sym_unquoting_lit] = STATE(2750), + [sym_defun] = STATE(1901), + [sym_loop_macro] = STATE(1901), + [sym_path_lit] = STATE(2750), + [sym_package_lit] = STATE(2750), + [sym_include_reader_macro] = STATE(2750), + [sym_complex_num_lit] = STATE(2750), + [aux_sym_dis_expr_repeat1] = STATE(98), + [aux_sym_list_lit_repeat1] = STATE(2150), + [sym__ws] = ACTIONS(1302), + [sym_comment] = ACTIONS(1302), + [anon_sym_POUND_] = ACTIONS(977), + [anon_sym_POUND] = ACTIONS(979), + [anon_sym_DOT] = ACTIONS(1304), + [aux_sym_num_lit_token1] = ACTIONS(522), + [anon_sym_COLON] = ACTIONS(524), + [anon_sym_COLON_COLON] = ACTIONS(526), + [anon_sym_DQUOTE] = ACTIONS(528), + [sym_nil_lit] = ACTIONS(1304), + [aux_sym_sym_lit_token1] = ACTIONS(534), + [anon_sym_CARET] = ACTIONS(25), + [anon_sym_POUND_CARET] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(536), + [anon_sym_POUND0A] = ACTIONS(540), + [anon_sym_POUND0a] = ACTIONS(540), + [anon_sym_POUND_QMARK] = ACTIONS(542), + [anon_sym_POUND_QMARK_AT] = ACTIONS(544), + [anon_sym_POUND_SQUOTE] = ACTIONS(546), + [anon_sym_SQUOTE] = ACTIONS(548), + [anon_sym_BQUOTE] = ACTIONS(550), + [anon_sym_COMMA_AT] = ACTIONS(552), + [anon_sym_COMMA] = ACTIONS(554), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(1304), + [anon_sym_cl] = ACTIONS(1306), + [anon_sym_EQ] = ACTIONS(1308), + [anon_sym_POUNDP] = ACTIONS(558), + [anon_sym_POUNDp] = ACTIONS(558), + [sym_self_referential_reader_macro] = ACTIONS(1310), + [anon_sym_POUND_PLUS] = ACTIONS(562), + [anon_sym_POUND_DASH] = ACTIONS(562), + [anon_sym_POUNDC] = ACTIONS(564), + [anon_sym_POUNDc] = ACTIONS(564), + }, + [125] = { + [sym__gap] = STATE(33), + [sym_dis_expr] = STATE(33), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(33), + [sym__ws] = ACTIONS(993), + [sym_comment] = ACTIONS(993), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(380), + [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(380), + [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(1312), + [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(380), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [126] = { + [sym__gap] = STATE(118), + [sym_dis_expr] = STATE(118), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(118), + [sym__ws] = ACTIONS(1314), + [sym_comment] = ACTIONS(1314), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(380), + [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(380), + [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(1316), + [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(380), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [127] = { + [sym__gap] = STATE(33), + [sym_dis_expr] = STATE(33), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(33), + [sym__ws] = ACTIONS(993), + [sym_comment] = ACTIONS(993), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(380), + [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(380), + [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(1318), + [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(380), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [128] = { + [sym__gap] = STATE(1443), + [sym_dis_expr] = STATE(1443), + [sym__form] = STATE(2751), + [sym_num_lit] = STATE(2751), + [sym_kwd_lit] = STATE(2751), + [sym_str_lit] = STATE(2751), + [sym_char_lit] = STATE(2751), + [sym_sym_lit] = STATE(1828), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(2751), + [sym__bare_list_lit] = STATE(1901), + [sym_vec_lit] = STATE(2751), + [sym_set_lit] = STATE(2751), + [sym__bare_set_lit] = STATE(1902), + [sym_read_cond_lit] = STATE(2751), + [sym_splicing_read_cond_lit] = STATE(2751), + [sym_var_quoting_lit] = STATE(2751), + [sym_quoting_lit] = STATE(2751), + [sym_syn_quoting_lit] = STATE(2751), + [sym_unquote_splicing_lit] = STATE(2751), + [sym_unquoting_lit] = STATE(2751), + [sym_defun] = STATE(1901), + [sym_loop_macro] = STATE(1901), + [sym_path_lit] = STATE(2751), + [sym_package_lit] = STATE(2751), + [sym_include_reader_macro] = STATE(2751), + [sym_complex_num_lit] = STATE(2751), + [aux_sym_dis_expr_repeat1] = STATE(1443), + [aux_sym_list_lit_repeat1] = STATE(2150), + [sym__ws] = ACTIONS(1035), + [sym_comment] = ACTIONS(1035), + [anon_sym_POUND_] = ACTIONS(977), + [anon_sym_POUND] = ACTIONS(979), + [anon_sym_DOT] = ACTIONS(1320), + [aux_sym_num_lit_token1] = ACTIONS(522), + [anon_sym_COLON] = ACTIONS(524), + [anon_sym_COLON_COLON] = ACTIONS(526), + [anon_sym_DQUOTE] = ACTIONS(528), + [sym_nil_lit] = ACTIONS(1320), + [aux_sym_sym_lit_token1] = ACTIONS(534), + [anon_sym_CARET] = ACTIONS(25), + [anon_sym_POUND_CARET] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(536), + [anon_sym_POUND0A] = ACTIONS(540), + [anon_sym_POUND0a] = ACTIONS(540), + [anon_sym_POUND_QMARK] = ACTIONS(542), + [anon_sym_POUND_QMARK_AT] = ACTIONS(544), + [anon_sym_POUND_SQUOTE] = ACTIONS(546), + [anon_sym_SQUOTE] = ACTIONS(548), + [anon_sym_BQUOTE] = ACTIONS(550), + [anon_sym_COMMA_AT] = ACTIONS(552), + [anon_sym_COMMA] = ACTIONS(554), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(1320), + [anon_sym_cl] = ACTIONS(1322), + [anon_sym_EQ] = ACTIONS(1324), + [anon_sym_POUNDP] = ACTIONS(558), + [anon_sym_POUNDp] = ACTIONS(558), + [sym_self_referential_reader_macro] = ACTIONS(1326), + [anon_sym_POUND_PLUS] = ACTIONS(562), + [anon_sym_POUND_DASH] = ACTIONS(562), + [anon_sym_POUNDC] = ACTIONS(564), + [anon_sym_POUNDc] = ACTIONS(564), + }, + [129] = { + [sym__gap] = STATE(33), + [sym_dis_expr] = STATE(33), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(33), + [sym__ws] = ACTIONS(993), + [sym_comment] = ACTIONS(993), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(380), + [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(380), + [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(1328), + [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(380), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [130] = { + [sym__gap] = STATE(107), + [sym_dis_expr] = STATE(107), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(106), + [sym__ws] = ACTIONS(1330), + [sym_comment] = ACTIONS(1330), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(380), + [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(380), + [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(1332), + [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(380), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [131] = { + [sym__gap] = STATE(122), + [sym_dis_expr] = STATE(122), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(122), + [sym__ws] = ACTIONS(1334), + [sym_comment] = ACTIONS(1334), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(380), + [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(380), + [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(1336), + [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(380), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [132] = { + [sym__gap] = STATE(33), + [sym_dis_expr] = STATE(33), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(33), + [sym__ws] = ACTIONS(993), + [sym_comment] = ACTIONS(993), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(380), + [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(380), + [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(1338), + [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(380), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [133] = { + [sym__gap] = STATE(33), + [sym_dis_expr] = STATE(33), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(33), + [sym__ws] = ACTIONS(993), + [sym_comment] = ACTIONS(993), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(380), + [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(380), + [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(1340), + [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(380), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [134] = { + [sym__gap] = STATE(227), + [sym_dis_expr] = STATE(227), + [sym__form] = STATE(817), + [sym_num_lit] = STATE(817), + [sym_kwd_lit] = STATE(817), + [sym_str_lit] = STATE(817), + [sym_char_lit] = STATE(817), + [sym_sym_lit] = STATE(862), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(817), + [sym__bare_list_lit] = STATE(863), + [sym_vec_lit] = STATE(817), + [sym_set_lit] = STATE(817), + [sym__bare_set_lit] = STATE(870), + [sym_read_cond_lit] = STATE(817), + [sym_splicing_read_cond_lit] = STATE(817), + [sym_var_quoting_lit] = STATE(817), + [sym_quoting_lit] = STATE(817), + [sym_syn_quoting_lit] = STATE(817), + [sym_unquote_splicing_lit] = STATE(817), + [sym_unquoting_lit] = STATE(817), + [sym_defun] = STATE(863), + [sym_loop_macro] = STATE(863), + [sym_path_lit] = STATE(817), + [sym_package_lit] = STATE(817), + [sym_include_reader_macro] = STATE(817), + [sym_complex_num_lit] = STATE(817), + [aux_sym_dis_expr_repeat1] = STATE(227), + [aux_sym_list_lit_repeat1] = STATE(2156), + [aux_sym_do_clause_repeat1] = STATE(2), + [sym__ws] = ACTIONS(1342), + [sym_comment] = ACTIONS(1342), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(61), + [anon_sym_DOT] = ACTIONS(63), + [aux_sym_num_lit_token1] = ACTIONS(65), + [anon_sym_COLON] = ACTIONS(67), + [anon_sym_COLON_COLON] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [sym_nil_lit] = ACTIONS(63), + [aux_sym_sym_lit_token1] = ACTIONS(73), + [anon_sym_CARET] = ACTIONS(25), + [anon_sym_POUND_CARET] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(775), + [anon_sym_POUND0A] = ACTIONS(75), + [anon_sym_POUND0a] = ACTIONS(75), + [anon_sym_POUND_QMARK] = ACTIONS(77), + [anon_sym_POUND_QMARK_AT] = ACTIONS(79), + [anon_sym_POUND_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_BQUOTE] = ACTIONS(85), + [anon_sym_COMMA_AT] = ACTIONS(87), + [anon_sym_COMMA] = ACTIONS(89), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(63), + [anon_sym_cl] = ACTIONS(779), + [anon_sym_POUNDP] = ACTIONS(93), + [anon_sym_POUNDp] = ACTIONS(93), + [sym_self_referential_reader_macro] = ACTIONS(95), + [anon_sym_POUND_PLUS] = ACTIONS(97), + [anon_sym_POUND_DASH] = ACTIONS(97), + [anon_sym_POUNDC] = ACTIONS(99), + [anon_sym_POUNDc] = ACTIONS(99), + }, + [135] = { + [sym__gap] = STATE(33), + [sym_dis_expr] = STATE(33), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(33), + [sym__ws] = ACTIONS(993), + [sym_comment] = ACTIONS(993), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(380), + [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(380), + [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(1344), + [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(380), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [136] = { + [sym__gap] = STATE(33), + [sym_dis_expr] = STATE(33), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(33), + [sym__ws] = ACTIONS(993), + [sym_comment] = ACTIONS(993), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(380), + [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(380), + [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(1346), + [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(380), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [137] = { + [sym__gap] = STATE(132), + [sym_dis_expr] = STATE(132), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(132), + [sym__ws] = ACTIONS(1348), + [sym_comment] = ACTIONS(1348), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(380), + [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(380), + [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(1350), + [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(380), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [138] = { + [sym__gap] = STATE(227), + [sym_dis_expr] = STATE(227), + [sym__form] = STATE(817), + [sym_num_lit] = STATE(817), + [sym_kwd_lit] = STATE(817), + [sym_str_lit] = STATE(817), + [sym_char_lit] = STATE(817), + [sym_sym_lit] = STATE(862), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(817), + [sym__bare_list_lit] = STATE(863), + [sym_vec_lit] = STATE(817), + [sym_set_lit] = STATE(817), + [sym__bare_set_lit] = STATE(870), + [sym_read_cond_lit] = STATE(817), + [sym_splicing_read_cond_lit] = STATE(817), + [sym_var_quoting_lit] = STATE(817), + [sym_quoting_lit] = STATE(817), + [sym_syn_quoting_lit] = STATE(817), + [sym_unquote_splicing_lit] = STATE(817), + [sym_unquoting_lit] = STATE(817), + [sym_defun] = STATE(863), + [sym_loop_macro] = STATE(863), + [sym_path_lit] = STATE(817), + [sym_package_lit] = STATE(817), + [sym_include_reader_macro] = STATE(817), + [sym_complex_num_lit] = STATE(817), + [aux_sym_dis_expr_repeat1] = STATE(227), + [aux_sym_list_lit_repeat1] = STATE(2156), + [aux_sym_do_clause_repeat1] = STATE(4), + [sym__ws] = ACTIONS(1342), + [sym_comment] = ACTIONS(1342), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(61), + [anon_sym_DOT] = ACTIONS(63), + [aux_sym_num_lit_token1] = ACTIONS(65), + [anon_sym_COLON] = ACTIONS(67), + [anon_sym_COLON_COLON] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [sym_nil_lit] = ACTIONS(63), + [aux_sym_sym_lit_token1] = ACTIONS(73), + [anon_sym_CARET] = ACTIONS(25), + [anon_sym_POUND_CARET] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(775), + [anon_sym_POUND0A] = ACTIONS(75), + [anon_sym_POUND0a] = ACTIONS(75), + [anon_sym_POUND_QMARK] = ACTIONS(77), + [anon_sym_POUND_QMARK_AT] = ACTIONS(79), + [anon_sym_POUND_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_BQUOTE] = ACTIONS(85), + [anon_sym_COMMA_AT] = ACTIONS(87), + [anon_sym_COMMA] = ACTIONS(89), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(63), + [anon_sym_cl] = ACTIONS(779), + [anon_sym_POUNDP] = ACTIONS(93), + [anon_sym_POUNDp] = ACTIONS(93), + [sym_self_referential_reader_macro] = ACTIONS(95), + [anon_sym_POUND_PLUS] = ACTIONS(97), + [anon_sym_POUND_DASH] = ACTIONS(97), + [anon_sym_POUNDC] = ACTIONS(99), + [anon_sym_POUNDc] = ACTIONS(99), + }, + [139] = { + [sym__gap] = STATE(142), + [sym_dis_expr] = STATE(142), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(142), + [sym__ws] = ACTIONS(1352), + [sym_comment] = ACTIONS(1352), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(380), + [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(380), + [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(1354), + [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(380), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [140] = { + [sym__gap] = STATE(164), + [sym_dis_expr] = STATE(164), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(162), + [sym__ws] = ACTIONS(1356), + [sym_comment] = ACTIONS(1356), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(380), + [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(380), + [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(1358), + [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(380), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [141] = { + [sym__gap] = STATE(33), + [sym_dis_expr] = STATE(33), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(33), + [sym__ws] = ACTIONS(993), + [sym_comment] = ACTIONS(993), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(380), + [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(380), + [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(1360), + [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(380), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [142] = { + [sym__gap] = STATE(33), + [sym_dis_expr] = STATE(33), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(33), + [sym__ws] = ACTIONS(993), + [sym_comment] = ACTIONS(993), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(380), + [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(380), + [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(1362), + [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(380), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [143] = { + [sym__gap] = STATE(33), + [sym_dis_expr] = STATE(33), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(33), + [sym__ws] = ACTIONS(993), + [sym_comment] = ACTIONS(993), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(380), + [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(380), + [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(1364), + [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(380), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [144] = { + [sym__gap] = STATE(33), + [sym_dis_expr] = STATE(33), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(33), + [sym__ws] = ACTIONS(993), + [sym_comment] = ACTIONS(993), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(380), + [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(380), + [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(1366), + [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(380), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [145] = { + [sym__gap] = STATE(33), + [sym_dis_expr] = STATE(33), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(33), + [sym__ws] = ACTIONS(993), + [sym_comment] = ACTIONS(993), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(380), + [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(380), + [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(1368), + [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(380), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [146] = { + [sym__gap] = STATE(33), + [sym_dis_expr] = STATE(33), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(33), + [sym__ws] = ACTIONS(993), + [sym_comment] = ACTIONS(993), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(380), + [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(380), + [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(1370), + [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(380), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [147] = { + [sym__gap] = STATE(148), + [sym_dis_expr] = STATE(148), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(133), + [sym__ws] = ACTIONS(1372), + [sym_comment] = ACTIONS(1372), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(380), + [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(380), + [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(1374), + [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(380), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [148] = { + [sym__gap] = STATE(123), + [sym_dis_expr] = STATE(123), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(123), + [sym__ws] = ACTIONS(1376), + [sym_comment] = ACTIONS(1376), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(380), + [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(380), + [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(1378), + [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(380), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [149] = { + [sym__gap] = STATE(126), + [sym_dis_expr] = STATE(126), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(125), + [sym__ws] = ACTIONS(1380), + [sym_comment] = ACTIONS(1380), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(380), + [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(380), + [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(1378), + [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(380), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [150] = { + [sym__gap] = STATE(163), + [sym_dis_expr] = STATE(163), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(163), + [sym__ws] = ACTIONS(1382), + [sym_comment] = ACTIONS(1382), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(380), + [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(380), + [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(1384), + [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(380), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [151] = { + [sym__gap] = STATE(154), + [sym_dis_expr] = STATE(154), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(157), + [sym__ws] = ACTIONS(1386), + [sym_comment] = ACTIONS(1386), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(380), + [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(380), + [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(1388), + [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(380), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [152] = { + [sym__gap] = STATE(128), + [sym_dis_expr] = STATE(128), + [sym__form] = STATE(2707), + [sym_num_lit] = STATE(2707), + [sym_kwd_lit] = STATE(2707), + [sym_str_lit] = STATE(2707), + [sym_char_lit] = STATE(2707), + [sym_sym_lit] = STATE(1828), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(2707), + [sym__bare_list_lit] = STATE(1901), + [sym_vec_lit] = STATE(2707), + [sym_set_lit] = STATE(2707), + [sym__bare_set_lit] = STATE(1902), + [sym_read_cond_lit] = STATE(2707), + [sym_splicing_read_cond_lit] = STATE(2707), + [sym_var_quoting_lit] = STATE(2707), + [sym_quoting_lit] = STATE(2707), + [sym_syn_quoting_lit] = STATE(2707), + [sym_unquote_splicing_lit] = STATE(2707), + [sym_unquoting_lit] = STATE(2707), + [sym_defun] = STATE(1901), + [sym_loop_macro] = STATE(1901), + [sym_path_lit] = STATE(2707), + [sym_package_lit] = STATE(2707), + [sym_include_reader_macro] = STATE(2707), + [sym_complex_num_lit] = STATE(2707), + [aux_sym_dis_expr_repeat1] = STATE(128), + [aux_sym_list_lit_repeat1] = STATE(2150), + [sym__ws] = ACTIONS(1390), + [sym_comment] = ACTIONS(1390), + [anon_sym_POUND_] = ACTIONS(977), + [anon_sym_POUND] = ACTIONS(979), + [anon_sym_DOT] = ACTIONS(1392), + [aux_sym_num_lit_token1] = ACTIONS(522), + [anon_sym_COLON] = ACTIONS(524), + [anon_sym_COLON_COLON] = ACTIONS(526), + [anon_sym_DQUOTE] = ACTIONS(528), + [sym_nil_lit] = ACTIONS(1392), + [aux_sym_sym_lit_token1] = ACTIONS(534), + [anon_sym_CARET] = ACTIONS(25), + [anon_sym_POUND_CARET] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(536), + [anon_sym_POUND0A] = ACTIONS(540), + [anon_sym_POUND0a] = ACTIONS(540), + [anon_sym_POUND_QMARK] = ACTIONS(542), + [anon_sym_POUND_QMARK_AT] = ACTIONS(544), + [anon_sym_POUND_SQUOTE] = ACTIONS(546), + [anon_sym_SQUOTE] = ACTIONS(548), + [anon_sym_BQUOTE] = ACTIONS(550), + [anon_sym_COMMA_AT] = ACTIONS(552), + [anon_sym_COMMA] = ACTIONS(554), + [sym_block_comment] = ACTIONS(47), + [sym_fancy_literal] = ACTIONS(1392), + [anon_sym_cl] = ACTIONS(1394), + [anon_sym_EQ] = ACTIONS(1396), + [anon_sym_POUNDP] = ACTIONS(558), + [anon_sym_POUNDp] = ACTIONS(558), + [sym_self_referential_reader_macro] = ACTIONS(1398), + [anon_sym_POUND_PLUS] = ACTIONS(562), + [anon_sym_POUND_DASH] = ACTIONS(562), + [anon_sym_POUNDC] = ACTIONS(564), + [anon_sym_POUNDc] = ACTIONS(564), + }, + [153] = { + [sym__gap] = STATE(150), + [sym_dis_expr] = STATE(150), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(144), + [sym__ws] = ACTIONS(1400), + [sym_comment] = ACTIONS(1400), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(380), + [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(380), + [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(1402), + [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(380), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [154] = { + [sym__gap] = STATE(120), + [sym_dis_expr] = STATE(120), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(120), + [sym__ws] = ACTIONS(1404), + [sym_comment] = ACTIONS(1404), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(380), + [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(380), + [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(1406), + [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(380), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [155] = { + [sym__gap] = STATE(51), + [sym_dis_expr] = STATE(51), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(51), + [sym__ws] = ACTIONS(1408), + [sym_comment] = ACTIONS(1408), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(380), + [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(380), + [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(1388), + [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(380), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [156] = { + [sym__gap] = STATE(33), + [sym_dis_expr] = STATE(33), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(33), + [sym__ws] = ACTIONS(993), + [sym_comment] = ACTIONS(993), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(380), + [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(380), + [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(1410), + [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(380), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [157] = { + [sym__gap] = STATE(33), + [sym_dis_expr] = STATE(33), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(33), + [sym__ws] = ACTIONS(993), + [sym_comment] = ACTIONS(993), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(380), + [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(380), + [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(1412), + [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(380), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [158] = { + [sym__gap] = STATE(135), + [sym_dis_expr] = STATE(135), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(135), + [sym__ws] = ACTIONS(1414), + [sym_comment] = ACTIONS(1414), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(380), + [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(380), + [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(1416), + [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(380), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [159] = { + [sym__gap] = STATE(137), + [sym_dis_expr] = STATE(137), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(136), + [sym__ws] = ACTIONS(1418), + [sym_comment] = ACTIONS(1418), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(380), + [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(380), + [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(1416), + [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(380), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [160] = { + [sym__gap] = STATE(33), + [sym_dis_expr] = STATE(33), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(33), + [sym__ws] = ACTIONS(993), + [sym_comment] = ACTIONS(993), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(380), + [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(380), + [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(1420), + [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(380), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [161] = { + [sym__gap] = STATE(33), + [sym_dis_expr] = STATE(33), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(33), + [sym__ws] = ACTIONS(993), + [sym_comment] = ACTIONS(993), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(380), + [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(380), + [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(1422), + [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(380), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [162] = { + [sym__gap] = STATE(33), + [sym_dis_expr] = STATE(33), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(33), + [sym__ws] = ACTIONS(993), + [sym_comment] = ACTIONS(993), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(380), + [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(380), + [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(1424), + [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(380), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [163] = { + [sym__gap] = STATE(33), + [sym_dis_expr] = STATE(33), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(33), + [sym__ws] = ACTIONS(993), + [sym_comment] = ACTIONS(993), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(380), + [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(380), + [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(1426), + [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(380), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [164] = { + [sym__gap] = STATE(143), + [sym_dis_expr] = STATE(143), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(143), + [sym__ws] = ACTIONS(1428), + [sym_comment] = ACTIONS(1428), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(380), + [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(380), + [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(1402), + [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(380), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, + [165] = { + [sym__gap] = STATE(158), + [sym_dis_expr] = STATE(158), + [sym__form] = STATE(1566), + [sym_num_lit] = STATE(1566), + [sym_kwd_lit] = STATE(1566), + [sym_str_lit] = STATE(1566), + [sym_char_lit] = STATE(1566), + [sym_sym_lit] = STATE(1563), + [sym__metadata_lit] = STATE(2237), + [sym_meta_lit] = STATE(2206), + [sym_old_meta_lit] = STATE(2202), + [sym_list_lit] = STATE(1566), + [sym__bare_list_lit] = STATE(1562), + [sym_vec_lit] = STATE(1566), + [sym_set_lit] = STATE(1566), + [sym__bare_set_lit] = STATE(1561), + [sym_read_cond_lit] = STATE(1566), + [sym_splicing_read_cond_lit] = STATE(1566), + [sym_var_quoting_lit] = STATE(1566), + [sym_quoting_lit] = STATE(1566), + [sym_syn_quoting_lit] = STATE(1566), + [sym_unquote_splicing_lit] = STATE(1566), + [sym_unquoting_lit] = STATE(1566), + [sym_defun] = STATE(1562), + [sym_loop_macro] = STATE(1562), + [sym_path_lit] = STATE(1566), + [sym_package_lit] = STATE(1566), + [sym_include_reader_macro] = STATE(1566), + [sym_complex_num_lit] = STATE(1566), + [aux_sym_list_lit_repeat1] = STATE(2153), + [aux_sym__bare_list_lit_repeat1] = STATE(145), + [sym__ws] = ACTIONS(1430), + [sym_comment] = ACTIONS(1430), + [anon_sym_POUND_] = ACTIONS(9), + [anon_sym_POUND] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(380), + [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(380), + [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(1432), + [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(380), + [anon_sym_cl] = ACTIONS(49), + [anon_sym_POUNDP] = ACTIONS(51), + [anon_sym_POUNDp] = ACTIONS(51), + [sym_self_referential_reader_macro] = ACTIONS(392), + [anon_sym_POUND_PLUS] = ACTIONS(55), + [anon_sym_POUND_DASH] = ACTIONS(55), + [anon_sym_POUNDC] = ACTIONS(57), + [anon_sym_POUNDc] = ACTIONS(57), + }, +}; + +static uint16_t ts_small_parse_table[] = { + [0] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -30315,17 +21526,19 @@ static uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - STATE(1608), 1, + ACTIONS(1438), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(1610), 1, + STATE(1563), 1, sym_sym_lit, - STATE(2052), 1, + STATE(2153), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -30333,126 +21546,28 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(53), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(55), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(1434), 2, sym__ws, sym_comment, - ACTIONS(1509), 3, + ACTIONS(1436), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(668), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(193), 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, - [23242] = 34, - 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(569), 1, - aux_sym_num_lit_token1, - ACTIONS(571), 1, - anon_sym_COLON, - ACTIONS(573), 1, - anon_sym_COLON_COLON, - ACTIONS(575), 1, - anon_sym_DQUOTE, - ACTIONS(581), 1, - aux_sym_sym_lit_token1, - ACTIONS(583), 1, - anon_sym_LPAREN, - ACTIONS(589), 1, - anon_sym_POUND_QMARK, - ACTIONS(591), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(593), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(595), 1, - anon_sym_SQUOTE, - ACTIONS(597), 1, - anon_sym_BQUOTE, - ACTIONS(599), 1, - anon_sym_COMMA_AT, - ACTIONS(601), 1, - anon_sym_COMMA, - ACTIONS(603), 1, - anon_sym_cl, - ACTIONS(1387), 1, - anon_sym_POUND, - STATE(1163), 1, - sym_sym_lit, - STATE(1186), 1, - sym__bare_set_lit, - STATE(2027), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(587), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(605), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(607), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(609), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(1353), 2, - sym__ws, - sym_comment, - ACTIONS(1511), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(1183), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1657), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1284), 19, + STATE(304), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -30472,7 +21587,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [23374] = 34, + [135] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -30481,272 +21596,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(569), 1, - aux_sym_num_lit_token1, - ACTIONS(571), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(573), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(575), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(581), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(583), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(589), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(591), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(593), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(595), 1, - anon_sym_SQUOTE, - ACTIONS(597), 1, - anon_sym_BQUOTE, - ACTIONS(599), 1, - anon_sym_COMMA_AT, - ACTIONS(601), 1, - anon_sym_COMMA, - ACTIONS(603), 1, + ACTIONS(556), 1, anon_sym_cl, - ACTIONS(1387), 1, - anon_sym_POUND, - STATE(1163), 1, - sym_sym_lit, - STATE(1186), 1, - sym__bare_set_lit, - STATE(2027), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(587), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(605), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(607), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(609), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(1513), 2, - sym__ws, - sym_comment, - ACTIONS(1515), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(295), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1183), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1260), 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, - [23506] = 34, - 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(569), 1, + ACTIONS(783), 1, aux_sym_num_lit_token1, - ACTIONS(571), 1, - anon_sym_COLON, - ACTIONS(573), 1, - anon_sym_COLON_COLON, - ACTIONS(575), 1, - anon_sym_DQUOTE, - ACTIONS(581), 1, - aux_sym_sym_lit_token1, - ACTIONS(583), 1, - anon_sym_LPAREN, - ACTIONS(589), 1, - anon_sym_POUND_QMARK, - ACTIONS(591), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(593), 1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(595), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(597), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(599), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(601), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(603), 1, - anon_sym_cl, - ACTIONS(1387), 1, + ACTIONS(1442), 1, anon_sym_POUND, - STATE(1163), 1, + ACTIONS(1446), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(1186), 1, + STATE(1902), 1, sym__bare_set_lit, - STATE(2027), 1, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(587), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(605), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(607), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(609), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, - sym__ws, - sym_comment, - ACTIONS(1517), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(1183), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1172), 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, - [23638] = 34, - 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(59), 1, - anon_sym_POUND, - ACTIONS(63), 1, - aux_sym_num_lit_token1, - ACTIONS(65), 1, - anon_sym_COLON, - ACTIONS(67), 1, - anon_sym_COLON_COLON, - ACTIONS(69), 1, - anon_sym_DQUOTE, - ACTIONS(71), 1, - aux_sym_sym_lit_token1, - ACTIONS(75), 1, - anon_sym_POUND_QMARK, - ACTIONS(77), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(79), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(81), 1, - anon_sym_SQUOTE, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(85), 1, - anon_sym_COMMA_AT, - ACTIONS(87), 1, - anon_sym_COMMA, - ACTIONS(541), 1, - anon_sym_LPAREN, - ACTIONS(545), 1, - anon_sym_cl, - STATE(877), 1, - sym_sym_lit, - STATE(938), 1, - sym__bare_set_lit, - STATE(2065), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(73), 2, + ACTIONS(785), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(91), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(93), 2, + ACTIONS(797), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(95), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(1519), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(1521), 3, + ACTIONS(1444), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(210), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(939), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(862), 19, + STATE(1982), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -30766,379 +21687,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [23770] = 34, + [270] = 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(59), 1, - anon_sym_POUND, - ACTIONS(63), 1, - aux_sym_num_lit_token1, - ACTIONS(65), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(67), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(69), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(71), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(75), 1, - anon_sym_POUND_QMARK, - ACTIONS(77), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(79), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(81), 1, - anon_sym_SQUOTE, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(85), 1, - anon_sym_COMMA_AT, - ACTIONS(87), 1, - anon_sym_COMMA, - ACTIONS(541), 1, - anon_sym_LPAREN, - ACTIONS(545), 1, - anon_sym_cl, - STATE(877), 1, - sym_sym_lit, - STATE(938), 1, - sym__bare_set_lit, - STATE(2065), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(73), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(91), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(93), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(95), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(1523), 2, - sym__ws, - sym_comment, - ACTIONS(1525), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(211), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(939), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(861), 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, - [23902] = 34, - 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(59), 1, - anon_sym_POUND, - ACTIONS(63), 1, - aux_sym_num_lit_token1, - ACTIONS(65), 1, - anon_sym_COLON, - ACTIONS(67), 1, - anon_sym_COLON_COLON, - ACTIONS(69), 1, - anon_sym_DQUOTE, - ACTIONS(71), 1, - aux_sym_sym_lit_token1, - ACTIONS(75), 1, - anon_sym_POUND_QMARK, - ACTIONS(77), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(79), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(81), 1, - anon_sym_SQUOTE, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(85), 1, - anon_sym_COMMA_AT, - ACTIONS(87), 1, - anon_sym_COMMA, - ACTIONS(541), 1, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(545), 1, - anon_sym_cl, - STATE(877), 1, - sym_sym_lit, - STATE(938), 1, - sym__bare_set_lit, - STATE(2065), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(73), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(91), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(93), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(95), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(1527), 2, - sym__ws, - sym_comment, - ACTIONS(1529), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(212), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(939), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(860), 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, - [24034] = 34, - 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(183), 1, - anon_sym_POUND, - ACTIONS(187), 1, - aux_sym_num_lit_token1, - ACTIONS(189), 1, - anon_sym_COLON, - ACTIONS(191), 1, - anon_sym_COLON_COLON, - ACTIONS(193), 1, - anon_sym_DQUOTE, - ACTIONS(195), 1, - aux_sym_sym_lit_token1, - ACTIONS(210), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(212), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(214), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(216), 1, - anon_sym_SQUOTE, - ACTIONS(218), 1, - anon_sym_BQUOTE, - ACTIONS(220), 1, - anon_sym_COMMA_AT, - ACTIONS(222), 1, - anon_sym_COMMA, - ACTIONS(557), 1, - anon_sym_LPAREN, - ACTIONS(561), 1, - anon_sym_cl, - STATE(1057), 1, - sym__bare_set_lit, - STATE(1059), 1, - sym_sym_lit, - STATE(2062), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(208), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(229), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(231), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(233), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(1353), 2, - sym__ws, - sym_comment, - ACTIONS(1531), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(1058), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(7), 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, - [24166] = 34, - 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(727), 1, - aux_sym_num_lit_token1, - ACTIONS(729), 1, - anon_sym_COLON, - ACTIONS(731), 1, - anon_sym_COLON_COLON, - ACTIONS(733), 1, - anon_sym_DQUOTE, - ACTIONS(739), 1, - aux_sym_sym_lit_token1, - ACTIONS(741), 1, - anon_sym_LPAREN, - ACTIONS(747), 1, - anon_sym_POUND_QMARK, + ACTIONS(49), 1, + anon_sym_cl, ACTIONS(749), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(751), 1, - anon_sym_POUND_SQUOTE, + aux_sym_num_lit_token1, ACTIONS(753), 1, - anon_sym_SQUOTE, + anon_sym_POUND_SQUOTE, ACTIONS(755), 1, - anon_sym_BQUOTE, + anon_sym_SQUOTE, ACTIONS(757), 1, - anon_sym_COMMA_AT, + anon_sym_BQUOTE, ACTIONS(759), 1, - anon_sym_COMMA, + anon_sym_COMMA_AT, ACTIONS(761), 1, - anon_sym_cl, - ACTIONS(1475), 1, + anon_sym_COMMA, + ACTIONS(1448), 1, anon_sym_POUND, - STATE(1811), 1, + ACTIONS(1452), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(1813), 1, + STATE(1563), 1, sym_sym_lit, - STATE(2036), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(745), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(751), 2, anon_sym_POUND0A, anon_sym_POUND0a, ACTIONS(763), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(765), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(767), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(1533), 3, + ACTIONS(1450), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1657), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1812), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(135), 19, + STATE(1564), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1448), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -31158,7 +21787,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [24298] = 34, + [405] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -31167,76 +21796,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(569), 1, - aux_sym_num_lit_token1, - ACTIONS(571), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(573), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(575), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(581), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(583), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(589), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(591), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(593), 1, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(595), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(597), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(599), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(601), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(603), 1, - anon_sym_cl, - ACTIONS(1387), 1, + ACTIONS(1442), 1, anon_sym_POUND, - STATE(1163), 1, + ACTIONS(1458), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(1186), 1, + STATE(1902), 1, sym__bare_set_lit, - STATE(2027), 1, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(587), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(605), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(607), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(609), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1535), 2, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1454), 2, sym__ws, sym_comment, - ACTIONS(1537), 3, + ACTIONS(1456), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(177), 3, + STATE(237), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1183), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1211), 19, + STATE(1847), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -31256,85 +21887,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [24430] = 34, + [540] = 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(59), 1, - anon_sym_POUND, - ACTIONS(63), 1, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(749), 1, aux_sym_num_lit_token1, - ACTIONS(65), 1, - anon_sym_COLON, - ACTIONS(67), 1, - anon_sym_COLON_COLON, - ACTIONS(69), 1, - anon_sym_DQUOTE, - ACTIONS(71), 1, - aux_sym_sym_lit_token1, - ACTIONS(75), 1, - anon_sym_POUND_QMARK, - ACTIONS(77), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(79), 1, + ACTIONS(753), 1, anon_sym_POUND_SQUOTE, - ACTIONS(81), 1, + ACTIONS(755), 1, anon_sym_SQUOTE, - ACTIONS(83), 1, + ACTIONS(757), 1, anon_sym_BQUOTE, - ACTIONS(85), 1, + ACTIONS(759), 1, anon_sym_COMMA_AT, - ACTIONS(87), 1, + ACTIONS(761), 1, anon_sym_COMMA, - ACTIONS(541), 1, - anon_sym_LPAREN, - ACTIONS(545), 1, - anon_sym_cl, - STATE(877), 1, - sym_sym_lit, - STATE(938), 1, + ACTIONS(1448), 1, + anon_sym_POUND, + ACTIONS(1462), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(2065), 1, + STATE(1563), 1, + sym_sym_lit, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(73), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(91), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(93), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(95), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(751), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(763), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(1539), 3, + ACTIONS(1460), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(939), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(817), 19, + STATE(1447), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -31354,85 +21987,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [24562] = 34, + [675] = 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(59), 1, - anon_sym_POUND, - ACTIONS(63), 1, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(749), 1, aux_sym_num_lit_token1, - ACTIONS(65), 1, - anon_sym_COLON, - ACTIONS(67), 1, - anon_sym_COLON_COLON, - ACTIONS(69), 1, - anon_sym_DQUOTE, - ACTIONS(71), 1, - aux_sym_sym_lit_token1, - ACTIONS(75), 1, - anon_sym_POUND_QMARK, - ACTIONS(77), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(79), 1, + ACTIONS(753), 1, anon_sym_POUND_SQUOTE, - ACTIONS(81), 1, + ACTIONS(755), 1, anon_sym_SQUOTE, - ACTIONS(83), 1, + ACTIONS(757), 1, anon_sym_BQUOTE, - ACTIONS(85), 1, + ACTIONS(759), 1, anon_sym_COMMA_AT, - ACTIONS(87), 1, + ACTIONS(761), 1, anon_sym_COMMA, - ACTIONS(541), 1, - anon_sym_LPAREN, - ACTIONS(545), 1, - anon_sym_cl, - STATE(877), 1, - sym_sym_lit, - STATE(938), 1, + ACTIONS(1448), 1, + anon_sym_POUND, + ACTIONS(1468), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(2065), 1, + STATE(1563), 1, + sym_sym_lit, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(73), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(91), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(93), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(95), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1541), 2, + ACTIONS(751), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(763), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1464), 2, sym__ws, sym_comment, - ACTIONS(1543), 3, + ACTIONS(1466), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(215), 3, + STATE(168), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(939), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(857), 19, + STATE(1466), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -31452,85 +22087,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [24694] = 34, + [810] = 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(775), 1, - aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(749), 1, + aux_sym_num_lit_token1, + ACTIONS(753), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(755), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(757), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(759), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(761), 1, anon_sym_COMMA, - ACTIONS(809), 1, - anon_sym_cl, - ACTIONS(1545), 1, + ACTIONS(1448), 1, anon_sym_POUND, - STATE(1384), 1, + ACTIONS(1472), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(1817), 1, + STATE(1563), 1, sym_sym_lit, - STATE(2037), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(751), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(763), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(1547), 3, + ACTIONS(1470), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1330), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1947), 19, + STATE(1467), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -31550,85 +22187,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [24826] = 34, + [945] = 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(59), 1, - anon_sym_POUND, - ACTIONS(63), 1, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(749), 1, aux_sym_num_lit_token1, - ACTIONS(65), 1, - anon_sym_COLON, - ACTIONS(67), 1, - anon_sym_COLON_COLON, - ACTIONS(69), 1, - anon_sym_DQUOTE, - ACTIONS(71), 1, - aux_sym_sym_lit_token1, - ACTIONS(75), 1, - anon_sym_POUND_QMARK, - ACTIONS(77), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(79), 1, + ACTIONS(753), 1, anon_sym_POUND_SQUOTE, - ACTIONS(81), 1, + ACTIONS(755), 1, anon_sym_SQUOTE, - ACTIONS(83), 1, + ACTIONS(757), 1, anon_sym_BQUOTE, - ACTIONS(85), 1, + ACTIONS(759), 1, anon_sym_COMMA_AT, - ACTIONS(87), 1, + ACTIONS(761), 1, anon_sym_COMMA, - ACTIONS(541), 1, - anon_sym_LPAREN, - ACTIONS(545), 1, - anon_sym_cl, - STATE(877), 1, - sym_sym_lit, - STATE(938), 1, + ACTIONS(1448), 1, + anon_sym_POUND, + ACTIONS(1478), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(2065), 1, + STATE(1563), 1, + sym_sym_lit, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(73), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(91), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(93), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(95), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(751), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(763), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1474), 2, sym__ws, sym_comment, - ACTIONS(1549), 3, + ACTIONS(1476), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(939), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(170), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(855), 19, + STATE(1562), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1474), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -31648,7 +22287,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [24958] = 34, + [1080] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -31657,76 +22296,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, + ACTIONS(590), 1, aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(592), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(594), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(596), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(602), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(604), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(610), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(612), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(614), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(616), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(618), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(620), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(622), 1, anon_sym_COMMA, - ACTIONS(809), 1, + ACTIONS(624), 1, anon_sym_cl, - ACTIONS(1545), 1, + ACTIONS(1480), 1, anon_sym_POUND, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, - sym_sym_lit, - STATE(2037), 1, + ACTIONS(1484), 1, + sym_self_referential_reader_macro, + STATE(2155), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, + STATE(2313), 1, + sym__bare_set_lit, + STATE(2401), 1, + sym_sym_lit, + ACTIONS(608), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(626), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, + ACTIONS(630), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(632), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(1551), 3, + ACTIONS(1482), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1946), 19, + STATE(2315), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2109), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -31746,85 +22387,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [25090] = 34, + [1215] = 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(59), 1, - anon_sym_POUND, - ACTIONS(63), 1, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(749), 1, aux_sym_num_lit_token1, - ACTIONS(65), 1, - anon_sym_COLON, - ACTIONS(67), 1, - anon_sym_COLON_COLON, - ACTIONS(69), 1, - anon_sym_DQUOTE, - ACTIONS(71), 1, - aux_sym_sym_lit_token1, - ACTIONS(75), 1, - anon_sym_POUND_QMARK, - ACTIONS(77), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(79), 1, + ACTIONS(753), 1, anon_sym_POUND_SQUOTE, - ACTIONS(81), 1, + ACTIONS(755), 1, anon_sym_SQUOTE, - ACTIONS(83), 1, + ACTIONS(757), 1, anon_sym_BQUOTE, - ACTIONS(85), 1, + ACTIONS(759), 1, anon_sym_COMMA_AT, - ACTIONS(87), 1, + ACTIONS(761), 1, anon_sym_COMMA, - ACTIONS(541), 1, - anon_sym_LPAREN, - ACTIONS(545), 1, - anon_sym_cl, - STATE(877), 1, - sym_sym_lit, - STATE(938), 1, + ACTIONS(1448), 1, + anon_sym_POUND, + ACTIONS(1488), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(2065), 1, + STATE(1563), 1, + sym_sym_lit, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(73), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(91), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(93), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(95), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(751), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(763), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(1553), 3, + ACTIONS(1486), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(939), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(854), 19, + STATE(1477), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -31844,85 +22487,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [25222] = 34, + [1350] = 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(775), 1, - aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(749), 1, + aux_sym_num_lit_token1, + ACTIONS(753), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(755), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(757), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(759), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(761), 1, anon_sym_COMMA, - ACTIONS(809), 1, - anon_sym_cl, - ACTIONS(1545), 1, + ACTIONS(1448), 1, anon_sym_POUND, - STATE(1384), 1, + ACTIONS(1492), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(1817), 1, + STATE(1563), 1, sym_sym_lit, - STATE(2037), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(751), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(763), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(1555), 3, + ACTIONS(1490), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1330), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1945), 19, + STATE(1486), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -31942,85 +22587,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [25354] = 34, + [1485] = 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(59), 1, - anon_sym_POUND, - ACTIONS(63), 1, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(749), 1, aux_sym_num_lit_token1, - ACTIONS(65), 1, - anon_sym_COLON, - ACTIONS(67), 1, - anon_sym_COLON_COLON, - ACTIONS(69), 1, - anon_sym_DQUOTE, - ACTIONS(71), 1, - aux_sym_sym_lit_token1, - ACTIONS(75), 1, - anon_sym_POUND_QMARK, - ACTIONS(77), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(79), 1, + ACTIONS(753), 1, anon_sym_POUND_SQUOTE, - ACTIONS(81), 1, + ACTIONS(755), 1, anon_sym_SQUOTE, - ACTIONS(83), 1, + ACTIONS(757), 1, anon_sym_BQUOTE, - ACTIONS(85), 1, + ACTIONS(759), 1, anon_sym_COMMA_AT, - ACTIONS(87), 1, + ACTIONS(761), 1, anon_sym_COMMA, - ACTIONS(541), 1, - anon_sym_LPAREN, - ACTIONS(545), 1, - anon_sym_cl, - STATE(877), 1, - sym_sym_lit, - STATE(938), 1, + ACTIONS(1448), 1, + anon_sym_POUND, + ACTIONS(1498), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(2065), 1, + STATE(1563), 1, + sym_sym_lit, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(73), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(91), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(93), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(95), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(751), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(763), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1494), 2, sym__ws, sym_comment, - ACTIONS(1557), 3, + ACTIONS(1496), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(939), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(172), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(853), 19, + STATE(1562), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1491), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -32040,85 +22687,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [25486] = 34, + [1620] = 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(775), 1, - aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(749), 1, + aux_sym_num_lit_token1, + ACTIONS(753), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(755), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(757), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(759), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(761), 1, anon_sym_COMMA, - ACTIONS(809), 1, - anon_sym_cl, - ACTIONS(1545), 1, + ACTIONS(1448), 1, anon_sym_POUND, - STATE(1384), 1, + ACTIONS(1504), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(1817), 1, + STATE(1563), 1, sym_sym_lit, - STATE(2037), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(751), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(811), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(813), 2, + ACTIONS(763), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(815), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(1500), 2, sym__ws, sym_comment, - ACTIONS(1559), 3, + ACTIONS(1502), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(175), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1944), 19, + STATE(1562), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1464), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -32138,85 +22787,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [25618] = 34, + [1755] = 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(59), 1, - anon_sym_POUND, - ACTIONS(63), 1, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(749), 1, aux_sym_num_lit_token1, - ACTIONS(65), 1, - anon_sym_COLON, - ACTIONS(67), 1, - anon_sym_COLON_COLON, - ACTIONS(69), 1, - anon_sym_DQUOTE, - ACTIONS(71), 1, - aux_sym_sym_lit_token1, - ACTIONS(75), 1, - anon_sym_POUND_QMARK, - ACTIONS(77), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(79), 1, + ACTIONS(753), 1, anon_sym_POUND_SQUOTE, - ACTIONS(81), 1, + ACTIONS(755), 1, anon_sym_SQUOTE, - ACTIONS(83), 1, + ACTIONS(757), 1, anon_sym_BQUOTE, - ACTIONS(85), 1, + ACTIONS(759), 1, anon_sym_COMMA_AT, - ACTIONS(87), 1, + ACTIONS(761), 1, anon_sym_COMMA, - ACTIONS(541), 1, - anon_sym_LPAREN, - ACTIONS(545), 1, - anon_sym_cl, - STATE(877), 1, - sym_sym_lit, - STATE(938), 1, + ACTIONS(1448), 1, + anon_sym_POUND, + ACTIONS(1508), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(2065), 1, + STATE(1563), 1, + sym_sym_lit, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(73), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(91), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(93), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(95), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(751), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(763), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(1561), 3, + ACTIONS(1506), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(939), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(852), 19, + STATE(1502), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -32236,85 +22887,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [25750] = 34, + [1890] = 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(775), 1, - aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(749), 1, + aux_sym_num_lit_token1, + ACTIONS(753), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(755), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(757), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(759), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(761), 1, anon_sym_COMMA, - ACTIONS(809), 1, - anon_sym_cl, - ACTIONS(1545), 1, + ACTIONS(1448), 1, anon_sym_POUND, - STATE(1384), 1, + ACTIONS(1512), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(1817), 1, + STATE(1563), 1, sym_sym_lit, - STATE(2037), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(751), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(763), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(1563), 3, + ACTIONS(1510), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1330), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1831), 19, + STATE(1503), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -32334,85 +22987,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [25882] = 34, + [2025] = 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(59), 1, - anon_sym_POUND, - ACTIONS(63), 1, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(749), 1, aux_sym_num_lit_token1, - ACTIONS(65), 1, - anon_sym_COLON, - ACTIONS(67), 1, - anon_sym_COLON_COLON, - ACTIONS(69), 1, - anon_sym_DQUOTE, - ACTIONS(71), 1, - aux_sym_sym_lit_token1, - ACTIONS(75), 1, - anon_sym_POUND_QMARK, - ACTIONS(77), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(79), 1, + ACTIONS(753), 1, anon_sym_POUND_SQUOTE, - ACTIONS(81), 1, + ACTIONS(755), 1, anon_sym_SQUOTE, - ACTIONS(83), 1, + ACTIONS(757), 1, anon_sym_BQUOTE, - ACTIONS(85), 1, + ACTIONS(759), 1, anon_sym_COMMA_AT, - ACTIONS(87), 1, + ACTIONS(761), 1, anon_sym_COMMA, - ACTIONS(541), 1, - anon_sym_LPAREN, - ACTIONS(545), 1, - anon_sym_cl, - STATE(877), 1, - sym_sym_lit, - STATE(938), 1, + ACTIONS(1448), 1, + anon_sym_POUND, + ACTIONS(1516), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(2065), 1, + STATE(1563), 1, + sym_sym_lit, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(73), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(91), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(93), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(95), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(751), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(763), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(1565), 3, + ACTIONS(1514), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(939), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(851), 19, + STATE(1442), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -32432,85 +23087,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [26014] = 34, + [2160] = 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(569), 1, - aux_sym_num_lit_token1, - ACTIONS(571), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(573), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(575), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(581), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(583), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(589), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(591), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(593), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(749), 1, + aux_sym_num_lit_token1, + ACTIONS(753), 1, anon_sym_POUND_SQUOTE, - ACTIONS(595), 1, + ACTIONS(755), 1, anon_sym_SQUOTE, - ACTIONS(597), 1, + ACTIONS(757), 1, anon_sym_BQUOTE, - ACTIONS(599), 1, + ACTIONS(759), 1, anon_sym_COMMA_AT, - ACTIONS(601), 1, + ACTIONS(761), 1, anon_sym_COMMA, - ACTIONS(603), 1, - anon_sym_cl, - ACTIONS(1387), 1, + ACTIONS(1448), 1, anon_sym_POUND, - STATE(1163), 1, - sym_sym_lit, - STATE(1186), 1, + ACTIONS(1522), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(2027), 1, + STATE(1563), 1, + sym_sym_lit, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(587), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(605), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(607), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(609), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(751), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(763), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1518), 2, sym__ws, sym_comment, - ACTIONS(1567), 3, + ACTIONS(1520), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1183), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(176), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1232), 19, + STATE(1562), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1507), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -32530,85 +23187,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [26146] = 34, + [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(617), 1, - aux_sym_num_lit_token1, - ACTIONS(619), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(621), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(623), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(629), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(631), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(639), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(641), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(749), 1, + aux_sym_num_lit_token1, + ACTIONS(753), 1, anon_sym_POUND_SQUOTE, - ACTIONS(643), 1, + ACTIONS(755), 1, anon_sym_SQUOTE, - ACTIONS(645), 1, + ACTIONS(757), 1, anon_sym_BQUOTE, - ACTIONS(647), 1, + ACTIONS(759), 1, anon_sym_COMMA_AT, - ACTIONS(649), 1, + ACTIONS(761), 1, anon_sym_COMMA, - ACTIONS(651), 1, - anon_sym_cl, - ACTIONS(1569), 1, + ACTIONS(1448), 1, anon_sym_POUND, - STATE(2064), 1, + ACTIONS(1526), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, + sym__bare_set_lit, + STATE(1563), 1, + sym_sym_lit, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2333), 1, - sym__bare_set_lit, - STATE(2344), 1, - sym_sym_lit, - ACTIONS(635), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(653), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(655), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(657), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(751), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(763), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(1571), 3, + ACTIONS(1524), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1657), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2332), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2250), 19, + STATE(1564), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1508), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -32628,85 +23287,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [26278] = 34, + [2430] = 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(59), 1, - anon_sym_POUND, - ACTIONS(63), 1, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(749), 1, aux_sym_num_lit_token1, - ACTIONS(65), 1, - anon_sym_COLON, - ACTIONS(67), 1, - anon_sym_COLON_COLON, - ACTIONS(69), 1, - anon_sym_DQUOTE, - ACTIONS(71), 1, - aux_sym_sym_lit_token1, - ACTIONS(75), 1, - anon_sym_POUND_QMARK, - ACTIONS(77), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(79), 1, + ACTIONS(753), 1, anon_sym_POUND_SQUOTE, - ACTIONS(81), 1, + ACTIONS(755), 1, anon_sym_SQUOTE, - ACTIONS(83), 1, + ACTIONS(757), 1, anon_sym_BQUOTE, - ACTIONS(85), 1, + ACTIONS(759), 1, anon_sym_COMMA_AT, - ACTIONS(87), 1, + ACTIONS(761), 1, anon_sym_COMMA, - ACTIONS(541), 1, - anon_sym_LPAREN, - ACTIONS(545), 1, - anon_sym_cl, - STATE(877), 1, - sym_sym_lit, - STATE(938), 1, + ACTIONS(1448), 1, + anon_sym_POUND, + ACTIONS(1532), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(2065), 1, + STATE(1563), 1, + sym_sym_lit, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(73), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(91), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(93), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(95), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1573), 2, + ACTIONS(751), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(763), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1528), 2, sym__ws, sym_comment, - ACTIONS(1575), 3, + ACTIONS(1530), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(229), 3, + STATE(179), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(939), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(836), 19, + STATE(1515), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -32726,85 +23387,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [26410] = 34, + [2565] = 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(59), 1, - anon_sym_POUND, - ACTIONS(63), 1, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(749), 1, aux_sym_num_lit_token1, - ACTIONS(65), 1, - anon_sym_COLON, - ACTIONS(67), 1, - anon_sym_COLON_COLON, - ACTIONS(69), 1, - anon_sym_DQUOTE, - ACTIONS(71), 1, - aux_sym_sym_lit_token1, - ACTIONS(75), 1, - anon_sym_POUND_QMARK, - ACTIONS(77), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(79), 1, + ACTIONS(753), 1, anon_sym_POUND_SQUOTE, - ACTIONS(81), 1, + ACTIONS(755), 1, anon_sym_SQUOTE, - ACTIONS(83), 1, + ACTIONS(757), 1, anon_sym_BQUOTE, - ACTIONS(85), 1, + ACTIONS(759), 1, anon_sym_COMMA_AT, - ACTIONS(87), 1, + ACTIONS(761), 1, anon_sym_COMMA, - ACTIONS(541), 1, - anon_sym_LPAREN, - ACTIONS(545), 1, - anon_sym_cl, - STATE(877), 1, - sym_sym_lit, - STATE(938), 1, + ACTIONS(1448), 1, + anon_sym_POUND, + ACTIONS(1538), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(2065), 1, + STATE(1563), 1, + sym_sym_lit, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(73), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(91), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(93), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(95), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1577), 2, + ACTIONS(751), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(763), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1534), 2, sym__ws, sym_comment, - ACTIONS(1579), 3, + ACTIONS(1536), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(231), 3, + STATE(180), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(939), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(835), 19, + STATE(1516), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -32824,85 +23487,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [26542] = 34, + [2700] = 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(59), 1, - anon_sym_POUND, - ACTIONS(63), 1, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(749), 1, aux_sym_num_lit_token1, - ACTIONS(65), 1, - anon_sym_COLON, - ACTIONS(67), 1, - anon_sym_COLON_COLON, - ACTIONS(69), 1, - anon_sym_DQUOTE, - ACTIONS(71), 1, - aux_sym_sym_lit_token1, - ACTIONS(75), 1, - anon_sym_POUND_QMARK, - ACTIONS(77), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(79), 1, + ACTIONS(753), 1, anon_sym_POUND_SQUOTE, - ACTIONS(81), 1, + ACTIONS(755), 1, anon_sym_SQUOTE, - ACTIONS(83), 1, + ACTIONS(757), 1, anon_sym_BQUOTE, - ACTIONS(85), 1, + ACTIONS(759), 1, anon_sym_COMMA_AT, - ACTIONS(87), 1, + ACTIONS(761), 1, anon_sym_COMMA, - ACTIONS(541), 1, - anon_sym_LPAREN, - ACTIONS(545), 1, - anon_sym_cl, - STATE(877), 1, - sym_sym_lit, - STATE(938), 1, + ACTIONS(1448), 1, + anon_sym_POUND, + ACTIONS(1544), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(2065), 1, + STATE(1563), 1, + sym_sym_lit, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(73), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(91), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(93), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(95), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1581), 2, + ACTIONS(751), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(763), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1540), 2, sym__ws, sym_comment, - ACTIONS(1583), 3, + ACTIONS(1542), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(233), 3, + STATE(181), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(939), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(834), 19, + STATE(1517), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -32922,85 +23587,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [26674] = 34, + [2835] = 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(59), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(63), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(65), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(67), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(69), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(71), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(75), 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(77), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(79), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(81), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(83), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(85), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(87), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(541), 1, - anon_sym_LPAREN, - ACTIONS(545), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - STATE(877), 1, - sym_sym_lit, - STATE(938), 1, + ACTIONS(1526), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(2065), 1, + STATE(1563), 1, + sym_sym_lit, + STATE(2153), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(73), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(91), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(93), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(95), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1585), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(1587), 3, + ACTIONS(1524), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(235), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(939), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(833), 19, + STATE(1564), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1508), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -33020,85 +23687,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [26806] = 34, + [2970] = 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(59), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(63), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(65), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(67), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(69), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(71), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(75), 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(77), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(79), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(81), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(83), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(85), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(87), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(541), 1, - anon_sym_LPAREN, - ACTIONS(545), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - STATE(877), 1, - sym_sym_lit, - STATE(938), 1, + ACTIONS(1522), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(2065), 1, + STATE(1563), 1, + sym_sym_lit, + STATE(2153), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(73), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(91), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(93), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(95), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1589), 2, + ACTIONS(1546), 2, sym__ws, sym_comment, - ACTIONS(1591), 3, + ACTIONS(1520), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(237), 3, + STATE(251), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(939), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(832), 19, + STATE(1507), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -33118,85 +23787,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [26938] = 34, + [3105] = 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(569), 1, - aux_sym_num_lit_token1, - ACTIONS(571), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(573), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(575), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(581), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(583), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(589), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(591), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(593), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(749), 1, + aux_sym_num_lit_token1, + ACTIONS(753), 1, anon_sym_POUND_SQUOTE, - ACTIONS(595), 1, + ACTIONS(755), 1, anon_sym_SQUOTE, - ACTIONS(597), 1, + ACTIONS(757), 1, anon_sym_BQUOTE, - ACTIONS(599), 1, + ACTIONS(759), 1, anon_sym_COMMA_AT, - ACTIONS(601), 1, + ACTIONS(761), 1, anon_sym_COMMA, - ACTIONS(603), 1, - anon_sym_cl, - ACTIONS(1387), 1, + ACTIONS(1448), 1, anon_sym_POUND, - STATE(1163), 1, - sym_sym_lit, - STATE(1186), 1, + ACTIONS(1552), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(2027), 1, + STATE(1563), 1, + sym_sym_lit, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(587), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(605), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(607), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(609), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(751), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(763), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1548), 2, sym__ws, sym_comment, - ACTIONS(1593), 3, + ACTIONS(1550), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1183), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(183), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1220), 19, + STATE(1562), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1522), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -33216,7 +23887,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [27070] = 34, + [3240] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -33225,76 +23896,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(569), 1, - aux_sym_num_lit_token1, - ACTIONS(571), 1, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(592), 1, anon_sym_COLON, - ACTIONS(573), 1, + ACTIONS(594), 1, anon_sym_COLON_COLON, - ACTIONS(575), 1, + ACTIONS(596), 1, anon_sym_DQUOTE, - ACTIONS(581), 1, + ACTIONS(602), 1, aux_sym_sym_lit_token1, - ACTIONS(583), 1, - anon_sym_LPAREN, - ACTIONS(589), 1, + ACTIONS(624), 1, + anon_sym_cl, + ACTIONS(729), 1, + aux_sym_num_lit_token1, + ACTIONS(733), 1, anon_sym_POUND_QMARK, - ACTIONS(591), 1, + ACTIONS(735), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(593), 1, + ACTIONS(737), 1, anon_sym_POUND_SQUOTE, - ACTIONS(595), 1, + ACTIONS(739), 1, anon_sym_SQUOTE, - ACTIONS(597), 1, + ACTIONS(741), 1, anon_sym_BQUOTE, - ACTIONS(599), 1, + ACTIONS(743), 1, anon_sym_COMMA_AT, - ACTIONS(601), 1, + ACTIONS(745), 1, anon_sym_COMMA, - ACTIONS(603), 1, - anon_sym_cl, - ACTIONS(1387), 1, + ACTIONS(1554), 1, anon_sym_POUND, - STATE(1163), 1, - sym_sym_lit, - STATE(1186), 1, - sym__bare_set_lit, - STATE(2027), 1, + ACTIONS(1558), 1, + sym_self_referential_reader_macro, + STATE(2146), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(587), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(605), 2, + STATE(2313), 1, + sym__bare_set_lit, + STATE(2401), 1, + sym_sym_lit, + ACTIONS(626), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(607), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(609), 2, + ACTIONS(632), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1595), 2, + ACTIONS(731), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(747), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(1597), 3, + ACTIONS(1556), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(310), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1183), 3, + STATE(2315), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1219), 19, + STATE(2243), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -33314,85 +23987,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [27202] = 34, + [3375] = 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(727), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(729), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(731), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(733), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(739), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(741), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(747), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(749), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(751), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(753), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(755), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(757), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(759), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(761), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(1475), 1, - anon_sym_POUND, - STATE(1811), 1, + ACTIONS(1564), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(1813), 1, + STATE(1563), 1, sym_sym_lit, - STATE(2036), 1, + STATE(2153), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(745), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(763), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(765), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(767), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(1560), 2, sym__ws, sym_comment, - ACTIONS(1599), 3, + ACTIONS(1562), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1657), 3, + STATE(294), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1812), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1721), 19, + STATE(704), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -33412,85 +24087,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [27334] = 34, + [3510] = 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(727), 1, - aux_sym_num_lit_token1, - ACTIONS(729), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(731), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(733), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(739), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(741), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(747), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(749), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(751), 1, - anon_sym_POUND_SQUOTE, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(749), 1, + aux_sym_num_lit_token1, ACTIONS(753), 1, - anon_sym_SQUOTE, + anon_sym_POUND_SQUOTE, ACTIONS(755), 1, - anon_sym_BQUOTE, + anon_sym_SQUOTE, ACTIONS(757), 1, - anon_sym_COMMA_AT, + anon_sym_BQUOTE, ACTIONS(759), 1, - anon_sym_COMMA, + anon_sym_COMMA_AT, ACTIONS(761), 1, - anon_sym_cl, - ACTIONS(1475), 1, + anon_sym_COMMA, + ACTIONS(1448), 1, anon_sym_POUND, - STATE(1811), 1, + ACTIONS(1568), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(1813), 1, + STATE(1563), 1, sym_sym_lit, - STATE(2036), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(745), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(751), 2, anon_sym_POUND0A, anon_sym_POUND0a, ACTIONS(763), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(765), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(767), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(1601), 3, + ACTIONS(1566), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1657), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1812), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1722), 19, + STATE(1564), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1524), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -33510,85 +24187,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [27466] = 34, + [3645] = 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(727), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(729), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(731), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(733), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(739), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(741), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(747), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(749), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(751), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(753), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(755), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(757), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(759), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(761), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(1475), 1, - anon_sym_POUND, - STATE(1811), 1, + ACTIONS(1574), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(1813), 1, + STATE(1563), 1, sym_sym_lit, - STATE(2036), 1, + STATE(2153), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(745), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(763), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(765), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(767), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1603), 2, + ACTIONS(1570), 2, sym__ws, sym_comment, - ACTIONS(1605), 3, + ACTIONS(1572), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(247), 3, + STATE(296), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1812), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1728), 19, + STATE(708), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -33608,85 +24287,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [27598] = 34, + [3780] = 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(727), 1, - aux_sym_num_lit_token1, - ACTIONS(729), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(731), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(733), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(739), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(741), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(747), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(749), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(751), 1, - anon_sym_POUND_SQUOTE, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(749), 1, + aux_sym_num_lit_token1, ACTIONS(753), 1, - anon_sym_SQUOTE, + anon_sym_POUND_SQUOTE, ACTIONS(755), 1, - anon_sym_BQUOTE, + anon_sym_SQUOTE, ACTIONS(757), 1, - anon_sym_COMMA_AT, + anon_sym_BQUOTE, ACTIONS(759), 1, - anon_sym_COMMA, + anon_sym_COMMA_AT, ACTIONS(761), 1, - anon_sym_cl, - ACTIONS(1475), 1, + anon_sym_COMMA, + ACTIONS(1448), 1, anon_sym_POUND, - STATE(1811), 1, + ACTIONS(1578), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(1813), 1, + STATE(1563), 1, sym_sym_lit, - STATE(2036), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(745), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(751), 2, anon_sym_POUND0A, anon_sym_POUND0a, ACTIONS(763), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(765), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(767), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(1607), 3, + ACTIONS(1576), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1657), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1812), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1729), 19, + STATE(1564), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1525), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -33706,7 +24387,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [27730] = 34, + [3915] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -33745,17 +24426,19 @@ static uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - STATE(1608), 1, + ACTIONS(1582), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(1610), 1, + STATE(1563), 1, sym_sym_lit, - STATE(2052), 1, + STATE(2153), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -33763,28 +24446,28 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(53), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(55), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(1609), 3, + ACTIONS(1580), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1609), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1626), 19, + STATE(779), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -33804,85 +24487,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [27862] = 34, + [4050] = 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(727), 1, - aux_sym_num_lit_token1, - ACTIONS(729), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(731), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(733), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(739), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(741), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(747), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(749), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(751), 1, - anon_sym_POUND_SQUOTE, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(749), 1, + aux_sym_num_lit_token1, ACTIONS(753), 1, - anon_sym_SQUOTE, + anon_sym_POUND_SQUOTE, ACTIONS(755), 1, - anon_sym_BQUOTE, + anon_sym_SQUOTE, ACTIONS(757), 1, - anon_sym_COMMA_AT, + anon_sym_BQUOTE, ACTIONS(759), 1, - anon_sym_COMMA, + anon_sym_COMMA_AT, ACTIONS(761), 1, - anon_sym_cl, - ACTIONS(1475), 1, + anon_sym_COMMA, + ACTIONS(1448), 1, anon_sym_POUND, - STATE(1811), 1, + ACTIONS(1586), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(1813), 1, + STATE(1563), 1, sym_sym_lit, - STATE(2036), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(745), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(751), 2, anon_sym_POUND0A, anon_sym_POUND0a, ACTIONS(763), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(765), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(767), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(1611), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(1613), 3, + ACTIONS(1584), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(248), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1812), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1730), 19, + STATE(1564), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1526), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -33902,85 +24587,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [27994] = 34, + [4185] = 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(727), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(729), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(731), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(733), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(739), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(741), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(747), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(749), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(751), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(753), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(755), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(757), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(759), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(761), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(1475), 1, - anon_sym_POUND, - STATE(1811), 1, + ACTIONS(1516), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(1813), 1, + STATE(1563), 1, sym_sym_lit, - STATE(2036), 1, + STATE(2153), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(745), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(763), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(765), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(767), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(1615), 3, + ACTIONS(1514), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1657), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1812), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1731), 19, + STATE(1564), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1442), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -34000,85 +24687,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [28126] = 34, + [4320] = 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(727), 1, - aux_sym_num_lit_token1, - ACTIONS(729), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(731), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(733), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(739), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(741), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(747), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(749), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(751), 1, - anon_sym_POUND_SQUOTE, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(749), 1, + aux_sym_num_lit_token1, ACTIONS(753), 1, - anon_sym_SQUOTE, + anon_sym_POUND_SQUOTE, ACTIONS(755), 1, - anon_sym_BQUOTE, + anon_sym_SQUOTE, ACTIONS(757), 1, - anon_sym_COMMA_AT, + anon_sym_BQUOTE, ACTIONS(759), 1, - anon_sym_COMMA, + anon_sym_COMMA_AT, ACTIONS(761), 1, - anon_sym_cl, - ACTIONS(1475), 1, + anon_sym_COMMA, + ACTIONS(1448), 1, anon_sym_POUND, - STATE(1811), 1, + ACTIONS(1590), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(1813), 1, + STATE(1563), 1, sym_sym_lit, - STATE(2036), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(745), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(751), 2, anon_sym_POUND0A, anon_sym_POUND0a, ACTIONS(763), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(765), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(767), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(1617), 3, + ACTIONS(1588), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1657), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1812), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1733), 19, + STATE(1564), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1527), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -34098,85 +24787,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [28258] = 34, + [4455] = 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(727), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(729), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(731), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(733), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(739), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(741), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(747), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(749), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(751), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(753), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(755), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(757), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(759), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(761), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(1475), 1, - anon_sym_POUND, - STATE(1811), 1, + ACTIONS(1512), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(1813), 1, + STATE(1563), 1, sym_sym_lit, - STATE(2036), 1, + STATE(2153), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(745), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(763), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(765), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(767), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1619), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(1621), 3, + ACTIONS(1510), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(250), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1812), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1738), 19, + STATE(1564), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1503), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -34196,85 +24887,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [28390] = 34, + [4590] = 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(727), 1, - aux_sym_num_lit_token1, - ACTIONS(729), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(731), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(733), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(739), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(741), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(747), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(749), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(751), 1, - anon_sym_POUND_SQUOTE, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(749), 1, + aux_sym_num_lit_token1, ACTIONS(753), 1, - anon_sym_SQUOTE, + anon_sym_POUND_SQUOTE, ACTIONS(755), 1, - anon_sym_BQUOTE, + anon_sym_SQUOTE, ACTIONS(757), 1, - anon_sym_COMMA_AT, + anon_sym_BQUOTE, ACTIONS(759), 1, - anon_sym_COMMA, + anon_sym_COMMA_AT, ACTIONS(761), 1, - anon_sym_cl, - ACTIONS(1475), 1, + anon_sym_COMMA, + ACTIONS(1448), 1, anon_sym_POUND, - STATE(1811), 1, + ACTIONS(1594), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(1813), 1, + STATE(1563), 1, sym_sym_lit, - STATE(2036), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(745), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(751), 2, anon_sym_POUND0A, anon_sym_POUND0a, ACTIONS(763), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(765), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(767), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(1623), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(1625), 3, + ACTIONS(1592), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(253), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1812), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1739), 19, + STATE(1564), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1528), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -34294,85 +24987,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [28522] = 34, + [4725] = 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(727), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(729), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(731), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(733), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(739), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(741), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(747), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(749), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(751), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(753), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(755), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(757), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(759), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(761), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(1475), 1, - anon_sym_POUND, - STATE(1811), 1, + ACTIONS(1508), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(1813), 1, + STATE(1563), 1, sym_sym_lit, - STATE(2036), 1, + STATE(2153), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(745), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(763), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(765), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(767), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(1627), 3, + ACTIONS(1506), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1657), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1812), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1742), 19, + STATE(1564), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1502), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -34392,85 +25087,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [28654] = 34, + [4860] = 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(727), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(729), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(731), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(733), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(739), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(741), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(747), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(749), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(751), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(753), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(755), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(757), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(759), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(761), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(1475), 1, - anon_sym_POUND, - STATE(1811), 1, + ACTIONS(1504), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(1813), 1, + STATE(1563), 1, sym_sym_lit, - STATE(2036), 1, + STATE(2153), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(745), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(763), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(765), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(767), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(1596), 2, sym__ws, sym_comment, - ACTIONS(1629), 3, + ACTIONS(1502), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1657), 3, + STATE(261), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1812), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1743), 19, + STATE(1464), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -34490,85 +25187,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [28786] = 34, + [4995] = 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(727), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(729), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(731), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(733), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(739), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(741), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(747), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(749), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(751), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(753), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(755), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(757), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(759), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(761), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(1475), 1, - anon_sym_POUND, - STATE(1811), 1, + ACTIONS(1600), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(1813), 1, + STATE(1563), 1, sym_sym_lit, - STATE(2036), 1, + STATE(2153), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(745), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(763), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(765), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(767), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(1631), 3, + ACTIONS(1598), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1657), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1812), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1744), 19, + STATE(1564), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(262), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -34588,85 +25287,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [28918] = 34, + [5130] = 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(727), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(729), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(731), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(733), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(739), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(741), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(747), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(749), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(751), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(753), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(755), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(757), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(759), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(761), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(1475), 1, - anon_sym_POUND, - STATE(1811), 1, + ACTIONS(1498), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(1813), 1, + STATE(1563), 1, sym_sym_lit, - STATE(2036), 1, + STATE(2153), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(745), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(763), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(765), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(767), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1633), 2, + ACTIONS(1602), 2, sym__ws, sym_comment, - ACTIONS(1635), 3, + ACTIONS(1496), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(254), 3, + STATE(264), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1812), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1753), 19, + STATE(1491), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -34686,7 +25387,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [29050] = 34, + [5265] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -34725,17 +25426,19 @@ static uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - STATE(1608), 1, + ACTIONS(1606), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(1610), 1, + STATE(1563), 1, sym_sym_lit, - STATE(2052), 1, + STATE(2153), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -34743,28 +25446,28 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(53), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(55), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(1637), 3, + ACTIONS(1604), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1609), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1573), 19, + STATE(265), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -34784,85 +25487,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [29182] = 34, + [5400] = 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(855), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(857), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(859), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(861), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(867), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(869), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(875), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(877), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(879), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(881), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(883), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(885), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(887), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(889), 1, anon_sym_cl, - STATE(1608), 1, + ACTIONS(1608), 1, + anon_sym_POUND, + ACTIONS(1612), 1, + sym_self_referential_reader_macro, + STATE(1793), 1, sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, + STATE(2138), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2224), 1, + sym_sym_lit, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(312), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, + ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1639), 2, + ACTIONS(873), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(893), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(1641), 3, + ACTIONS(1610), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(345), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1609), 3, + STATE(1792), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1563), 19, + STATE(2148), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -34882,85 +25587,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [29314] = 34, + [5535] = 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(727), 1, - aux_sym_num_lit_token1, - ACTIONS(729), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(731), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(733), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(739), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(741), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(747), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(749), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(751), 1, - anon_sym_POUND_SQUOTE, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(749), 1, + aux_sym_num_lit_token1, ACTIONS(753), 1, - anon_sym_SQUOTE, + anon_sym_POUND_SQUOTE, ACTIONS(755), 1, - anon_sym_BQUOTE, + anon_sym_SQUOTE, ACTIONS(757), 1, - anon_sym_COMMA_AT, + anon_sym_BQUOTE, ACTIONS(759), 1, - anon_sym_COMMA, + anon_sym_COMMA_AT, ACTIONS(761), 1, - anon_sym_cl, - ACTIONS(1475), 1, + anon_sym_COMMA, + ACTIONS(1448), 1, anon_sym_POUND, - STATE(1811), 1, + ACTIONS(1618), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(1813), 1, + STATE(1563), 1, sym_sym_lit, - STATE(2036), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(745), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(751), 2, anon_sym_POUND0A, anon_sym_POUND0a, ACTIONS(763), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(765), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(767), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(1614), 2, sym__ws, sym_comment, - ACTIONS(1643), 3, + ACTIONS(1616), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1657), 3, + STATE(192), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1812), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1760), 19, + STATE(1543), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -34980,13 +25687,9 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [29446] = 34, + [5670] = 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, @@ -35005,60 +25708,66 @@ static 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(749), 1, + aux_sym_num_lit_token1, + ACTIONS(753), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(755), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(757), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(759), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(761), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - STATE(1608), 1, + ACTIONS(1448), 1, + anon_sym_POUND, + ACTIONS(1624), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(1610), 1, + STATE(1563), 1, sym_sym_lit, - STATE(2052), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(751), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(763), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1620), 2, sym__ws, sym_comment, - ACTIONS(1645), 3, + ACTIONS(1622), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(194), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1561), 19, + STATE(1562), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1544), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -35078,13 +25787,9 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [29578] = 34, + [5805] = 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, @@ -35103,60 +25808,66 @@ static 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(749), 1, + aux_sym_num_lit_token1, + ACTIONS(753), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(755), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(757), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(759), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(761), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - STATE(1608), 1, + ACTIONS(1448), 1, + anon_sym_POUND, + ACTIONS(1630), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(1610), 1, + STATE(1563), 1, sym_sym_lit, - STATE(2052), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1647), 2, + ACTIONS(751), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(763), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1626), 2, sym__ws, sym_comment, - ACTIONS(1649), 3, + ACTIONS(1628), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(348), 3, + STATE(196), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1609), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1560), 19, + STATE(1545), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -35176,7 +25887,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [29710] = 34, + [5940] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -35215,17 +25926,19 @@ static uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - STATE(1608), 1, + ACTIONS(1636), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(1610), 1, + STATE(1563), 1, sym_sym_lit, - STATE(2052), 1, + STATE(2153), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -35233,28 +25946,28 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(53), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(55), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1651), 2, + ACTIONS(1632), 2, sym__ws, sym_comment, - ACTIONS(1653), 3, + ACTIONS(1634), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(214), 3, + STATE(195), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1609), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(208), 19, + STATE(657), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -35274,85 +25987,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [29842] = 34, + [6075] = 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(190), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(194), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(196), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(198), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(200), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(202), 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(217), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(219), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(221), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(223), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(225), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(227), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(229), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(576), 1, + anon_sym_LPAREN, + ACTIONS(580), 1, anon_sym_cl, - STATE(1608), 1, + ACTIONS(1642), 1, + sym_self_referential_reader_macro, + STATE(1077), 1, sym__bare_set_lit, - STATE(1610), 1, + STATE(1079), 1, sym_sym_lit, - STATE(2052), 1, + STATE(2137), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(215), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(236), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(53), 2, + ACTIONS(240), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(55), 2, + ACTIONS(242), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1655), 2, + ACTIONS(1638), 2, sym__ws, sym_comment, - ACTIONS(1657), 3, + ACTIONS(1640), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(216), 3, + STATE(534), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1609), 3, + STATE(1078), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(209), 19, + STATE(1076), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -35372,13 +26087,9 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [29974] = 34, + [6210] = 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, @@ -35397,60 +26108,66 @@ static 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(749), 1, + aux_sym_num_lit_token1, + ACTIONS(753), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(755), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(757), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(759), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(761), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - STATE(1608), 1, + ACTIONS(1448), 1, + anon_sym_POUND, + ACTIONS(1648), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(1610), 1, + STATE(1563), 1, sym_sym_lit, - STATE(2052), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(751), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(763), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1644), 2, sym__ws, sym_comment, - ACTIONS(1659), 3, + ACTIONS(1646), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(198), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(213), 19, + STATE(1562), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1546), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -35470,85 +26187,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [30106] = 34, + [6345] = 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(775), 1, - aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(749), 1, + aux_sym_num_lit_token1, + ACTIONS(753), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(755), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(757), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(759), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(761), 1, anon_sym_COMMA, - ACTIONS(809), 1, - anon_sym_cl, - ACTIONS(1545), 1, + ACTIONS(1448), 1, anon_sym_POUND, - STATE(1384), 1, + ACTIONS(1654), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(1817), 1, + STATE(1563), 1, sym_sym_lit, - STATE(2037), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1661), 2, + ACTIONS(751), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(763), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1650), 2, sym__ws, sym_comment, - ACTIONS(1663), 3, + ACTIONS(1652), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(228), 3, + STATE(200), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1330), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1968), 19, + STATE(1547), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -35568,7 +26287,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [30238] = 34, + [6480] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -35577,76 +26296,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(727), 1, - aux_sym_num_lit_token1, - ACTIONS(729), 1, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(592), 1, anon_sym_COLON, - ACTIONS(731), 1, + ACTIONS(594), 1, anon_sym_COLON_COLON, - ACTIONS(733), 1, + ACTIONS(596), 1, anon_sym_DQUOTE, - ACTIONS(739), 1, + ACTIONS(602), 1, aux_sym_sym_lit_token1, - ACTIONS(741), 1, - anon_sym_LPAREN, - ACTIONS(747), 1, + ACTIONS(624), 1, + anon_sym_cl, + ACTIONS(729), 1, + aux_sym_num_lit_token1, + ACTIONS(733), 1, anon_sym_POUND_QMARK, - ACTIONS(749), 1, + ACTIONS(735), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(751), 1, + ACTIONS(737), 1, anon_sym_POUND_SQUOTE, - ACTIONS(753), 1, + ACTIONS(739), 1, anon_sym_SQUOTE, - ACTIONS(755), 1, + ACTIONS(741), 1, anon_sym_BQUOTE, - ACTIONS(757), 1, + ACTIONS(743), 1, anon_sym_COMMA_AT, - ACTIONS(759), 1, + ACTIONS(745), 1, anon_sym_COMMA, - ACTIONS(761), 1, - anon_sym_cl, - ACTIONS(1475), 1, + ACTIONS(1554), 1, anon_sym_POUND, - STATE(1811), 1, - sym__bare_set_lit, - STATE(1813), 1, - sym_sym_lit, - STATE(2036), 1, + ACTIONS(1660), 1, + sym_self_referential_reader_macro, + STATE(2146), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(745), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(763), 2, + STATE(2313), 1, + sym__bare_set_lit, + STATE(2401), 1, + sym_sym_lit, + ACTIONS(626), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(765), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(767), 2, + ACTIONS(632), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(731), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(747), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1656), 2, sym__ws, sym_comment, - ACTIONS(1665), 3, + ACTIONS(1658), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1657), 3, + STATE(278), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1812), 3, + STATE(2315), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1790), 19, + STATE(2242), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -35666,7 +26387,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [30370] = 34, + [6615] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -35675,76 +26396,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(569), 1, - aux_sym_num_lit_token1, - ACTIONS(571), 1, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(592), 1, anon_sym_COLON, - ACTIONS(573), 1, + ACTIONS(594), 1, anon_sym_COLON_COLON, - ACTIONS(575), 1, + ACTIONS(596), 1, anon_sym_DQUOTE, - ACTIONS(581), 1, + ACTIONS(602), 1, aux_sym_sym_lit_token1, - ACTIONS(583), 1, - anon_sym_LPAREN, - ACTIONS(589), 1, + ACTIONS(624), 1, + anon_sym_cl, + ACTIONS(729), 1, + aux_sym_num_lit_token1, + ACTIONS(733), 1, anon_sym_POUND_QMARK, - ACTIONS(591), 1, + ACTIONS(735), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(593), 1, + ACTIONS(737), 1, anon_sym_POUND_SQUOTE, - ACTIONS(595), 1, + ACTIONS(739), 1, anon_sym_SQUOTE, - ACTIONS(597), 1, + ACTIONS(741), 1, anon_sym_BQUOTE, - ACTIONS(599), 1, + ACTIONS(743), 1, anon_sym_COMMA_AT, - ACTIONS(601), 1, + ACTIONS(745), 1, anon_sym_COMMA, - ACTIONS(603), 1, - anon_sym_cl, - ACTIONS(1387), 1, + ACTIONS(1554), 1, anon_sym_POUND, - STATE(1163), 1, - sym_sym_lit, - STATE(1186), 1, - sym__bare_set_lit, - STATE(2027), 1, + ACTIONS(1664), 1, + sym_self_referential_reader_macro, + STATE(2146), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(587), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(605), 2, + STATE(2313), 1, + sym__bare_set_lit, + STATE(2401), 1, + sym_sym_lit, + ACTIONS(626), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(607), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(609), 2, + ACTIONS(632), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1667), 2, + ACTIONS(731), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(747), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(1669), 3, + ACTIONS(1662), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(537), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1183), 3, + STATE(2315), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1213), 19, + STATE(2258), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -35764,7 +26487,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [30502] = 34, + [6750] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -35773,76 +26496,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(727), 1, - aux_sym_num_lit_token1, - ACTIONS(729), 1, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(592), 1, anon_sym_COLON, - ACTIONS(731), 1, + ACTIONS(594), 1, anon_sym_COLON_COLON, - ACTIONS(733), 1, + ACTIONS(596), 1, anon_sym_DQUOTE, - ACTIONS(739), 1, + ACTIONS(602), 1, aux_sym_sym_lit_token1, - ACTIONS(741), 1, - anon_sym_LPAREN, - ACTIONS(747), 1, + ACTIONS(624), 1, + anon_sym_cl, + ACTIONS(729), 1, + aux_sym_num_lit_token1, + ACTIONS(733), 1, anon_sym_POUND_QMARK, - ACTIONS(749), 1, + ACTIONS(735), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(751), 1, + ACTIONS(737), 1, anon_sym_POUND_SQUOTE, - ACTIONS(753), 1, + ACTIONS(739), 1, anon_sym_SQUOTE, - ACTIONS(755), 1, + ACTIONS(741), 1, anon_sym_BQUOTE, - ACTIONS(757), 1, + ACTIONS(743), 1, anon_sym_COMMA_AT, - ACTIONS(759), 1, + ACTIONS(745), 1, anon_sym_COMMA, - ACTIONS(761), 1, - anon_sym_cl, - ACTIONS(1475), 1, + ACTIONS(1554), 1, anon_sym_POUND, - STATE(1811), 1, - sym__bare_set_lit, - STATE(1813), 1, - sym_sym_lit, - STATE(2036), 1, + ACTIONS(1670), 1, + sym_self_referential_reader_macro, + STATE(2146), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(745), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(763), 2, + STATE(2313), 1, + sym__bare_set_lit, + STATE(2401), 1, + sym_sym_lit, + ACTIONS(626), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(765), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(767), 2, + ACTIONS(632), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1671), 2, + ACTIONS(731), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(747), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1666), 2, sym__ws, sym_comment, - ACTIONS(1673), 3, + ACTIONS(1668), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(257), 3, + STATE(215), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1812), 3, + STATE(2315), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1767), 19, + STATE(2244), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -35862,7 +26587,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [30634] = 34, + [6885] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -35871,76 +26596,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(727), 1, - aux_sym_num_lit_token1, - ACTIONS(729), 1, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(592), 1, anon_sym_COLON, - ACTIONS(731), 1, + ACTIONS(594), 1, anon_sym_COLON_COLON, - ACTIONS(733), 1, + ACTIONS(596), 1, anon_sym_DQUOTE, - ACTIONS(739), 1, + ACTIONS(602), 1, aux_sym_sym_lit_token1, - ACTIONS(741), 1, - anon_sym_LPAREN, - ACTIONS(747), 1, + ACTIONS(624), 1, + anon_sym_cl, + ACTIONS(729), 1, + aux_sym_num_lit_token1, + ACTIONS(733), 1, anon_sym_POUND_QMARK, - ACTIONS(749), 1, + ACTIONS(735), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(751), 1, + ACTIONS(737), 1, anon_sym_POUND_SQUOTE, - ACTIONS(753), 1, + ACTIONS(739), 1, anon_sym_SQUOTE, - ACTIONS(755), 1, + ACTIONS(741), 1, anon_sym_BQUOTE, - ACTIONS(757), 1, + ACTIONS(743), 1, anon_sym_COMMA_AT, - ACTIONS(759), 1, + ACTIONS(745), 1, anon_sym_COMMA, - ACTIONS(761), 1, - anon_sym_cl, - ACTIONS(1475), 1, + ACTIONS(1554), 1, anon_sym_POUND, - STATE(1811), 1, - sym__bare_set_lit, - STATE(1813), 1, - sym_sym_lit, - STATE(2036), 1, + ACTIONS(1674), 1, + sym_self_referential_reader_macro, + STATE(2146), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(745), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(763), 2, + STATE(2313), 1, + sym__bare_set_lit, + STATE(2401), 1, + sym_sym_lit, + ACTIONS(626), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(765), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(767), 2, + ACTIONS(632), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1675), 2, + ACTIONS(731), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(747), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(1677), 3, + ACTIONS(1672), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(258), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1812), 3, + STATE(2315), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1768), 19, + STATE(2245), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -35960,7 +26687,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [30766] = 34, + [7020] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -35969,76 +26696,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(727), 1, + ACTIONS(855), 1, aux_sym_num_lit_token1, - ACTIONS(729), 1, + ACTIONS(857), 1, anon_sym_COLON, - ACTIONS(731), 1, + ACTIONS(859), 1, anon_sym_COLON_COLON, - ACTIONS(733), 1, + ACTIONS(861), 1, anon_sym_DQUOTE, - ACTIONS(739), 1, + ACTIONS(867), 1, aux_sym_sym_lit_token1, - ACTIONS(741), 1, + ACTIONS(869), 1, anon_sym_LPAREN, - ACTIONS(747), 1, + ACTIONS(875), 1, anon_sym_POUND_QMARK, - ACTIONS(749), 1, + ACTIONS(877), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(751), 1, + ACTIONS(879), 1, anon_sym_POUND_SQUOTE, - ACTIONS(753), 1, + ACTIONS(881), 1, anon_sym_SQUOTE, - ACTIONS(755), 1, + ACTIONS(883), 1, anon_sym_BQUOTE, - ACTIONS(757), 1, + ACTIONS(885), 1, anon_sym_COMMA_AT, - ACTIONS(759), 1, + ACTIONS(887), 1, anon_sym_COMMA, - ACTIONS(761), 1, + ACTIONS(889), 1, anon_sym_cl, - ACTIONS(1475), 1, + ACTIONS(1608), 1, anon_sym_POUND, - STATE(1811), 1, + ACTIONS(1680), 1, + sym_self_referential_reader_macro, + STATE(1793), 1, sym__bare_set_lit, - STATE(1813), 1, - sym_sym_lit, - STATE(2036), 1, + STATE(2138), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2224), 1, + sym_sym_lit, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(745), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(763), 2, + ACTIONS(312), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(765), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(767), 2, + ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1679), 2, + ACTIONS(873), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(893), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1676), 2, sym__ws, sym_comment, - ACTIONS(1681), 3, + ACTIONS(1678), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(259), 3, + STATE(230), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1812), 3, + STATE(1792), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1769), 19, + STATE(1808), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -36058,85 +26787,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [30898] = 34, + [7155] = 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(855), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(857), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(859), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(861), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(867), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(869), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(875), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(877), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(879), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(881), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(883), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(885), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(887), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(889), 1, anon_sym_cl, - STATE(1608), 1, + ACTIONS(1608), 1, + anon_sym_POUND, + ACTIONS(1686), 1, + sym_self_referential_reader_macro, + STATE(1793), 1, sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, + STATE(2138), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2224), 1, + sym_sym_lit, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(312), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, + ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1683), 2, + ACTIONS(873), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(893), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1682), 2, sym__ws, sym_comment, - ACTIONS(1685), 3, + ACTIONS(1684), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(268), 3, + STATE(232), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1609), 3, + STATE(1792), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(227), 19, + STATE(1810), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -36156,7 +26887,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [31030] = 34, + [7290] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -36165,76 +26896,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(821), 1, + ACTIONS(855), 1, + aux_sym_num_lit_token1, + ACTIONS(857), 1, anon_sym_COLON, - ACTIONS(823), 1, + ACTIONS(859), 1, anon_sym_COLON_COLON, - ACTIONS(825), 1, + ACTIONS(861), 1, anon_sym_DQUOTE, - ACTIONS(827), 1, + ACTIONS(867), 1, aux_sym_sym_lit_token1, - ACTIONS(845), 1, - anon_sym_cl, - ACTIONS(853), 1, - aux_sym_num_lit_token1, - ACTIONS(857), 1, + ACTIONS(869), 1, + anon_sym_LPAREN, + ACTIONS(875), 1, anon_sym_POUND_QMARK, - ACTIONS(859), 1, + ACTIONS(877), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(861), 1, + ACTIONS(879), 1, anon_sym_POUND_SQUOTE, - ACTIONS(863), 1, + ACTIONS(881), 1, anon_sym_SQUOTE, - ACTIONS(865), 1, + ACTIONS(883), 1, anon_sym_BQUOTE, - ACTIONS(867), 1, + ACTIONS(885), 1, anon_sym_COMMA_AT, - ACTIONS(869), 1, + ACTIONS(887), 1, anon_sym_COMMA, - ACTIONS(1365), 1, + ACTIONS(889), 1, + anon_sym_cl, + ACTIONS(1608), 1, anon_sym_POUND, - STATE(2051), 1, + ACTIONS(1692), 1, + sym_self_referential_reader_macro, + STATE(1793), 1, + sym__bare_set_lit, + STATE(2138), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - STATE(2333), 1, - sym__bare_set_lit, - STATE(2404), 1, + STATE(2224), 1, sym_sym_lit, - ACTIONS(653), 2, + STATE(2237), 1, + sym__metadata_lit, + ACTIONS(312), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(657), 2, + ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(855), 2, + ACTIONS(873), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(871), 2, + ACTIONS(893), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1353), 2, + ACTIONS(1688), 2, sym__ws, sym_comment, - ACTIONS(1687), 3, + ACTIONS(1690), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1657), 3, + STATE(234), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2332), 3, + STATE(1792), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2317), 19, + STATE(1812), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -36254,7 +26987,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [31162] = 34, + [7425] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -36263,76 +26996,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(727), 1, + ACTIONS(855), 1, aux_sym_num_lit_token1, - ACTIONS(729), 1, + ACTIONS(857), 1, anon_sym_COLON, - ACTIONS(731), 1, + ACTIONS(859), 1, anon_sym_COLON_COLON, - ACTIONS(733), 1, + ACTIONS(861), 1, anon_sym_DQUOTE, - ACTIONS(739), 1, + ACTIONS(867), 1, aux_sym_sym_lit_token1, - ACTIONS(741), 1, + ACTIONS(869), 1, anon_sym_LPAREN, - ACTIONS(747), 1, + ACTIONS(875), 1, anon_sym_POUND_QMARK, - ACTIONS(749), 1, + ACTIONS(877), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(751), 1, + ACTIONS(879), 1, anon_sym_POUND_SQUOTE, - ACTIONS(753), 1, + ACTIONS(881), 1, anon_sym_SQUOTE, - ACTIONS(755), 1, + ACTIONS(883), 1, anon_sym_BQUOTE, - ACTIONS(757), 1, + ACTIONS(885), 1, anon_sym_COMMA_AT, - ACTIONS(759), 1, + ACTIONS(887), 1, anon_sym_COMMA, - ACTIONS(761), 1, + ACTIONS(889), 1, anon_sym_cl, - ACTIONS(1475), 1, + ACTIONS(1608), 1, anon_sym_POUND, - STATE(1811), 1, + ACTIONS(1698), 1, + sym_self_referential_reader_macro, + STATE(1793), 1, sym__bare_set_lit, - STATE(1813), 1, - sym_sym_lit, - STATE(2036), 1, + STATE(2138), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2224), 1, + sym_sym_lit, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(745), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(763), 2, + ACTIONS(312), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(765), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(767), 2, + ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1689), 2, + ACTIONS(873), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(893), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1694), 2, sym__ws, sym_comment, - ACTIONS(1691), 3, + ACTIONS(1696), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(263), 3, + STATE(236), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1812), 3, + STATE(1792), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1772), 19, + STATE(1814), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -36352,7 +27087,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [31294] = 34, + [7560] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -36361,76 +27096,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(727), 1, + ACTIONS(855), 1, aux_sym_num_lit_token1, - ACTIONS(729), 1, + ACTIONS(857), 1, anon_sym_COLON, - ACTIONS(731), 1, + ACTIONS(859), 1, anon_sym_COLON_COLON, - ACTIONS(733), 1, + ACTIONS(861), 1, anon_sym_DQUOTE, - ACTIONS(739), 1, + ACTIONS(867), 1, aux_sym_sym_lit_token1, - ACTIONS(741), 1, + ACTIONS(869), 1, anon_sym_LPAREN, - ACTIONS(747), 1, + ACTIONS(875), 1, anon_sym_POUND_QMARK, - ACTIONS(749), 1, + ACTIONS(877), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(751), 1, + ACTIONS(879), 1, anon_sym_POUND_SQUOTE, - ACTIONS(753), 1, + ACTIONS(881), 1, anon_sym_SQUOTE, - ACTIONS(755), 1, + ACTIONS(883), 1, anon_sym_BQUOTE, - ACTIONS(757), 1, + ACTIONS(885), 1, anon_sym_COMMA_AT, - ACTIONS(759), 1, + ACTIONS(887), 1, anon_sym_COMMA, - ACTIONS(761), 1, + ACTIONS(889), 1, anon_sym_cl, - ACTIONS(1475), 1, + ACTIONS(1608), 1, anon_sym_POUND, - STATE(1811), 1, + ACTIONS(1704), 1, + sym_self_referential_reader_macro, + STATE(1793), 1, sym__bare_set_lit, - STATE(1813), 1, - sym_sym_lit, - STATE(2036), 1, + STATE(2138), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2224), 1, + sym_sym_lit, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(745), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(763), 2, + ACTIONS(312), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(765), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(767), 2, + ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(873), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(893), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1700), 2, sym__ws, sym_comment, - ACTIONS(1693), 3, + ACTIONS(1702), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1657), 3, + STATE(238), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1812), 3, + STATE(1792), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1774), 19, + STATE(1816), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -36450,85 +27187,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [31426] = 34, + [7695] = 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(727), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(729), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(731), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(733), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(739), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(741), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(747), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(749), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(751), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(753), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(755), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(757), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(759), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(761), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(1475), 1, - anon_sym_POUND, - STATE(1811), 1, + ACTIONS(1708), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(1813), 1, + STATE(1563), 1, sym_sym_lit, - STATE(2036), 1, + STATE(2153), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(745), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(763), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(765), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(767), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(1695), 3, + ACTIONS(1706), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1657), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1812), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1775), 19, + STATE(1564), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(263), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -36548,7 +27287,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [31558] = 34, + [7830] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -36557,75 +27296,77 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(183), 1, + ACTIONS(190), 1, anon_sym_POUND, - ACTIONS(187), 1, + ACTIONS(194), 1, aux_sym_num_lit_token1, - ACTIONS(189), 1, + ACTIONS(196), 1, anon_sym_COLON, - ACTIONS(191), 1, + ACTIONS(198), 1, anon_sym_COLON_COLON, - ACTIONS(193), 1, + ACTIONS(200), 1, anon_sym_DQUOTE, - ACTIONS(195), 1, + ACTIONS(202), 1, aux_sym_sym_lit_token1, - ACTIONS(210), 1, + ACTIONS(217), 1, anon_sym_POUND_QMARK, - ACTIONS(212), 1, + ACTIONS(219), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(214), 1, + ACTIONS(221), 1, anon_sym_POUND_SQUOTE, - ACTIONS(216), 1, + ACTIONS(223), 1, anon_sym_SQUOTE, - ACTIONS(218), 1, + ACTIONS(225), 1, anon_sym_BQUOTE, - ACTIONS(220), 1, + ACTIONS(227), 1, anon_sym_COMMA_AT, - ACTIONS(222), 1, + ACTIONS(229), 1, anon_sym_COMMA, - ACTIONS(557), 1, + ACTIONS(576), 1, anon_sym_LPAREN, - ACTIONS(561), 1, + ACTIONS(580), 1, anon_sym_cl, - STATE(1057), 1, + ACTIONS(1712), 1, + sym_self_referential_reader_macro, + STATE(1077), 1, sym__bare_set_lit, - STATE(1059), 1, + STATE(1079), 1, sym_sym_lit, - STATE(2062), 1, + STATE(2137), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(208), 2, + ACTIONS(215), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(229), 2, + ACTIONS(236), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(231), 2, + ACTIONS(240), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(233), 2, + ACTIONS(242), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1697), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(1699), 3, + ACTIONS(1710), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(362), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1058), 3, + STATE(1078), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, + STATE(1564), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, STATE(12), 19, sym__form, sym_num_lit, @@ -36646,7 +27387,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [31690] = 34, + [7965] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -36655,76 +27396,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, + ACTIONS(805), 1, aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(807), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(809), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(811), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(817), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(819), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(825), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(827), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(829), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(831), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(833), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(835), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(837), 1, anon_sym_COMMA, - ACTIONS(809), 1, + ACTIONS(839), 1, anon_sym_cl, - ACTIONS(1545), 1, + ACTIONS(1714), 1, anon_sym_POUND, - STATE(1384), 1, + ACTIONS(1718), 1, + sym_self_referential_reader_macro, + STATE(1781), 1, sym__bare_set_lit, - STATE(1817), 1, + STATE(1783), 1, sym_sym_lit, - STATE(2037), 1, + STATE(2121), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, + ACTIONS(823), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(841), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, + ACTIONS(845), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(847), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1701), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(1703), 3, + ACTIONS(1716), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(236), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1330), 3, + STATE(1782), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1840), 19, + STATE(124), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -36744,7 +27487,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [31822] = 34, + [8100] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -36753,76 +27496,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(727), 1, - aux_sym_num_lit_token1, - ACTIONS(729), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(731), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(733), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(739), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(741), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(747), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(749), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(751), 1, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(753), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(755), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(757), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(759), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(761), 1, - anon_sym_cl, - ACTIONS(1475), 1, + ACTIONS(1442), 1, anon_sym_POUND, - STATE(1811), 1, - sym__bare_set_lit, - STATE(1813), 1, + ACTIONS(1722), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(2036), 1, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(745), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(763), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(765), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(767), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1705), 2, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(1707), 3, + ACTIONS(1720), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(365), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1812), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(120), 19, + STATE(1900), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -36842,7 +27587,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [31954] = 34, + [8235] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -36851,76 +27596,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(821), 1, + ACTIONS(61), 1, + anon_sym_POUND, + ACTIONS(65), 1, + aux_sym_num_lit_token1, + ACTIONS(67), 1, anon_sym_COLON, - ACTIONS(823), 1, + ACTIONS(69), 1, anon_sym_COLON_COLON, - ACTIONS(825), 1, + ACTIONS(71), 1, anon_sym_DQUOTE, - ACTIONS(827), 1, + ACTIONS(73), 1, aux_sym_sym_lit_token1, - ACTIONS(845), 1, - anon_sym_cl, - ACTIONS(853), 1, - aux_sym_num_lit_token1, - ACTIONS(857), 1, + ACTIONS(77), 1, anon_sym_POUND_QMARK, - ACTIONS(859), 1, + ACTIONS(79), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(861), 1, + ACTIONS(81), 1, anon_sym_POUND_SQUOTE, - ACTIONS(863), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(865), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(867), 1, + ACTIONS(87), 1, anon_sym_COMMA_AT, - ACTIONS(869), 1, + ACTIONS(89), 1, anon_sym_COMMA, - ACTIONS(1365), 1, - anon_sym_POUND, - STATE(2051), 1, + ACTIONS(775), 1, + anon_sym_LPAREN, + ACTIONS(779), 1, + anon_sym_cl, + ACTIONS(1726), 1, + sym_self_referential_reader_macro, + STATE(862), 1, + sym_sym_lit, + STATE(870), 1, + sym__bare_set_lit, + STATE(2156), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2333), 1, - sym__bare_set_lit, - STATE(2404), 1, - sym_sym_lit, - ACTIONS(653), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(657), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(855), 2, + ACTIONS(75), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(871), 2, + ACTIONS(93), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(97), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1353), 2, + ACTIONS(99), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(1709), 3, + ACTIONS(1724), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1657), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2332), 3, + STATE(863), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2313), 19, + STATE(1564), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(814), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -36940,7 +27687,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [32086] = 34, + [8370] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -36949,76 +27696,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, - aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(809), 1, - anon_sym_cl, - ACTIONS(1545), 1, + ACTIONS(1442), 1, anon_sym_POUND, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, + ACTIONS(1730), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(2037), 1, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1711), 2, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(1713), 3, + ACTIONS(1728), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(368), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1330), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1971), 19, + STATE(1835), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -37038,7 +27787,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [32218] = 34, + [8505] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -37047,76 +27796,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, - aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(809), 1, - anon_sym_cl, - ACTIONS(1545), 1, + ACTIONS(1442), 1, anon_sym_POUND, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, + ACTIONS(1734), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(2037), 1, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1715), 2, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(1717), 3, + ACTIONS(1732), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(370), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1330), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1973), 19, + STATE(2020), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -37136,7 +27887,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [32350] = 34, + [8640] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -37145,76 +27896,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, + ACTIONS(855), 1, aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(857), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(859), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(861), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(867), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(869), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(875), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(877), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(879), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(881), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(883), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(885), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(887), 1, anon_sym_COMMA, - ACTIONS(809), 1, + ACTIONS(889), 1, anon_sym_cl, - ACTIONS(1545), 1, + ACTIONS(1608), 1, anon_sym_POUND, - STATE(1384), 1, + ACTIONS(1738), 1, + sym_self_referential_reader_macro, + STATE(1793), 1, sym__bare_set_lit, - STATE(1817), 1, - sym_sym_lit, - STATE(2037), 1, + STATE(2138), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2224), 1, + sym_sym_lit, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(312), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1719), 2, + ACTIONS(873), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(893), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(1721), 3, + ACTIONS(1736), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(372), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1330), 3, + STATE(1792), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1974), 19, + STATE(1806), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -37234,7 +27987,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [32482] = 34, + [8775] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -37243,76 +27996,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(727), 1, - aux_sym_num_lit_token1, - ACTIONS(729), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(731), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(733), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(739), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(741), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(747), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(749), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(751), 1, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(753), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(755), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(757), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(759), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(761), 1, - anon_sym_cl, - ACTIONS(1475), 1, + ACTIONS(1442), 1, anon_sym_POUND, - STATE(1811), 1, - sym__bare_set_lit, - STATE(1813), 1, + ACTIONS(1742), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(2036), 1, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(745), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(763), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(765), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(767), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(1723), 3, + ACTIONS(1740), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1812), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1776), 19, + STATE(2019), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -37332,7 +28087,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [32614] = 34, + [8910] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -37341,76 +28096,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, + ACTIONS(855), 1, aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(857), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(859), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(861), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(867), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(869), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(875), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(877), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(879), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(881), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(883), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(885), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(887), 1, anon_sym_COMMA, - ACTIONS(809), 1, + ACTIONS(889), 1, anon_sym_cl, - ACTIONS(1545), 1, + ACTIONS(1608), 1, anon_sym_POUND, - STATE(1384), 1, + ACTIONS(1746), 1, + sym_self_referential_reader_macro, + STATE(1793), 1, sym__bare_set_lit, - STATE(1817), 1, - sym_sym_lit, - STATE(2037), 1, + STATE(2138), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2224), 1, + sym_sym_lit, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(312), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1725), 2, + ACTIONS(873), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(893), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(1727), 3, + ACTIONS(1744), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(374), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1330), 3, + STATE(1792), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1975), 19, + STATE(1804), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -37430,7 +28187,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [32746] = 34, + [9045] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -37439,76 +28196,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, - aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(809), 1, - anon_sym_cl, - ACTIONS(1545), 1, + ACTIONS(1442), 1, anon_sym_POUND, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, + ACTIONS(1750), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(2037), 1, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1729), 2, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(1731), 3, + ACTIONS(1748), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(234), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1330), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1982), 19, + STATE(2018), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -37528,7 +28287,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [32878] = 34, + [9180] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -37537,76 +28296,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(727), 1, + ACTIONS(855), 1, aux_sym_num_lit_token1, - ACTIONS(729), 1, + ACTIONS(857), 1, anon_sym_COLON, - ACTIONS(731), 1, + ACTIONS(859), 1, anon_sym_COLON_COLON, - ACTIONS(733), 1, + ACTIONS(861), 1, anon_sym_DQUOTE, - ACTIONS(739), 1, + ACTIONS(867), 1, aux_sym_sym_lit_token1, - ACTIONS(741), 1, + ACTIONS(869), 1, anon_sym_LPAREN, - ACTIONS(747), 1, + ACTIONS(875), 1, anon_sym_POUND_QMARK, - ACTIONS(749), 1, + ACTIONS(877), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(751), 1, + ACTIONS(879), 1, anon_sym_POUND_SQUOTE, - ACTIONS(753), 1, + ACTIONS(881), 1, anon_sym_SQUOTE, - ACTIONS(755), 1, + ACTIONS(883), 1, anon_sym_BQUOTE, - ACTIONS(757), 1, + ACTIONS(885), 1, anon_sym_COMMA_AT, - ACTIONS(759), 1, + ACTIONS(887), 1, anon_sym_COMMA, - ACTIONS(761), 1, + ACTIONS(889), 1, anon_sym_cl, - ACTIONS(1475), 1, + ACTIONS(1608), 1, anon_sym_POUND, - STATE(1811), 1, + ACTIONS(1754), 1, + sym_self_referential_reader_macro, + STATE(1793), 1, sym__bare_set_lit, - STATE(1813), 1, - sym_sym_lit, - STATE(2036), 1, + STATE(2138), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2224), 1, + sym_sym_lit, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(745), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(763), 2, + ACTIONS(312), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(765), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(767), 2, + ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(873), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(893), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(1733), 3, + ACTIONS(1752), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1812), 3, + STATE(1792), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1777), 19, + STATE(1803), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -37626,7 +28387,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [33010] = 34, + [9315] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -37635,76 +28396,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(727), 1, - aux_sym_num_lit_token1, - ACTIONS(729), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(731), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(733), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(739), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(741), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(747), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(749), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(751), 1, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(753), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(755), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(757), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(759), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(761), 1, - anon_sym_cl, - ACTIONS(1475), 1, + ACTIONS(1442), 1, anon_sym_POUND, - STATE(1811), 1, - sym__bare_set_lit, - STATE(1813), 1, + ACTIONS(1758), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(2036), 1, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(745), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(763), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(765), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(767), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(1735), 3, + ACTIONS(1756), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1812), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1699), 19, + STATE(2017), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -37724,7 +28487,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [33142] = 34, + [9450] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -37733,76 +28496,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(569), 1, + ACTIONS(855), 1, aux_sym_num_lit_token1, - ACTIONS(571), 1, + ACTIONS(857), 1, anon_sym_COLON, - ACTIONS(573), 1, + ACTIONS(859), 1, anon_sym_COLON_COLON, - ACTIONS(575), 1, + ACTIONS(861), 1, anon_sym_DQUOTE, - ACTIONS(581), 1, + ACTIONS(867), 1, aux_sym_sym_lit_token1, - ACTIONS(583), 1, + ACTIONS(869), 1, anon_sym_LPAREN, - ACTIONS(589), 1, + ACTIONS(875), 1, anon_sym_POUND_QMARK, - ACTIONS(591), 1, + ACTIONS(877), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(593), 1, + ACTIONS(879), 1, anon_sym_POUND_SQUOTE, - ACTIONS(595), 1, + ACTIONS(881), 1, anon_sym_SQUOTE, - ACTIONS(597), 1, + ACTIONS(883), 1, anon_sym_BQUOTE, - ACTIONS(599), 1, + ACTIONS(885), 1, anon_sym_COMMA_AT, - ACTIONS(601), 1, + ACTIONS(887), 1, anon_sym_COMMA, - ACTIONS(603), 1, + ACTIONS(889), 1, anon_sym_cl, - ACTIONS(1387), 1, + ACTIONS(1608), 1, anon_sym_POUND, - STATE(1163), 1, - sym_sym_lit, - STATE(1186), 1, + ACTIONS(1762), 1, + sym_self_referential_reader_macro, + STATE(1793), 1, sym__bare_set_lit, - STATE(2027), 1, + STATE(2138), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2224), 1, + sym_sym_lit, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(587), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(605), 2, + ACTIONS(312), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(607), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(609), 2, + ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1737), 2, + ACTIONS(873), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(893), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(1739), 3, + ACTIONS(1760), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(380), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1183), 3, + STATE(1792), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1227), 19, + STATE(1802), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -37822,7 +28587,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [33274] = 34, + [9585] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -37831,76 +28596,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(617), 1, - aux_sym_num_lit_token1, - ACTIONS(821), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(823), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(825), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(827), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(829), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(831), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(833), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(835), 1, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(837), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(839), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(841), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(843), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(845), 1, - anon_sym_cl, - ACTIONS(1373), 1, + ACTIONS(1442), 1, anon_sym_POUND, - STATE(2056), 1, + ACTIONS(1766), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, + sym_sym_lit, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2333), 1, - sym__bare_set_lit, - STATE(2404), 1, - sym_sym_lit, - ACTIONS(635), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(653), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(657), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(847), 2, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1353), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(1741), 3, + ACTIONS(1764), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2332), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2407), 19, + STATE(1844), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -37920,7 +28687,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [33406] = 34, + [9720] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -37929,76 +28696,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(821), 1, + ACTIONS(855), 1, + aux_sym_num_lit_token1, + ACTIONS(857), 1, anon_sym_COLON, - ACTIONS(823), 1, + ACTIONS(859), 1, anon_sym_COLON_COLON, - ACTIONS(825), 1, + ACTIONS(861), 1, anon_sym_DQUOTE, - ACTIONS(827), 1, + ACTIONS(867), 1, aux_sym_sym_lit_token1, - ACTIONS(845), 1, - anon_sym_cl, - ACTIONS(853), 1, - aux_sym_num_lit_token1, - ACTIONS(857), 1, + ACTIONS(869), 1, + anon_sym_LPAREN, + ACTIONS(875), 1, anon_sym_POUND_QMARK, - ACTIONS(859), 1, + ACTIONS(877), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(861), 1, + ACTIONS(879), 1, anon_sym_POUND_SQUOTE, - ACTIONS(863), 1, + ACTIONS(881), 1, anon_sym_SQUOTE, - ACTIONS(865), 1, + ACTIONS(883), 1, anon_sym_BQUOTE, - ACTIONS(867), 1, + ACTIONS(885), 1, anon_sym_COMMA_AT, - ACTIONS(869), 1, + ACTIONS(887), 1, anon_sym_COMMA, - ACTIONS(1365), 1, + ACTIONS(889), 1, + anon_sym_cl, + ACTIONS(1608), 1, anon_sym_POUND, - STATE(2051), 1, + ACTIONS(1770), 1, + sym_self_referential_reader_macro, + STATE(1793), 1, + sym__bare_set_lit, + STATE(2138), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - STATE(2333), 1, - sym__bare_set_lit, - STATE(2404), 1, + STATE(2224), 1, sym_sym_lit, - ACTIONS(653), 2, + STATE(2237), 1, + sym__metadata_lit, + ACTIONS(312), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(657), 2, + ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(855), 2, + ACTIONS(873), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(871), 2, + ACTIONS(893), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1353), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(1743), 3, + ACTIONS(1768), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2332), 3, + STATE(1792), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2305), 19, + STATE(1801), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -38018,7 +28787,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [33538] = 34, + [9855] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -38027,76 +28796,178 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(569), 1, + ACTIONS(590), 1, aux_sym_num_lit_token1, - ACTIONS(571), 1, + ACTIONS(592), 1, anon_sym_COLON, - ACTIONS(573), 1, + ACTIONS(594), 1, anon_sym_COLON_COLON, - ACTIONS(575), 1, + ACTIONS(596), 1, anon_sym_DQUOTE, - ACTIONS(581), 1, + ACTIONS(602), 1, aux_sym_sym_lit_token1, - ACTIONS(583), 1, + ACTIONS(604), 1, anon_sym_LPAREN, - ACTIONS(589), 1, + ACTIONS(610), 1, anon_sym_POUND_QMARK, - ACTIONS(591), 1, + ACTIONS(612), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(593), 1, + ACTIONS(614), 1, anon_sym_POUND_SQUOTE, - ACTIONS(595), 1, + ACTIONS(616), 1, anon_sym_SQUOTE, - ACTIONS(597), 1, + ACTIONS(618), 1, anon_sym_BQUOTE, - ACTIONS(599), 1, + ACTIONS(620), 1, anon_sym_COMMA_AT, - ACTIONS(601), 1, + ACTIONS(622), 1, anon_sym_COMMA, - ACTIONS(603), 1, + ACTIONS(624), 1, anon_sym_cl, - ACTIONS(1387), 1, + ACTIONS(1480), 1, anon_sym_POUND, - STATE(1163), 1, - sym_sym_lit, - STATE(1186), 1, - sym__bare_set_lit, - STATE(2027), 1, + ACTIONS(1774), 1, + sym_self_referential_reader_macro, + STATE(2155), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(587), 2, + STATE(2313), 1, + sym__bare_set_lit, + STATE(2401), 1, + sym_sym_lit, + ACTIONS(608), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(605), 2, + ACTIONS(626), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(607), 2, + ACTIONS(630), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(609), 2, + ACTIONS(632), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(1745), 3, + ACTIONS(1772), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1183), 3, + STATE(1564), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(2315), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1657), 3, + STATE(2259), 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, + [9990] = 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(536), 1, + anon_sym_LPAREN, + ACTIONS(592), 1, + anon_sym_COLON, + ACTIONS(594), 1, + anon_sym_COLON_COLON, + ACTIONS(596), 1, + anon_sym_DQUOTE, + ACTIONS(602), 1, + aux_sym_sym_lit_token1, + ACTIONS(624), 1, + anon_sym_cl, + ACTIONS(729), 1, + aux_sym_num_lit_token1, + ACTIONS(733), 1, + anon_sym_POUND_QMARK, + ACTIONS(735), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(737), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(739), 1, + anon_sym_SQUOTE, + ACTIONS(741), 1, + anon_sym_BQUOTE, + ACTIONS(743), 1, + anon_sym_COMMA_AT, + ACTIONS(745), 1, + anon_sym_COMMA, + ACTIONS(1554), 1, + anon_sym_POUND, + ACTIONS(1778), 1, + sym_self_referential_reader_macro, + STATE(2146), 1, + aux_sym_list_lit_repeat1, + STATE(2202), 1, + sym_old_meta_lit, + STATE(2206), 1, + sym_meta_lit, + STATE(2237), 1, + sym__metadata_lit, + STATE(2313), 1, + sym__bare_set_lit, + STATE(2401), 1, + sym_sym_lit, + ACTIONS(626), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(632), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(731), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(747), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1440), 2, + sym__ws, + sym_comment, + ACTIONS(1776), 3, + anon_sym_DOT, + sym_nil_lit, + sym_fancy_literal, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1198), 19, + STATE(2315), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2247), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -38116,85 +28987,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [33670] = 34, + [10125] = 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(775), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(809), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(1545), 1, - anon_sym_POUND, - STATE(1384), 1, + ACTIONS(1782), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(1817), 1, + STATE(1563), 1, sym_sym_lit, - STATE(2037), 1, + STATE(2153), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1747), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(1749), 3, + ACTIONS(1780), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(232), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1330), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1978), 19, + STATE(1564), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(287), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -38214,7 +29087,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [33802] = 34, + [10260] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -38223,76 +29096,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(727), 1, + ACTIONS(855), 1, aux_sym_num_lit_token1, - ACTIONS(729), 1, + ACTIONS(857), 1, anon_sym_COLON, - ACTIONS(731), 1, + ACTIONS(859), 1, anon_sym_COLON_COLON, - ACTIONS(733), 1, + ACTIONS(861), 1, anon_sym_DQUOTE, - ACTIONS(739), 1, + ACTIONS(867), 1, aux_sym_sym_lit_token1, - ACTIONS(741), 1, + ACTIONS(869), 1, anon_sym_LPAREN, - ACTIONS(747), 1, + ACTIONS(875), 1, anon_sym_POUND_QMARK, - ACTIONS(749), 1, + ACTIONS(877), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(751), 1, + ACTIONS(879), 1, anon_sym_POUND_SQUOTE, - ACTIONS(753), 1, + ACTIONS(881), 1, anon_sym_SQUOTE, - ACTIONS(755), 1, + ACTIONS(883), 1, anon_sym_BQUOTE, - ACTIONS(757), 1, + ACTIONS(885), 1, anon_sym_COMMA_AT, - ACTIONS(759), 1, + ACTIONS(887), 1, anon_sym_COMMA, - ACTIONS(761), 1, + ACTIONS(889), 1, anon_sym_cl, - ACTIONS(1475), 1, + ACTIONS(1608), 1, anon_sym_POUND, - STATE(1811), 1, + ACTIONS(1788), 1, + sym_self_referential_reader_macro, + STATE(1793), 1, sym__bare_set_lit, - STATE(1813), 1, - sym_sym_lit, - STATE(2036), 1, + STATE(2138), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2224), 1, + sym_sym_lit, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(745), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(763), 2, + ACTIONS(312), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(765), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(767), 2, + ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1751), 2, + ACTIONS(873), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(893), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1784), 2, sym__ws, sym_comment, - ACTIONS(1753), 3, + ACTIONS(1786), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(278), 3, + STATE(250), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1812), 3, + STATE(1792), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1794), 19, + STATE(1795), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -38312,7 +29187,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [33934] = 34, + [10395] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -38321,76 +29196,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, + ACTIONS(590), 1, aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(592), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(594), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(596), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(602), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(604), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(610), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(612), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(614), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(616), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(618), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(620), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(622), 1, anon_sym_COMMA, - ACTIONS(809), 1, + ACTIONS(624), 1, anon_sym_cl, - ACTIONS(1545), 1, + ACTIONS(1480), 1, anon_sym_POUND, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, - sym_sym_lit, - STATE(2037), 1, + ACTIONS(1664), 1, + sym_self_referential_reader_macro, + STATE(2155), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, + STATE(2313), 1, + sym__bare_set_lit, + STATE(2401), 1, + sym_sym_lit, + ACTIONS(608), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(626), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, + ACTIONS(630), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(632), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1755), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(1757), 3, + ACTIONS(1662), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(230), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1330), 3, + STATE(2315), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1981), 19, + STATE(2258), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -38410,7 +29287,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [34066] = 34, + [10530] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -38419,76 +29296,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(727), 1, + ACTIONS(855), 1, aux_sym_num_lit_token1, - ACTIONS(729), 1, + ACTIONS(857), 1, anon_sym_COLON, - ACTIONS(731), 1, + ACTIONS(859), 1, anon_sym_COLON_COLON, - ACTIONS(733), 1, + ACTIONS(861), 1, anon_sym_DQUOTE, - ACTIONS(739), 1, + ACTIONS(867), 1, aux_sym_sym_lit_token1, - ACTIONS(741), 1, + ACTIONS(869), 1, anon_sym_LPAREN, - ACTIONS(747), 1, + ACTIONS(875), 1, anon_sym_POUND_QMARK, - ACTIONS(749), 1, + ACTIONS(877), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(751), 1, + ACTIONS(879), 1, anon_sym_POUND_SQUOTE, - ACTIONS(753), 1, + ACTIONS(881), 1, anon_sym_SQUOTE, - ACTIONS(755), 1, + ACTIONS(883), 1, anon_sym_BQUOTE, - ACTIONS(757), 1, + ACTIONS(885), 1, anon_sym_COMMA_AT, - ACTIONS(759), 1, + ACTIONS(887), 1, anon_sym_COMMA, - ACTIONS(761), 1, + ACTIONS(889), 1, anon_sym_cl, - ACTIONS(1475), 1, + ACTIONS(1608), 1, anon_sym_POUND, - STATE(1811), 1, + ACTIONS(1794), 1, + sym_self_referential_reader_macro, + STATE(1793), 1, sym__bare_set_lit, - STATE(1813), 1, - sym_sym_lit, - STATE(2036), 1, + STATE(2138), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2224), 1, + sym_sym_lit, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(745), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(763), 2, + ACTIONS(312), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(765), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(767), 2, + ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1759), 2, + ACTIONS(873), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(893), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1790), 2, sym__ws, sym_comment, - ACTIONS(1761), 3, + ACTIONS(1792), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(279), 3, + STATE(253), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1812), 3, + STATE(1792), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1795), 19, + STATE(1788), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -38508,7 +29387,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [34198] = 34, + [10665] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -38517,76 +29396,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(183), 1, - anon_sym_POUND, - ACTIONS(187), 1, + ACTIONS(805), 1, aux_sym_num_lit_token1, - ACTIONS(189), 1, + ACTIONS(807), 1, anon_sym_COLON, - ACTIONS(191), 1, + ACTIONS(809), 1, anon_sym_COLON_COLON, - ACTIONS(193), 1, + ACTIONS(811), 1, anon_sym_DQUOTE, - ACTIONS(195), 1, + ACTIONS(817), 1, aux_sym_sym_lit_token1, - ACTIONS(210), 1, + ACTIONS(819), 1, + anon_sym_LPAREN, + ACTIONS(825), 1, anon_sym_POUND_QMARK, - ACTIONS(212), 1, + ACTIONS(827), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(214), 1, + ACTIONS(829), 1, anon_sym_POUND_SQUOTE, - ACTIONS(216), 1, + ACTIONS(831), 1, anon_sym_SQUOTE, - ACTIONS(218), 1, + ACTIONS(833), 1, anon_sym_BQUOTE, - ACTIONS(220), 1, + ACTIONS(835), 1, anon_sym_COMMA_AT, - ACTIONS(222), 1, + ACTIONS(837), 1, anon_sym_COMMA, - ACTIONS(557), 1, - anon_sym_LPAREN, - ACTIONS(561), 1, + ACTIONS(839), 1, anon_sym_cl, - STATE(1057), 1, + ACTIONS(1714), 1, + anon_sym_POUND, + ACTIONS(1798), 1, + sym_self_referential_reader_macro, + STATE(1781), 1, sym__bare_set_lit, - STATE(1059), 1, + STATE(1783), 1, sym_sym_lit, - STATE(2062), 1, + STATE(2121), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(208), 2, + ACTIONS(823), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(229), 2, + ACTIONS(841), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(231), 2, + ACTIONS(845), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(233), 2, + ACTIONS(847), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1763), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(1765), 3, + ACTIONS(1796), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(166), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1058), 3, + STATE(1782), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1055), 19, + STATE(1590), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -38606,7 +29487,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [34330] = 34, + [10800] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -38615,76 +29496,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, + ACTIONS(855), 1, aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(857), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(859), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(861), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(867), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(869), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(875), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(877), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(879), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(881), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(883), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(885), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(887), 1, anon_sym_COMMA, - ACTIONS(809), 1, + ACTIONS(889), 1, anon_sym_cl, - ACTIONS(1545), 1, + ACTIONS(1608), 1, anon_sym_POUND, - STATE(1384), 1, + ACTIONS(1804), 1, + sym_self_referential_reader_macro, + STATE(1793), 1, sym__bare_set_lit, - STATE(1817), 1, - sym_sym_lit, - STATE(2037), 1, + STATE(2138), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2224), 1, + sym_sym_lit, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(312), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1767), 2, + ACTIONS(873), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(893), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1800), 2, sym__ws, sym_comment, - ACTIONS(1769), 3, + ACTIONS(1802), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(391), 3, + STATE(254), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1330), 3, + STATE(1792), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1879), 19, + STATE(1786), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -38704,7 +29587,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [34462] = 34, + [10935] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -38713,76 +29596,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(727), 1, + ACTIONS(855), 1, aux_sym_num_lit_token1, - ACTIONS(729), 1, + ACTIONS(857), 1, anon_sym_COLON, - ACTIONS(731), 1, + ACTIONS(859), 1, anon_sym_COLON_COLON, - ACTIONS(733), 1, + ACTIONS(861), 1, anon_sym_DQUOTE, - ACTIONS(739), 1, + ACTIONS(867), 1, aux_sym_sym_lit_token1, - ACTIONS(741), 1, + ACTIONS(869), 1, anon_sym_LPAREN, - ACTIONS(747), 1, + ACTIONS(875), 1, anon_sym_POUND_QMARK, - ACTIONS(749), 1, + ACTIONS(877), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(751), 1, + ACTIONS(879), 1, anon_sym_POUND_SQUOTE, - ACTIONS(753), 1, + ACTIONS(881), 1, anon_sym_SQUOTE, - ACTIONS(755), 1, + ACTIONS(883), 1, anon_sym_BQUOTE, - ACTIONS(757), 1, + ACTIONS(885), 1, anon_sym_COMMA_AT, - ACTIONS(759), 1, + ACTIONS(887), 1, anon_sym_COMMA, - ACTIONS(761), 1, + ACTIONS(889), 1, anon_sym_cl, - ACTIONS(1475), 1, + ACTIONS(1608), 1, anon_sym_POUND, - STATE(1811), 1, + ACTIONS(1810), 1, + sym_self_referential_reader_macro, + STATE(1793), 1, sym__bare_set_lit, - STATE(1813), 1, - sym_sym_lit, - STATE(2036), 1, + STATE(2138), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2224), 1, + sym_sym_lit, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(745), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(763), 2, + ACTIONS(312), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(765), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(767), 2, + ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1771), 2, + ACTIONS(873), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(893), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1806), 2, sym__ws, sym_comment, - ACTIONS(1773), 3, + ACTIONS(1808), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(287), 3, + STATE(257), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1812), 3, + STATE(1792), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1796), 19, + STATE(1784), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -38802,7 +29687,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [34594] = 34, + [11070] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -38811,76 +29696,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(821), 1, + ACTIONS(805), 1, + aux_sym_num_lit_token1, + ACTIONS(807), 1, anon_sym_COLON, - ACTIONS(823), 1, + ACTIONS(809), 1, anon_sym_COLON_COLON, - ACTIONS(825), 1, + ACTIONS(811), 1, anon_sym_DQUOTE, - ACTIONS(827), 1, + ACTIONS(817), 1, aux_sym_sym_lit_token1, - ACTIONS(845), 1, - anon_sym_cl, - ACTIONS(853), 1, - aux_sym_num_lit_token1, - ACTIONS(857), 1, + ACTIONS(819), 1, + anon_sym_LPAREN, + ACTIONS(825), 1, anon_sym_POUND_QMARK, - ACTIONS(859), 1, + ACTIONS(827), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(861), 1, + ACTIONS(829), 1, anon_sym_POUND_SQUOTE, - ACTIONS(863), 1, + ACTIONS(831), 1, anon_sym_SQUOTE, - ACTIONS(865), 1, + ACTIONS(833), 1, anon_sym_BQUOTE, - ACTIONS(867), 1, + ACTIONS(835), 1, anon_sym_COMMA_AT, - ACTIONS(869), 1, + ACTIONS(837), 1, anon_sym_COMMA, - ACTIONS(1365), 1, + ACTIONS(839), 1, + anon_sym_cl, + ACTIONS(1714), 1, anon_sym_POUND, - STATE(2051), 1, + ACTIONS(1814), 1, + sym_self_referential_reader_macro, + STATE(1781), 1, + sym__bare_set_lit, + STATE(1783), 1, + sym_sym_lit, + STATE(2121), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2333), 1, - sym__bare_set_lit, - STATE(2404), 1, - sym_sym_lit, - ACTIONS(653), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(657), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(855), 2, + ACTIONS(823), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(871), 2, + ACTIONS(841), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(845), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1775), 2, + ACTIONS(847), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(1777), 3, + ACTIONS(1812), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(354), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2332), 3, + STATE(1782), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2295), 19, + STATE(1589), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -38900,7 +29787,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [34726] = 34, + [11205] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -38909,76 +29796,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(727), 1, - aux_sym_num_lit_token1, - ACTIONS(729), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(731), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(733), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(739), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(741), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(747), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(749), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(751), 1, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(753), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(755), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(757), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(759), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(761), 1, - anon_sym_cl, - ACTIONS(1475), 1, + ACTIONS(1442), 1, anon_sym_POUND, - STATE(1811), 1, - sym__bare_set_lit, - STATE(1813), 1, + ACTIONS(1820), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(2036), 1, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(745), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(763), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(765), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(767), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1779), 2, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1816), 2, sym__ws, sym_comment, - ACTIONS(1781), 3, + ACTIONS(1818), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(224), 3, + STATE(792), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1812), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(164), 19, + STATE(1989), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -38998,7 +29887,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [34858] = 34, + [11340] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -39007,76 +29896,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(617), 1, + ACTIONS(855), 1, aux_sym_num_lit_token1, - ACTIONS(619), 1, + ACTIONS(857), 1, anon_sym_COLON, - ACTIONS(621), 1, + ACTIONS(859), 1, anon_sym_COLON_COLON, - ACTIONS(623), 1, + ACTIONS(861), 1, anon_sym_DQUOTE, - ACTIONS(629), 1, + ACTIONS(867), 1, aux_sym_sym_lit_token1, - ACTIONS(631), 1, + ACTIONS(869), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(875), 1, anon_sym_POUND_QMARK, - ACTIONS(639), 1, + ACTIONS(877), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(641), 1, + ACTIONS(879), 1, anon_sym_POUND_SQUOTE, - ACTIONS(643), 1, + ACTIONS(881), 1, anon_sym_SQUOTE, - ACTIONS(645), 1, + ACTIONS(883), 1, anon_sym_BQUOTE, - ACTIONS(647), 1, + ACTIONS(885), 1, anon_sym_COMMA_AT, - ACTIONS(649), 1, + ACTIONS(887), 1, anon_sym_COMMA, - ACTIONS(651), 1, + ACTIONS(889), 1, anon_sym_cl, - ACTIONS(1569), 1, + ACTIONS(1608), 1, anon_sym_POUND, - STATE(2064), 1, + ACTIONS(1824), 1, + sym_self_referential_reader_macro, + STATE(1793), 1, + sym__bare_set_lit, + STATE(2138), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - STATE(2333), 1, - sym__bare_set_lit, - STATE(2344), 1, + STATE(2224), 1, sym_sym_lit, - ACTIONS(635), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(653), 2, + STATE(2237), 1, + sym__metadata_lit, + ACTIONS(312), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(655), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(657), 2, + ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(873), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(893), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(1783), 3, + ACTIONS(1822), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2332), 3, + STATE(1792), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2252), 19, + STATE(1749), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -39096,85 +29987,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [34990] = 34, + [11475] = 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(617), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(619), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(621), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(623), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(629), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(631), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(639), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(641), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(643), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(645), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(647), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(649), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(651), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(1569), 1, - anon_sym_POUND, - STATE(2064), 1, + ACTIONS(1492), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, + sym__bare_set_lit, + STATE(1563), 1, + sym_sym_lit, + STATE(2153), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2333), 1, - sym__bare_set_lit, - STATE(2344), 1, - sym_sym_lit, - ACTIONS(635), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(653), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(655), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(657), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1785), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(1787), 3, + ACTIONS(1490), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(413), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2332), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2310), 19, + STATE(1564), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1486), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -39194,7 +30087,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [35122] = 34, + [11610] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -39203,76 +30096,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(183), 1, - anon_sym_POUND, - ACTIONS(187), 1, + ACTIONS(855), 1, aux_sym_num_lit_token1, - ACTIONS(189), 1, + ACTIONS(857), 1, anon_sym_COLON, - ACTIONS(191), 1, + ACTIONS(859), 1, anon_sym_COLON_COLON, - ACTIONS(193), 1, + ACTIONS(861), 1, anon_sym_DQUOTE, - ACTIONS(195), 1, + ACTIONS(867), 1, aux_sym_sym_lit_token1, - ACTIONS(210), 1, + ACTIONS(869), 1, + anon_sym_LPAREN, + ACTIONS(875), 1, anon_sym_POUND_QMARK, - ACTIONS(212), 1, + ACTIONS(877), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(214), 1, + ACTIONS(879), 1, anon_sym_POUND_SQUOTE, - ACTIONS(216), 1, + ACTIONS(881), 1, anon_sym_SQUOTE, - ACTIONS(218), 1, + ACTIONS(883), 1, anon_sym_BQUOTE, - ACTIONS(220), 1, + ACTIONS(885), 1, anon_sym_COMMA_AT, - ACTIONS(222), 1, + ACTIONS(887), 1, anon_sym_COMMA, - ACTIONS(557), 1, - anon_sym_LPAREN, - ACTIONS(561), 1, + ACTIONS(889), 1, anon_sym_cl, - STATE(1057), 1, + ACTIONS(1608), 1, + anon_sym_POUND, + ACTIONS(1830), 1, + sym_self_referential_reader_macro, + STATE(1793), 1, sym__bare_set_lit, - STATE(1059), 1, - sym_sym_lit, - STATE(2062), 1, + STATE(2138), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2224), 1, + sym_sym_lit, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(208), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(229), 2, + ACTIONS(312), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(231), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(233), 2, + ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1789), 2, + ACTIONS(873), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(893), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1826), 2, sym__ws, sym_comment, - ACTIONS(1791), 3, + ACTIONS(1828), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(223), 3, + STATE(270), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1058), 3, + STATE(1792), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(10), 19, + STATE(1747), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -39292,7 +30187,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [35254] = 34, + [11745] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -39301,76 +30196,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(727), 1, + ACTIONS(855), 1, aux_sym_num_lit_token1, - ACTIONS(729), 1, + ACTIONS(857), 1, anon_sym_COLON, - ACTIONS(731), 1, + ACTIONS(859), 1, anon_sym_COLON_COLON, - ACTIONS(733), 1, + ACTIONS(861), 1, anon_sym_DQUOTE, - ACTIONS(739), 1, + ACTIONS(867), 1, aux_sym_sym_lit_token1, - ACTIONS(741), 1, + ACTIONS(869), 1, anon_sym_LPAREN, - ACTIONS(747), 1, + ACTIONS(875), 1, anon_sym_POUND_QMARK, - ACTIONS(749), 1, + ACTIONS(877), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(751), 1, + ACTIONS(879), 1, anon_sym_POUND_SQUOTE, - ACTIONS(753), 1, + ACTIONS(881), 1, anon_sym_SQUOTE, - ACTIONS(755), 1, + ACTIONS(883), 1, anon_sym_BQUOTE, - ACTIONS(757), 1, + ACTIONS(885), 1, anon_sym_COMMA_AT, - ACTIONS(759), 1, + ACTIONS(887), 1, anon_sym_COMMA, - ACTIONS(761), 1, + ACTIONS(889), 1, anon_sym_cl, - ACTIONS(1475), 1, + ACTIONS(1608), 1, anon_sym_POUND, - STATE(1811), 1, + ACTIONS(1834), 1, + sym_self_referential_reader_macro, + STATE(1793), 1, sym__bare_set_lit, - STATE(1813), 1, - sym_sym_lit, - STATE(2036), 1, + STATE(2138), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2224), 1, + sym_sym_lit, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(745), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(763), 2, + ACTIONS(312), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(765), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(767), 2, + ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1793), 2, + ACTIONS(873), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(893), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(1795), 3, + ACTIONS(1832), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(290), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1812), 3, + STATE(1792), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1797), 19, + STATE(1741), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -39390,7 +30287,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [35386] = 34, + [11880] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -39399,76 +30296,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(727), 1, + ACTIONS(855), 1, aux_sym_num_lit_token1, - ACTIONS(729), 1, + ACTIONS(857), 1, anon_sym_COLON, - ACTIONS(731), 1, + ACTIONS(859), 1, anon_sym_COLON_COLON, - ACTIONS(733), 1, + ACTIONS(861), 1, anon_sym_DQUOTE, - ACTIONS(739), 1, + ACTIONS(867), 1, aux_sym_sym_lit_token1, - ACTIONS(741), 1, + ACTIONS(869), 1, anon_sym_LPAREN, - ACTIONS(747), 1, + ACTIONS(875), 1, anon_sym_POUND_QMARK, - ACTIONS(749), 1, + ACTIONS(877), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(751), 1, + ACTIONS(879), 1, anon_sym_POUND_SQUOTE, - ACTIONS(753), 1, + ACTIONS(881), 1, anon_sym_SQUOTE, - ACTIONS(755), 1, + ACTIONS(883), 1, anon_sym_BQUOTE, - ACTIONS(757), 1, + ACTIONS(885), 1, anon_sym_COMMA_AT, - ACTIONS(759), 1, + ACTIONS(887), 1, anon_sym_COMMA, - ACTIONS(761), 1, + ACTIONS(889), 1, anon_sym_cl, - ACTIONS(1475), 1, + ACTIONS(1608), 1, anon_sym_POUND, - STATE(1811), 1, + ACTIONS(1838), 1, + sym_self_referential_reader_macro, + STATE(1793), 1, sym__bare_set_lit, - STATE(1813), 1, - sym_sym_lit, - STATE(2036), 1, + STATE(2138), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2224), 1, + sym_sym_lit, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(745), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(763), 2, + ACTIONS(312), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(765), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(767), 2, + ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1797), 2, + ACTIONS(873), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(893), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(1799), 3, + ACTIONS(1836), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(291), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1812), 3, + STATE(1792), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1798), 19, + STATE(1740), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -39488,7 +30387,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [35518] = 34, + [12015] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -39497,76 +30396,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(569), 1, + ACTIONS(590), 1, aux_sym_num_lit_token1, - ACTIONS(571), 1, + ACTIONS(592), 1, anon_sym_COLON, - ACTIONS(573), 1, + ACTIONS(594), 1, anon_sym_COLON_COLON, - ACTIONS(575), 1, + ACTIONS(596), 1, anon_sym_DQUOTE, - ACTIONS(581), 1, + ACTIONS(602), 1, aux_sym_sym_lit_token1, - ACTIONS(583), 1, + ACTIONS(604), 1, anon_sym_LPAREN, - ACTIONS(589), 1, + ACTIONS(610), 1, anon_sym_POUND_QMARK, - ACTIONS(591), 1, + ACTIONS(612), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(593), 1, + ACTIONS(614), 1, anon_sym_POUND_SQUOTE, - ACTIONS(595), 1, + ACTIONS(616), 1, anon_sym_SQUOTE, - ACTIONS(597), 1, + ACTIONS(618), 1, anon_sym_BQUOTE, - ACTIONS(599), 1, + ACTIONS(620), 1, anon_sym_COMMA_AT, - ACTIONS(601), 1, + ACTIONS(622), 1, anon_sym_COMMA, - ACTIONS(603), 1, + ACTIONS(624), 1, anon_sym_cl, - ACTIONS(1387), 1, + ACTIONS(1480), 1, anon_sym_POUND, - STATE(1163), 1, - sym_sym_lit, - STATE(1186), 1, - sym__bare_set_lit, - STATE(2027), 1, + ACTIONS(1660), 1, + sym_self_referential_reader_macro, + STATE(2155), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(587), 2, + STATE(2313), 1, + sym__bare_set_lit, + STATE(2401), 1, + sym_sym_lit, + ACTIONS(608), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(605), 2, + ACTIONS(626), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(607), 2, + ACTIONS(630), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(609), 2, + ACTIONS(632), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(1840), 2, sym__ws, sym_comment, - ACTIONS(1801), 3, + ACTIONS(1658), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1183), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(239), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1193), 19, + STATE(2315), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2242), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -39586,85 +30487,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [35650] = 34, + [12150] = 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(590), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(592), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(594), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(596), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(602), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(604), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(610), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(612), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(614), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(616), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(618), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(620), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(622), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(624), 1, anon_sym_cl, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, + ACTIONS(1480), 1, + anon_sym_POUND, + ACTIONS(1558), 1, + sym_self_referential_reader_macro, + STATE(2155), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(31), 2, + STATE(2313), 1, + sym__bare_set_lit, + STATE(2401), 1, + sym_sym_lit, + ACTIONS(608), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(626), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(53), 2, + ACTIONS(630), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(55), 2, + ACTIONS(632), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1803), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(1805), 3, + ACTIONS(1556), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(387), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1609), 3, + STATE(2315), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(748), 19, + STATE(2243), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -39684,7 +30587,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [35782] = 34, + [12285] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -39693,76 +30596,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(821), 1, + ACTIONS(855), 1, + aux_sym_num_lit_token1, + ACTIONS(857), 1, anon_sym_COLON, - ACTIONS(823), 1, + ACTIONS(859), 1, anon_sym_COLON_COLON, - ACTIONS(825), 1, + ACTIONS(861), 1, anon_sym_DQUOTE, - ACTIONS(827), 1, + ACTIONS(867), 1, aux_sym_sym_lit_token1, - ACTIONS(845), 1, - anon_sym_cl, - ACTIONS(853), 1, - aux_sym_num_lit_token1, - ACTIONS(857), 1, + ACTIONS(869), 1, + anon_sym_LPAREN, + ACTIONS(875), 1, anon_sym_POUND_QMARK, - ACTIONS(859), 1, + ACTIONS(877), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(861), 1, + ACTIONS(879), 1, anon_sym_POUND_SQUOTE, - ACTIONS(863), 1, + ACTIONS(881), 1, anon_sym_SQUOTE, - ACTIONS(865), 1, + ACTIONS(883), 1, anon_sym_BQUOTE, - ACTIONS(867), 1, + ACTIONS(885), 1, anon_sym_COMMA_AT, - ACTIONS(869), 1, + ACTIONS(887), 1, anon_sym_COMMA, - ACTIONS(1365), 1, + ACTIONS(889), 1, + anon_sym_cl, + ACTIONS(1608), 1, anon_sym_POUND, - STATE(2051), 1, + ACTIONS(1844), 1, + sym_self_referential_reader_macro, + STATE(1793), 1, + sym__bare_set_lit, + STATE(2138), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - STATE(2333), 1, - sym__bare_set_lit, - STATE(2404), 1, + STATE(2224), 1, sym_sym_lit, - ACTIONS(653), 2, + STATE(2237), 1, + sym__metadata_lit, + ACTIONS(312), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(657), 2, + ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(855), 2, + ACTIONS(873), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(871), 2, + ACTIONS(893), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1353), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(1807), 3, + ACTIONS(1842), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2332), 3, + STATE(1792), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2304), 19, + STATE(1739), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -39782,7 +30687,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [35914] = 34, + [12420] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -39791,76 +30696,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, + ACTIONS(590), 1, aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(592), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(594), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(596), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(602), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(604), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(610), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(612), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(614), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(616), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(618), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(620), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(622), 1, anon_sym_COMMA, - ACTIONS(809), 1, + ACTIONS(624), 1, anon_sym_cl, - ACTIONS(1545), 1, + ACTIONS(1480), 1, anon_sym_POUND, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, - sym_sym_lit, - STATE(2037), 1, + ACTIONS(1670), 1, + sym_self_referential_reader_macro, + STATE(2155), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, + STATE(2313), 1, + sym__bare_set_lit, + STATE(2401), 1, + sym_sym_lit, + ACTIONS(608), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(626), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, + ACTIONS(630), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(632), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1809), 2, + ACTIONS(1846), 2, sym__ws, sym_comment, - ACTIONS(1811), 3, + ACTIONS(1668), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(405), 3, + STATE(243), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1330), 3, + STATE(2315), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1987), 19, + STATE(2244), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -39880,7 +30787,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [36046] = 34, + [12555] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -39889,76 +30796,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(183), 1, - anon_sym_POUND, - ACTIONS(187), 1, + ACTIONS(590), 1, aux_sym_num_lit_token1, - ACTIONS(189), 1, + ACTIONS(592), 1, anon_sym_COLON, - ACTIONS(191), 1, + ACTIONS(594), 1, anon_sym_COLON_COLON, - ACTIONS(193), 1, + ACTIONS(596), 1, anon_sym_DQUOTE, - ACTIONS(195), 1, + ACTIONS(602), 1, aux_sym_sym_lit_token1, - ACTIONS(210), 1, + ACTIONS(604), 1, + anon_sym_LPAREN, + ACTIONS(610), 1, anon_sym_POUND_QMARK, - ACTIONS(212), 1, + ACTIONS(612), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(214), 1, + ACTIONS(614), 1, anon_sym_POUND_SQUOTE, - ACTIONS(216), 1, + ACTIONS(616), 1, anon_sym_SQUOTE, - ACTIONS(218), 1, + ACTIONS(618), 1, anon_sym_BQUOTE, - ACTIONS(220), 1, + ACTIONS(620), 1, anon_sym_COMMA_AT, - ACTIONS(222), 1, + ACTIONS(622), 1, anon_sym_COMMA, - ACTIONS(557), 1, - anon_sym_LPAREN, - ACTIONS(561), 1, + ACTIONS(624), 1, anon_sym_cl, - STATE(1057), 1, - sym__bare_set_lit, - STATE(1059), 1, - sym_sym_lit, - STATE(2062), 1, + ACTIONS(1480), 1, + anon_sym_POUND, + ACTIONS(1674), 1, + sym_self_referential_reader_macro, + STATE(2155), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(208), 2, + STATE(2313), 1, + sym__bare_set_lit, + STATE(2401), 1, + sym_sym_lit, + ACTIONS(608), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(229), 2, + ACTIONS(626), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(231), 2, + ACTIONS(630), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(233), 2, + ACTIONS(632), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(1813), 3, + ACTIONS(1672), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1058), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1150), 19, + STATE(2315), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2245), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -39978,7 +30887,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [36178] = 34, + [12690] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -39987,76 +30896,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(183), 1, - anon_sym_POUND, - ACTIONS(187), 1, + ACTIONS(855), 1, aux_sym_num_lit_token1, - ACTIONS(189), 1, + ACTIONS(857), 1, anon_sym_COLON, - ACTIONS(191), 1, + ACTIONS(859), 1, anon_sym_COLON_COLON, - ACTIONS(193), 1, + ACTIONS(861), 1, anon_sym_DQUOTE, - ACTIONS(195), 1, + ACTIONS(867), 1, aux_sym_sym_lit_token1, - ACTIONS(210), 1, + ACTIONS(869), 1, + anon_sym_LPAREN, + ACTIONS(875), 1, anon_sym_POUND_QMARK, - ACTIONS(212), 1, + ACTIONS(877), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(214), 1, + ACTIONS(879), 1, anon_sym_POUND_SQUOTE, - ACTIONS(216), 1, + ACTIONS(881), 1, anon_sym_SQUOTE, - ACTIONS(218), 1, + ACTIONS(883), 1, anon_sym_BQUOTE, - ACTIONS(220), 1, + ACTIONS(885), 1, anon_sym_COMMA_AT, - ACTIONS(222), 1, + ACTIONS(887), 1, anon_sym_COMMA, - ACTIONS(557), 1, - anon_sym_LPAREN, - ACTIONS(561), 1, + ACTIONS(889), 1, anon_sym_cl, - STATE(1057), 1, + ACTIONS(1608), 1, + anon_sym_POUND, + ACTIONS(1852), 1, + sym_self_referential_reader_macro, + STATE(1793), 1, sym__bare_set_lit, - STATE(1059), 1, - sym_sym_lit, - STATE(2062), 1, + STATE(2138), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2224), 1, + sym_sym_lit, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(208), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(229), 2, + ACTIONS(312), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(231), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(233), 2, + ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(873), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(893), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1848), 2, sym__ws, sym_comment, - ACTIONS(1815), 3, + ACTIONS(1850), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1058), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(272), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1151), 19, + STATE(1792), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1737), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -40076,85 +30987,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [36310] = 34, + [12825] = 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(183), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(187), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(189), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(191), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(193), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(195), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(210), 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(212), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(214), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(216), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(218), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(220), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(222), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(557), 1, - anon_sym_LPAREN, - ACTIONS(561), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - STATE(1057), 1, + ACTIONS(1488), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(1059), 1, + STATE(1563), 1, sym_sym_lit, - STATE(2062), 1, + STATE(2153), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(208), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(229), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(231), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(233), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1817), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(1819), 3, + ACTIONS(1486), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(314), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1058), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1157), 19, + STATE(1564), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1477), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -40174,85 +31087,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [36442] = 34, + [12960] = 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(183), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(187), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(189), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(191), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(193), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(195), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(210), 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(212), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(214), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(216), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(218), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(220), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(222), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(557), 1, - anon_sym_LPAREN, - ACTIONS(561), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - STATE(1057), 1, + ACTIONS(1478), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(1059), 1, + STATE(1563), 1, sym_sym_lit, - STATE(2062), 1, + STATE(2153), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(208), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(229), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(231), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(233), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(1854), 2, sym__ws, sym_comment, - ACTIONS(1821), 3, + ACTIONS(1476), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1058), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(345), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1158), 19, + STATE(1562), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1474), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -40272,7 +31187,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [36574] = 34, + [13095] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -40281,76 +31196,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(821), 1, + ACTIONS(805), 1, + aux_sym_num_lit_token1, + ACTIONS(807), 1, anon_sym_COLON, - ACTIONS(823), 1, + ACTIONS(809), 1, anon_sym_COLON_COLON, - ACTIONS(825), 1, + ACTIONS(811), 1, anon_sym_DQUOTE, - ACTIONS(827), 1, + ACTIONS(817), 1, aux_sym_sym_lit_token1, - ACTIONS(845), 1, - anon_sym_cl, - ACTIONS(853), 1, - aux_sym_num_lit_token1, - ACTIONS(857), 1, + ACTIONS(819), 1, + anon_sym_LPAREN, + ACTIONS(825), 1, anon_sym_POUND_QMARK, - ACTIONS(859), 1, + ACTIONS(827), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(861), 1, + ACTIONS(829), 1, anon_sym_POUND_SQUOTE, - ACTIONS(863), 1, + ACTIONS(831), 1, anon_sym_SQUOTE, - ACTIONS(865), 1, + ACTIONS(833), 1, anon_sym_BQUOTE, - ACTIONS(867), 1, + ACTIONS(835), 1, anon_sym_COMMA_AT, - ACTIONS(869), 1, + ACTIONS(837), 1, anon_sym_COMMA, - ACTIONS(1365), 1, + ACTIONS(839), 1, + anon_sym_cl, + ACTIONS(1714), 1, anon_sym_POUND, - STATE(2051), 1, + ACTIONS(1860), 1, + sym_self_referential_reader_macro, + STATE(1781), 1, + sym__bare_set_lit, + STATE(1783), 1, + sym_sym_lit, + STATE(2121), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2333), 1, - sym__bare_set_lit, - STATE(2404), 1, - sym_sym_lit, - ACTIONS(653), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(657), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(855), 2, + ACTIONS(823), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(871), 2, + ACTIONS(841), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(845), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1353), 2, + ACTIONS(847), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(1856), 2, sym__ws, sym_comment, - ACTIONS(1823), 3, + ACTIONS(1858), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1657), 3, + STATE(245), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2332), 3, + STATE(1782), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2298), 19, + STATE(1582), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -40370,85 +31287,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [36706] = 34, + [13230] = 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(183), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(187), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(189), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(191), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(193), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(195), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(210), 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(212), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(214), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(216), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(218), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(220), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(222), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(557), 1, - anon_sym_LPAREN, - ACTIONS(561), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - STATE(1057), 1, + ACTIONS(1472), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(1059), 1, + STATE(1563), 1, sym_sym_lit, - STATE(2062), 1, + STATE(2153), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(208), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(229), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(231), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(233), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1825), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(1827), 3, + ACTIONS(1470), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(315), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1058), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1159), 19, + STATE(1564), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1467), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -40468,85 +31387,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [36838] = 34, + [13365] = 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(183), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(187), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(189), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(191), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(193), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(195), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(210), 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(212), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(214), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(216), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(218), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(220), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(222), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(557), 1, - anon_sym_LPAREN, - ACTIONS(561), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - STATE(1057), 1, + ACTIONS(1468), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(1059), 1, + STATE(1563), 1, sym_sym_lit, - STATE(2062), 1, + STATE(2153), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(208), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(229), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(231), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(233), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(1862), 2, sym__ws, sym_comment, - ACTIONS(1829), 3, + ACTIONS(1466), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1058), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(348), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1160), 19, + STATE(1562), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1466), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -40566,7 +31487,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [36970] = 34, + [13500] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -40575,76 +31496,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(183), 1, - anon_sym_POUND, - ACTIONS(187), 1, + ACTIONS(855), 1, aux_sym_num_lit_token1, - ACTIONS(189), 1, + ACTIONS(857), 1, anon_sym_COLON, - ACTIONS(191), 1, + ACTIONS(859), 1, anon_sym_COLON_COLON, - ACTIONS(193), 1, + ACTIONS(861), 1, anon_sym_DQUOTE, - ACTIONS(195), 1, + ACTIONS(867), 1, aux_sym_sym_lit_token1, - ACTIONS(210), 1, + ACTIONS(869), 1, + anon_sym_LPAREN, + ACTIONS(875), 1, anon_sym_POUND_QMARK, - ACTIONS(212), 1, + ACTIONS(877), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(214), 1, + ACTIONS(879), 1, anon_sym_POUND_SQUOTE, - ACTIONS(216), 1, + ACTIONS(881), 1, anon_sym_SQUOTE, - ACTIONS(218), 1, + ACTIONS(883), 1, anon_sym_BQUOTE, - ACTIONS(220), 1, + ACTIONS(885), 1, anon_sym_COMMA_AT, - ACTIONS(222), 1, + ACTIONS(887), 1, anon_sym_COMMA, - ACTIONS(557), 1, - anon_sym_LPAREN, - ACTIONS(561), 1, + ACTIONS(889), 1, anon_sym_cl, - STATE(1057), 1, + ACTIONS(1608), 1, + anon_sym_POUND, + ACTIONS(1868), 1, + sym_self_referential_reader_macro, + STATE(1793), 1, sym__bare_set_lit, - STATE(1059), 1, - sym_sym_lit, - STATE(2062), 1, + STATE(2138), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2224), 1, + sym_sym_lit, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(208), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(229), 2, + ACTIONS(312), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(231), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(233), 2, + ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(873), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(893), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1864), 2, sym__ws, sym_comment, - ACTIONS(1831), 3, + ACTIONS(1866), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1058), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(289), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1162), 19, + STATE(1792), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1735), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -40664,85 +31587,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [37102] = 34, + [13635] = 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(183), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(187), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(189), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(191), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(193), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(195), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(210), 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(212), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(214), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(216), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(218), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(220), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(222), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(557), 1, - anon_sym_LPAREN, - ACTIONS(561), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - STATE(1057), 1, + ACTIONS(1874), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(1059), 1, + STATE(1563), 1, sym_sym_lit, - STATE(2062), 1, + STATE(2153), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(208), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(229), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(231), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(233), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1833), 2, + ACTIONS(1870), 2, sym__ws, sym_comment, - ACTIONS(1835), 3, + ACTIONS(1872), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(317), 3, + STATE(223), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1058), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1100), 19, + STATE(332), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -40762,85 +31687,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [37234] = 34, + [13770] = 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(183), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(187), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(189), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(191), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(193), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(195), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(210), 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(212), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(214), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(216), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(218), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(220), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(222), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(557), 1, - anon_sym_LPAREN, - ACTIONS(561), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - STATE(1057), 1, + ACTIONS(1880), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(1059), 1, + STATE(1563), 1, sym_sym_lit, - STATE(2062), 1, + STATE(2153), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(208), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(229), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(231), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(233), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1837), 2, + ACTIONS(1876), 2, sym__ws, sym_comment, - ACTIONS(1839), 3, + ACTIONS(1878), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(320), 3, + STATE(241), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1058), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1091), 19, + STATE(333), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -40860,85 +31787,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [37366] = 34, + [13905] = 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(183), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(187), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(189), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(191), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(193), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(195), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(210), 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(212), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(214), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(216), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(218), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(220), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(222), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(557), 1, - anon_sym_LPAREN, - ACTIONS(561), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - STATE(1057), 1, + ACTIONS(1884), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(1059), 1, + STATE(1563), 1, sym_sym_lit, - STATE(2062), 1, + STATE(2153), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(208), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(229), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(231), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(233), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(1841), 3, + ACTIONS(1882), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1058), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1089), 19, + STATE(360), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -40958,7 +31887,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [37498] = 34, + [14040] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -40967,174 +31896,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(183), 1, - anon_sym_POUND, - ACTIONS(187), 1, + ACTIONS(855), 1, aux_sym_num_lit_token1, - ACTIONS(189), 1, + ACTIONS(857), 1, anon_sym_COLON, - ACTIONS(191), 1, + ACTIONS(859), 1, anon_sym_COLON_COLON, - ACTIONS(193), 1, + ACTIONS(861), 1, anon_sym_DQUOTE, - ACTIONS(195), 1, + ACTIONS(867), 1, aux_sym_sym_lit_token1, - ACTIONS(210), 1, + ACTIONS(869), 1, + anon_sym_LPAREN, + ACTIONS(875), 1, anon_sym_POUND_QMARK, - ACTIONS(212), 1, + ACTIONS(877), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(214), 1, + ACTIONS(879), 1, anon_sym_POUND_SQUOTE, - ACTIONS(216), 1, + ACTIONS(881), 1, anon_sym_SQUOTE, - ACTIONS(218), 1, + ACTIONS(883), 1, anon_sym_BQUOTE, - ACTIONS(220), 1, + ACTIONS(885), 1, anon_sym_COMMA_AT, - ACTIONS(222), 1, + ACTIONS(887), 1, anon_sym_COMMA, - ACTIONS(557), 1, - anon_sym_LPAREN, - ACTIONS(561), 1, + ACTIONS(889), 1, anon_sym_cl, - STATE(1057), 1, + ACTIONS(1608), 1, + anon_sym_POUND, + ACTIONS(1888), 1, + sym_self_referential_reader_macro, + STATE(1793), 1, sym__bare_set_lit, - STATE(1059), 1, - sym_sym_lit, - STATE(2062), 1, + STATE(2138), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2224), 1, + sym_sym_lit, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(208), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(229), 2, + ACTIONS(312), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(231), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(233), 2, + ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, - sym__ws, - sym_comment, - ACTIONS(1843), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(1058), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1086), 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, - [37630] = 34, - 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(183), 1, - anon_sym_POUND, - ACTIONS(187), 1, - aux_sym_num_lit_token1, - ACTIONS(189), 1, - anon_sym_COLON, - ACTIONS(191), 1, - anon_sym_COLON_COLON, - ACTIONS(193), 1, - anon_sym_DQUOTE, - ACTIONS(195), 1, - aux_sym_sym_lit_token1, - ACTIONS(210), 1, - anon_sym_POUND_QMARK, - ACTIONS(212), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(214), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(216), 1, - anon_sym_SQUOTE, - ACTIONS(218), 1, - anon_sym_BQUOTE, - ACTIONS(220), 1, - anon_sym_COMMA_AT, - ACTIONS(222), 1, - anon_sym_COMMA, - ACTIONS(557), 1, - anon_sym_LPAREN, - ACTIONS(561), 1, - anon_sym_cl, - STATE(1057), 1, - sym__bare_set_lit, - STATE(1059), 1, - sym_sym_lit, - STATE(2062), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(208), 2, + ACTIONS(873), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(229), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(231), 2, + ACTIONS(893), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(233), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(1845), 3, + ACTIONS(1886), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1058), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1085), 19, + STATE(1792), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1734), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -41154,7 +31987,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [37762] = 34, + [14175] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -41163,76 +31996,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(183), 1, - anon_sym_POUND, - ACTIONS(187), 1, - aux_sym_num_lit_token1, - ACTIONS(189), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(191), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(193), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(195), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(210), 1, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(212), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(214), 1, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(216), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(218), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(220), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(222), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(557), 1, - anon_sym_LPAREN, - ACTIONS(561), 1, - anon_sym_cl, - STATE(1057), 1, - sym__bare_set_lit, - STATE(1059), 1, + ACTIONS(1442), 1, + anon_sym_POUND, + ACTIONS(1894), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(2062), 1, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(208), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(229), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(231), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(233), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1847), 2, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1890), 2, sym__ws, sym_comment, - ACTIONS(1849), 3, + ACTIONS(1892), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(321), 3, + STATE(233), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1058), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1079), 19, + STATE(2046), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -41252,7 +32087,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [37894] = 34, + [14310] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -41261,76 +32096,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(183), 1, - anon_sym_POUND, - ACTIONS(187), 1, + ACTIONS(855), 1, aux_sym_num_lit_token1, - ACTIONS(189), 1, + ACTIONS(857), 1, anon_sym_COLON, - ACTIONS(191), 1, + ACTIONS(859), 1, anon_sym_COLON_COLON, - ACTIONS(193), 1, + ACTIONS(861), 1, anon_sym_DQUOTE, - ACTIONS(195), 1, + ACTIONS(867), 1, aux_sym_sym_lit_token1, - ACTIONS(210), 1, + ACTIONS(869), 1, + anon_sym_LPAREN, + ACTIONS(875), 1, anon_sym_POUND_QMARK, - ACTIONS(212), 1, + ACTIONS(877), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(214), 1, + ACTIONS(879), 1, anon_sym_POUND_SQUOTE, - ACTIONS(216), 1, + ACTIONS(881), 1, anon_sym_SQUOTE, - ACTIONS(218), 1, + ACTIONS(883), 1, anon_sym_BQUOTE, - ACTIONS(220), 1, + ACTIONS(885), 1, anon_sym_COMMA_AT, - ACTIONS(222), 1, + ACTIONS(887), 1, anon_sym_COMMA, - ACTIONS(557), 1, - anon_sym_LPAREN, - ACTIONS(561), 1, + ACTIONS(889), 1, anon_sym_cl, - STATE(1057), 1, + ACTIONS(1608), 1, + anon_sym_POUND, + ACTIONS(1898), 1, + sym_self_referential_reader_macro, + STATE(1793), 1, sym__bare_set_lit, - STATE(1059), 1, - sym_sym_lit, - STATE(2062), 1, + STATE(2138), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2224), 1, + sym_sym_lit, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(208), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(229), 2, + ACTIONS(312), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(231), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(233), 2, + ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(873), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(893), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(1851), 3, + ACTIONS(1896), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1058), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1077), 19, + STATE(1792), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1729), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -41350,7 +32187,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [38026] = 34, + [14445] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -41359,76 +32196,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(183), 1, - anon_sym_POUND, - ACTIONS(187), 1, + ACTIONS(855), 1, aux_sym_num_lit_token1, - ACTIONS(189), 1, + ACTIONS(857), 1, anon_sym_COLON, - ACTIONS(191), 1, + ACTIONS(859), 1, anon_sym_COLON_COLON, - ACTIONS(193), 1, + ACTIONS(861), 1, anon_sym_DQUOTE, - ACTIONS(195), 1, + ACTIONS(867), 1, aux_sym_sym_lit_token1, - ACTIONS(210), 1, + ACTIONS(869), 1, + anon_sym_LPAREN, + ACTIONS(875), 1, anon_sym_POUND_QMARK, - ACTIONS(212), 1, + ACTIONS(877), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(214), 1, + ACTIONS(879), 1, anon_sym_POUND_SQUOTE, - ACTIONS(216), 1, + ACTIONS(881), 1, anon_sym_SQUOTE, - ACTIONS(218), 1, + ACTIONS(883), 1, anon_sym_BQUOTE, - ACTIONS(220), 1, + ACTIONS(885), 1, anon_sym_COMMA_AT, - ACTIONS(222), 1, + ACTIONS(887), 1, anon_sym_COMMA, - ACTIONS(557), 1, - anon_sym_LPAREN, - ACTIONS(561), 1, + ACTIONS(889), 1, anon_sym_cl, - STATE(1057), 1, + ACTIONS(1608), 1, + anon_sym_POUND, + ACTIONS(1904), 1, + sym_self_referential_reader_macro, + STATE(1793), 1, sym__bare_set_lit, - STATE(1059), 1, - sym_sym_lit, - STATE(2062), 1, + STATE(2138), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2224), 1, + sym_sym_lit, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(208), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(229), 2, + ACTIONS(312), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(231), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(233), 2, + ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1853), 2, + ACTIONS(873), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(893), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1900), 2, sym__ws, sym_comment, - ACTIONS(1855), 3, + ACTIONS(1902), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(324), 3, + STATE(293), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1058), 3, + STATE(1792), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1104), 19, + STATE(1715), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -41448,7 +32287,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [38158] = 34, + [14580] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -41457,76 +32296,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(183), 1, - anon_sym_POUND, - ACTIONS(187), 1, - aux_sym_num_lit_token1, - ACTIONS(189), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(191), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(193), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(195), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(210), 1, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(212), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(214), 1, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(216), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(218), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(220), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(222), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(557), 1, - anon_sym_LPAREN, - ACTIONS(561), 1, - anon_sym_cl, - STATE(1057), 1, - sym__bare_set_lit, - STATE(1059), 1, + ACTIONS(1442), 1, + anon_sym_POUND, + ACTIONS(1910), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(2062), 1, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(208), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(229), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(231), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(233), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1857), 2, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1906), 2, sym__ws, sym_comment, - ACTIONS(1859), 3, + ACTIONS(1908), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(325), 3, + STATE(231), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1058), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1103), 19, + STATE(2047), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -41546,85 +32387,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [38290] = 34, + [14715] = 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(183), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(187), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(189), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(191), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(193), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(195), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(210), 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(212), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(214), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(216), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(218), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(220), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(222), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(557), 1, - anon_sym_LPAREN, - ACTIONS(561), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - STATE(1057), 1, + ACTIONS(1916), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(1059), 1, + STATE(1563), 1, sym_sym_lit, - STATE(2062), 1, + STATE(2153), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(208), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(229), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(231), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(233), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1861), 2, + ACTIONS(1912), 2, sym__ws, sym_comment, - ACTIONS(1863), 3, + ACTIONS(1914), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(326), 3, + STATE(269), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1058), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1101), 19, + STATE(432), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -41644,7 +32487,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [38422] = 34, + [14850] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -41653,76 +32496,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(183), 1, - anon_sym_POUND, - ACTIONS(187), 1, - aux_sym_num_lit_token1, - ACTIONS(189), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(191), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(193), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(195), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(210), 1, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(212), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(214), 1, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(216), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(218), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(220), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(222), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(557), 1, - anon_sym_LPAREN, - ACTIONS(561), 1, - anon_sym_cl, - STATE(1057), 1, - sym__bare_set_lit, - STATE(1059), 1, + ACTIONS(1442), 1, + anon_sym_POUND, + ACTIONS(1922), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(2062), 1, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(208), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(229), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(231), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(233), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1865), 2, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1918), 2, sym__ws, sym_comment, - ACTIONS(1867), 3, + ACTIONS(1920), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(328), 3, + STATE(229), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1058), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1097), 19, + STATE(2048), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -41742,7 +32587,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [38554] = 34, + [14985] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -41751,76 +32596,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(183), 1, - anon_sym_POUND, - ACTIONS(187), 1, + ACTIONS(805), 1, aux_sym_num_lit_token1, - ACTIONS(189), 1, + ACTIONS(807), 1, anon_sym_COLON, - ACTIONS(191), 1, + ACTIONS(809), 1, anon_sym_COLON_COLON, - ACTIONS(193), 1, + ACTIONS(811), 1, anon_sym_DQUOTE, - ACTIONS(195), 1, + ACTIONS(817), 1, aux_sym_sym_lit_token1, - ACTIONS(210), 1, + ACTIONS(819), 1, + anon_sym_LPAREN, + ACTIONS(825), 1, anon_sym_POUND_QMARK, - ACTIONS(212), 1, + ACTIONS(827), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(214), 1, + ACTIONS(829), 1, anon_sym_POUND_SQUOTE, - ACTIONS(216), 1, + ACTIONS(831), 1, anon_sym_SQUOTE, - ACTIONS(218), 1, + ACTIONS(833), 1, anon_sym_BQUOTE, - ACTIONS(220), 1, + ACTIONS(835), 1, anon_sym_COMMA_AT, - ACTIONS(222), 1, + ACTIONS(837), 1, anon_sym_COMMA, - ACTIONS(557), 1, - anon_sym_LPAREN, - ACTIONS(561), 1, + ACTIONS(839), 1, anon_sym_cl, - STATE(1057), 1, + ACTIONS(1714), 1, + anon_sym_POUND, + ACTIONS(1926), 1, + sym_self_referential_reader_macro, + STATE(1781), 1, sym__bare_set_lit, - STATE(1059), 1, + STATE(1783), 1, sym_sym_lit, - STATE(2062), 1, + STATE(2121), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(208), 2, + ACTIONS(823), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(229), 2, + ACTIONS(841), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(231), 2, + ACTIONS(845), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(233), 2, + ACTIONS(847), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(1869), 3, + ACTIONS(1924), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1058), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1094), 19, + STATE(1782), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1581), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -41840,7 +32687,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [38686] = 34, + [15120] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -41849,76 +32696,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(183), 1, - anon_sym_POUND, - ACTIONS(187), 1, - aux_sym_num_lit_token1, - ACTIONS(189), 1, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(592), 1, anon_sym_COLON, - ACTIONS(191), 1, + ACTIONS(594), 1, anon_sym_COLON_COLON, - ACTIONS(193), 1, + ACTIONS(596), 1, anon_sym_DQUOTE, - ACTIONS(195), 1, + ACTIONS(602), 1, aux_sym_sym_lit_token1, - ACTIONS(210), 1, + ACTIONS(624), 1, + anon_sym_cl, + ACTIONS(729), 1, + aux_sym_num_lit_token1, + ACTIONS(733), 1, anon_sym_POUND_QMARK, - ACTIONS(212), 1, + ACTIONS(735), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(214), 1, + ACTIONS(737), 1, anon_sym_POUND_SQUOTE, - ACTIONS(216), 1, + ACTIONS(739), 1, anon_sym_SQUOTE, - ACTIONS(218), 1, + ACTIONS(741), 1, anon_sym_BQUOTE, - ACTIONS(220), 1, + ACTIONS(743), 1, anon_sym_COMMA_AT, - ACTIONS(222), 1, + ACTIONS(745), 1, anon_sym_COMMA, - ACTIONS(557), 1, - anon_sym_LPAREN, - ACTIONS(561), 1, - anon_sym_cl, - STATE(1057), 1, - sym__bare_set_lit, - STATE(1059), 1, - sym_sym_lit, - STATE(2062), 1, + ACTIONS(1554), 1, + anon_sym_POUND, + ACTIONS(1774), 1, + sym_self_referential_reader_macro, + STATE(2146), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(208), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(229), 2, + STATE(2313), 1, + sym__bare_set_lit, + STATE(2401), 1, + sym_sym_lit, + ACTIONS(626), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(231), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(233), 2, + ACTIONS(632), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(731), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(747), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(1871), 3, + ACTIONS(1772), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1058), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1093), 19, + STATE(2315), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2259), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -41938,7 +32787,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [38818] = 34, + [15255] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -41947,76 +32796,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(183), 1, - anon_sym_POUND, - ACTIONS(187), 1, + ACTIONS(590), 1, aux_sym_num_lit_token1, - ACTIONS(189), 1, + ACTIONS(592), 1, anon_sym_COLON, - ACTIONS(191), 1, + ACTIONS(594), 1, anon_sym_COLON_COLON, - ACTIONS(193), 1, + ACTIONS(596), 1, anon_sym_DQUOTE, - ACTIONS(195), 1, + ACTIONS(602), 1, aux_sym_sym_lit_token1, - ACTIONS(210), 1, + ACTIONS(604), 1, + anon_sym_LPAREN, + ACTIONS(610), 1, anon_sym_POUND_QMARK, - ACTIONS(212), 1, + ACTIONS(612), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(214), 1, + ACTIONS(614), 1, anon_sym_POUND_SQUOTE, - ACTIONS(216), 1, + ACTIONS(616), 1, anon_sym_SQUOTE, - ACTIONS(218), 1, + ACTIONS(618), 1, anon_sym_BQUOTE, - ACTIONS(220), 1, + ACTIONS(620), 1, anon_sym_COMMA_AT, - ACTIONS(222), 1, + ACTIONS(622), 1, anon_sym_COMMA, - ACTIONS(557), 1, - anon_sym_LPAREN, - ACTIONS(561), 1, + ACTIONS(624), 1, anon_sym_cl, - STATE(1057), 1, - sym__bare_set_lit, - STATE(1059), 1, - sym_sym_lit, - STATE(2062), 1, + ACTIONS(1480), 1, + anon_sym_POUND, + ACTIONS(1778), 1, + sym_self_referential_reader_macro, + STATE(2155), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(208), 2, + STATE(2313), 1, + sym__bare_set_lit, + STATE(2401), 1, + sym_sym_lit, + ACTIONS(608), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(229), 2, + ACTIONS(626), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(231), 2, + ACTIONS(630), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(233), 2, + ACTIONS(632), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(1873), 3, + ACTIONS(1776), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1058), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1092), 19, + STATE(2315), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2247), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -42036,7 +32887,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [38950] = 34, + [15390] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -42045,76 +32896,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(183), 1, + ACTIONS(190), 1, anon_sym_POUND, - ACTIONS(187), 1, + ACTIONS(194), 1, aux_sym_num_lit_token1, - ACTIONS(189), 1, + ACTIONS(196), 1, anon_sym_COLON, - ACTIONS(191), 1, + ACTIONS(198), 1, anon_sym_COLON_COLON, - ACTIONS(193), 1, + ACTIONS(200), 1, anon_sym_DQUOTE, - ACTIONS(195), 1, + ACTIONS(202), 1, aux_sym_sym_lit_token1, - ACTIONS(210), 1, + ACTIONS(217), 1, anon_sym_POUND_QMARK, - ACTIONS(212), 1, + ACTIONS(219), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(214), 1, + ACTIONS(221), 1, anon_sym_POUND_SQUOTE, - ACTIONS(216), 1, + ACTIONS(223), 1, anon_sym_SQUOTE, - ACTIONS(218), 1, + ACTIONS(225), 1, anon_sym_BQUOTE, - ACTIONS(220), 1, + ACTIONS(227), 1, anon_sym_COMMA_AT, - ACTIONS(222), 1, + ACTIONS(229), 1, anon_sym_COMMA, - ACTIONS(557), 1, + ACTIONS(576), 1, anon_sym_LPAREN, - ACTIONS(561), 1, + ACTIONS(580), 1, anon_sym_cl, - STATE(1057), 1, + ACTIONS(1932), 1, + sym_self_referential_reader_macro, + STATE(1077), 1, sym__bare_set_lit, - STATE(1059), 1, + STATE(1079), 1, sym_sym_lit, - STATE(2062), 1, + STATE(2137), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(208), 2, + ACTIONS(215), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(229), 2, + ACTIONS(236), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(231), 2, + ACTIONS(240), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(233), 2, + ACTIONS(242), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(1928), 2, sym__ws, sym_comment, - ACTIONS(1875), 3, + ACTIONS(1930), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1058), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(362), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1090), 19, + STATE(1078), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(9), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -42134,7 +32987,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [39082] = 34, + [15525] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -42143,76 +32996,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(183), 1, - anon_sym_POUND, - ACTIONS(187), 1, + ACTIONS(805), 1, aux_sym_num_lit_token1, - ACTIONS(189), 1, + ACTIONS(807), 1, anon_sym_COLON, - ACTIONS(191), 1, + ACTIONS(809), 1, anon_sym_COLON_COLON, - ACTIONS(193), 1, + ACTIONS(811), 1, anon_sym_DQUOTE, - ACTIONS(195), 1, + ACTIONS(817), 1, aux_sym_sym_lit_token1, - ACTIONS(210), 1, + ACTIONS(819), 1, + anon_sym_LPAREN, + ACTIONS(825), 1, anon_sym_POUND_QMARK, - ACTIONS(212), 1, + ACTIONS(827), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(214), 1, + ACTIONS(829), 1, anon_sym_POUND_SQUOTE, - ACTIONS(216), 1, + ACTIONS(831), 1, anon_sym_SQUOTE, - ACTIONS(218), 1, + ACTIONS(833), 1, anon_sym_BQUOTE, - ACTIONS(220), 1, + ACTIONS(835), 1, anon_sym_COMMA_AT, - ACTIONS(222), 1, + ACTIONS(837), 1, anon_sym_COMMA, - ACTIONS(557), 1, - anon_sym_LPAREN, - ACTIONS(561), 1, + ACTIONS(839), 1, anon_sym_cl, - STATE(1057), 1, + ACTIONS(1714), 1, + anon_sym_POUND, + ACTIONS(1938), 1, + sym_self_referential_reader_macro, + STATE(1781), 1, sym__bare_set_lit, - STATE(1059), 1, + STATE(1783), 1, sym_sym_lit, - STATE(2062), 1, + STATE(2121), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(208), 2, + ACTIONS(823), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(229), 2, + ACTIONS(841), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(231), 2, + ACTIONS(845), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(233), 2, + ACTIONS(847), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(1934), 2, sym__ws, sym_comment, - ACTIONS(1877), 3, + ACTIONS(1936), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1058), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(225), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1088), 19, + STATE(1782), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(152), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -42232,7 +33087,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [39214] = 34, + [15660] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -42241,174 +33096,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(777), 1, - anon_sym_COLON, - ACTIONS(779), 1, - anon_sym_COLON_COLON, - ACTIONS(781), 1, - anon_sym_DQUOTE, - ACTIONS(787), 1, - aux_sym_sym_lit_token1, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(795), 1, - anon_sym_POUND_QMARK, - ACTIONS(797), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(809), 1, - anon_sym_cl, - ACTIONS(873), 1, - aux_sym_num_lit_token1, - ACTIONS(877), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(879), 1, - anon_sym_SQUOTE, - ACTIONS(881), 1, - anon_sym_BQUOTE, - ACTIONS(883), 1, - anon_sym_COMMA_AT, - ACTIONS(885), 1, - anon_sym_COMMA, - ACTIONS(1015), 1, - anon_sym_POUND, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, - sym_sym_lit, - STATE(2048), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(811), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(815), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(875), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(887), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(1353), 2, - sym__ws, - sym_comment, - ACTIONS(1879), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1841), 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, - [39346] = 34, - ACTIONS(9), 1, - anon_sym_POUND_, - ACTIONS(11), 1, - anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(805), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(807), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(809), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(811), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(817), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(819), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(825), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(827), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(829), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(831), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(833), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(835), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(837), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(839), 1, anon_sym_cl, - STATE(1608), 1, + ACTIONS(1714), 1, + anon_sym_POUND, + ACTIONS(1944), 1, + sym_self_referential_reader_macro, + STATE(1781), 1, sym__bare_set_lit, - STATE(1610), 1, + STATE(1783), 1, sym_sym_lit, - STATE(2052), 1, + STATE(2121), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(823), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(841), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(53), 2, + ACTIONS(845), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(55), 2, + ACTIONS(847), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1881), 2, + ACTIONS(1940), 2, sym__ws, sym_comment, - ACTIONS(1883), 3, + ACTIONS(1942), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(363), 3, + STATE(365), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1609), 3, + STATE(1782), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(655), 19, + STATE(45), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -42428,7 +33187,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [39478] = 34, + [15795] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -42437,76 +33196,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(821), 1, + ACTIONS(190), 1, + anon_sym_POUND, + ACTIONS(194), 1, + aux_sym_num_lit_token1, + ACTIONS(196), 1, anon_sym_COLON, - ACTIONS(823), 1, + ACTIONS(198), 1, anon_sym_COLON_COLON, - ACTIONS(825), 1, + ACTIONS(200), 1, anon_sym_DQUOTE, - ACTIONS(827), 1, + ACTIONS(202), 1, aux_sym_sym_lit_token1, - ACTIONS(845), 1, - anon_sym_cl, - ACTIONS(853), 1, - aux_sym_num_lit_token1, - ACTIONS(857), 1, + ACTIONS(217), 1, anon_sym_POUND_QMARK, - ACTIONS(859), 1, + ACTIONS(219), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(861), 1, + ACTIONS(221), 1, anon_sym_POUND_SQUOTE, - ACTIONS(863), 1, + ACTIONS(223), 1, anon_sym_SQUOTE, - ACTIONS(865), 1, + ACTIONS(225), 1, anon_sym_BQUOTE, - ACTIONS(867), 1, + ACTIONS(227), 1, anon_sym_COMMA_AT, - ACTIONS(869), 1, + ACTIONS(229), 1, anon_sym_COMMA, - ACTIONS(1365), 1, - anon_sym_POUND, - STATE(2051), 1, + ACTIONS(576), 1, + anon_sym_LPAREN, + ACTIONS(580), 1, + anon_sym_cl, + ACTIONS(1950), 1, + sym_self_referential_reader_macro, + STATE(1077), 1, + sym__bare_set_lit, + STATE(1079), 1, + sym_sym_lit, + STATE(2137), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2333), 1, - sym__bare_set_lit, - STATE(2404), 1, - sym_sym_lit, - ACTIONS(653), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(657), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(855), 2, + ACTIONS(215), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(871), 2, + ACTIONS(236), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(240), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1353), 2, + ACTIONS(242), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(1946), 2, sym__ws, sym_comment, - ACTIONS(1885), 3, + ACTIONS(1948), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1657), 3, + STATE(224), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2332), 3, + STATE(1078), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2248), 19, + STATE(11), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -42526,7 +33287,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [39610] = 34, + [15930] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -42535,76 +33296,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(821), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(823), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(825), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(827), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(845), 1, - anon_sym_cl, - ACTIONS(853), 1, - aux_sym_num_lit_token1, - ACTIONS(857), 1, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(859), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(861), 1, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(863), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(865), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(867), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(869), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(1365), 1, + ACTIONS(1442), 1, anon_sym_POUND, - STATE(2051), 1, + ACTIONS(1956), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, + sym_sym_lit, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2333), 1, - sym__bare_set_lit, - STATE(2404), 1, - sym_sym_lit, - ACTIONS(653), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(657), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(855), 2, + ACTIONS(785), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(871), 2, + ACTIONS(797), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1887), 2, + ACTIONS(1952), 2, sym__ws, sym_comment, - ACTIONS(1889), 3, + ACTIONS(1954), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(361), 3, + STATE(368), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2332), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2292), 19, + STATE(1996), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -42624,7 +33387,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [39742] = 34, + [16065] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -42633,76 +33396,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(183), 1, - anon_sym_POUND, - ACTIONS(187), 1, - aux_sym_num_lit_token1, - ACTIONS(189), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(191), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(193), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(195), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(210), 1, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(212), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(214), 1, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(216), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(218), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(220), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(222), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(557), 1, - anon_sym_LPAREN, - ACTIONS(561), 1, - anon_sym_cl, - STATE(1057), 1, - sym__bare_set_lit, - STATE(1059), 1, + ACTIONS(1442), 1, + anon_sym_POUND, + ACTIONS(1962), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(2062), 1, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(208), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(229), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(231), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(233), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1891), 2, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1958), 2, sym__ws, sym_comment, - ACTIONS(1893), 3, + ACTIONS(1960), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(333), 3, + STATE(370), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1058), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1065), 19, + STATE(1995), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -42722,7 +33487,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [39874] = 34, + [16200] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -42731,76 +33496,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(183), 1, - anon_sym_POUND, - ACTIONS(187), 1, - aux_sym_num_lit_token1, - ACTIONS(189), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(191), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(193), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(195), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(210), 1, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(212), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(214), 1, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(216), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(218), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(220), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(222), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(557), 1, - anon_sym_LPAREN, - ACTIONS(561), 1, - anon_sym_cl, - STATE(1057), 1, - sym__bare_set_lit, - STATE(1059), 1, + ACTIONS(1442), 1, + anon_sym_POUND, + ACTIONS(1968), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(2062), 1, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(208), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(229), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(231), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(233), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1895), 2, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1964), 2, sym__ws, sym_comment, - ACTIONS(1897), 3, + ACTIONS(1966), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(334), 3, + STATE(372), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1058), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1064), 19, + STATE(1994), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -42820,7 +33587,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [40006] = 34, + [16335] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -42829,76 +33596,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(183), 1, - anon_sym_POUND, - ACTIONS(187), 1, + ACTIONS(805), 1, aux_sym_num_lit_token1, - ACTIONS(189), 1, + ACTIONS(807), 1, anon_sym_COLON, - ACTIONS(191), 1, + ACTIONS(809), 1, anon_sym_COLON_COLON, - ACTIONS(193), 1, + ACTIONS(811), 1, anon_sym_DQUOTE, - ACTIONS(195), 1, + ACTIONS(817), 1, aux_sym_sym_lit_token1, - ACTIONS(210), 1, + ACTIONS(819), 1, + anon_sym_LPAREN, + ACTIONS(825), 1, anon_sym_POUND_QMARK, - ACTIONS(212), 1, + ACTIONS(827), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(214), 1, + ACTIONS(829), 1, anon_sym_POUND_SQUOTE, - ACTIONS(216), 1, + ACTIONS(831), 1, anon_sym_SQUOTE, - ACTIONS(218), 1, + ACTIONS(833), 1, anon_sym_BQUOTE, - ACTIONS(220), 1, + ACTIONS(835), 1, anon_sym_COMMA_AT, - ACTIONS(222), 1, + ACTIONS(837), 1, anon_sym_COMMA, - ACTIONS(557), 1, - anon_sym_LPAREN, - ACTIONS(561), 1, + ACTIONS(839), 1, anon_sym_cl, - STATE(1057), 1, + ACTIONS(1714), 1, + anon_sym_POUND, + ACTIONS(1974), 1, + sym_self_referential_reader_macro, + STATE(1781), 1, sym__bare_set_lit, - STATE(1059), 1, + STATE(1783), 1, sym_sym_lit, - STATE(2062), 1, + STATE(2121), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(208), 2, + ACTIONS(823), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(229), 2, + ACTIONS(841), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(231), 2, + ACTIONS(845), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(233), 2, + ACTIONS(847), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1899), 2, + ACTIONS(1970), 2, sym__ws, sym_comment, - ACTIONS(1901), 3, + ACTIONS(1972), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(335), 3, + STATE(248), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1058), 3, + STATE(1782), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1063), 19, + STATE(1579), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -42918,85 +33687,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [40138] = 34, + [16470] = 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(524), 1, + anon_sym_COLON, + ACTIONS(526), 1, + anon_sym_COLON_COLON, + ACTIONS(528), 1, + anon_sym_DQUOTE, + ACTIONS(534), 1, + aux_sym_sym_lit_token1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, + ACTIONS(1442), 1, + anon_sym_POUND, + ACTIONS(1980), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(2052), 1, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1976), 2, sym__ws, sym_comment, - ACTIONS(1903), 3, + ACTIONS(1978), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(374), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1575), 19, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1993), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -43016,7 +33787,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [40270] = 34, + [16605] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -43025,76 +33796,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(183), 1, - anon_sym_POUND, - ACTIONS(187), 1, + ACTIONS(855), 1, aux_sym_num_lit_token1, - ACTIONS(189), 1, + ACTIONS(857), 1, anon_sym_COLON, - ACTIONS(191), 1, + ACTIONS(859), 1, anon_sym_COLON_COLON, - ACTIONS(193), 1, + ACTIONS(861), 1, anon_sym_DQUOTE, - ACTIONS(195), 1, + ACTIONS(867), 1, aux_sym_sym_lit_token1, - ACTIONS(210), 1, + ACTIONS(869), 1, + anon_sym_LPAREN, + ACTIONS(875), 1, anon_sym_POUND_QMARK, - ACTIONS(212), 1, + ACTIONS(877), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(214), 1, + ACTIONS(879), 1, anon_sym_POUND_SQUOTE, - ACTIONS(216), 1, + ACTIONS(881), 1, anon_sym_SQUOTE, - ACTIONS(218), 1, + ACTIONS(883), 1, anon_sym_BQUOTE, - ACTIONS(220), 1, + ACTIONS(885), 1, anon_sym_COMMA_AT, - ACTIONS(222), 1, + ACTIONS(887), 1, anon_sym_COMMA, - ACTIONS(557), 1, - anon_sym_LPAREN, - ACTIONS(561), 1, + ACTIONS(889), 1, anon_sym_cl, - STATE(1057), 1, + ACTIONS(1608), 1, + anon_sym_POUND, + ACTIONS(1984), 1, + sym_self_referential_reader_macro, + STATE(1793), 1, sym__bare_set_lit, - STATE(1059), 1, - sym_sym_lit, - STATE(2062), 1, + STATE(2138), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2224), 1, + sym_sym_lit, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(208), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(229), 2, + ACTIONS(312), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(231), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(233), 2, + ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1905), 2, + ACTIONS(873), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(893), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(1907), 3, + ACTIONS(1982), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(336), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1058), 3, + STATE(1792), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1062), 19, + STATE(1713), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -43114,7 +33887,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [40402] = 34, + [16740] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -43123,76 +33896,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(183), 1, - anon_sym_POUND, - ACTIONS(187), 1, + ACTIONS(805), 1, aux_sym_num_lit_token1, - ACTIONS(189), 1, + ACTIONS(807), 1, anon_sym_COLON, - ACTIONS(191), 1, + ACTIONS(809), 1, anon_sym_COLON_COLON, - ACTIONS(193), 1, + ACTIONS(811), 1, anon_sym_DQUOTE, - ACTIONS(195), 1, + ACTIONS(817), 1, aux_sym_sym_lit_token1, - ACTIONS(210), 1, + ACTIONS(819), 1, + anon_sym_LPAREN, + ACTIONS(825), 1, anon_sym_POUND_QMARK, - ACTIONS(212), 1, + ACTIONS(827), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(214), 1, + ACTIONS(829), 1, anon_sym_POUND_SQUOTE, - ACTIONS(216), 1, + ACTIONS(831), 1, anon_sym_SQUOTE, - ACTIONS(218), 1, + ACTIONS(833), 1, anon_sym_BQUOTE, - ACTIONS(220), 1, + ACTIONS(835), 1, anon_sym_COMMA_AT, - ACTIONS(222), 1, + ACTIONS(837), 1, anon_sym_COMMA, - ACTIONS(557), 1, - anon_sym_LPAREN, - ACTIONS(561), 1, + ACTIONS(839), 1, anon_sym_cl, - STATE(1057), 1, + ACTIONS(1714), 1, + anon_sym_POUND, + ACTIONS(1988), 1, + sym_self_referential_reader_macro, + STATE(1781), 1, sym__bare_set_lit, - STATE(1059), 1, + STATE(1783), 1, sym_sym_lit, - STATE(2062), 1, + STATE(2121), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(208), 2, + ACTIONS(823), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(229), 2, + ACTIONS(841), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(231), 2, + ACTIONS(845), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(233), 2, + ACTIONS(847), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1909), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(1911), 3, + ACTIONS(1986), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(337), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1058), 3, + STATE(1782), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1061), 19, + STATE(1578), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -43212,85 +33987,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [40534] = 34, + [16875] = 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(855), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(857), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(859), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(861), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(867), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(869), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(875), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(877), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(879), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(881), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(883), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(885), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(887), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(889), 1, anon_sym_cl, - STATE(1608), 1, + ACTIONS(1608), 1, + anon_sym_POUND, + ACTIONS(1994), 1, + sym_self_referential_reader_macro, + STATE(1793), 1, sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, + STATE(2138), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2224), 1, + sym_sym_lit, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(312), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, + ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(873), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(893), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1990), 2, sym__ws, sym_comment, - ACTIONS(1913), 3, + ACTIONS(1992), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(295), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1576), 19, + STATE(1792), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1710), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -43310,7 +34087,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [40666] = 34, + [17010] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -43319,76 +34096,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(569), 1, + ACTIONS(907), 1, aux_sym_num_lit_token1, - ACTIONS(571), 1, + ACTIONS(909), 1, anon_sym_COLON, - ACTIONS(573), 1, + ACTIONS(911), 1, anon_sym_COLON_COLON, - ACTIONS(575), 1, + ACTIONS(913), 1, anon_sym_DQUOTE, - ACTIONS(581), 1, + ACTIONS(919), 1, aux_sym_sym_lit_token1, - ACTIONS(583), 1, + ACTIONS(921), 1, anon_sym_LPAREN, - ACTIONS(589), 1, + ACTIONS(927), 1, anon_sym_POUND_QMARK, - ACTIONS(591), 1, + ACTIONS(929), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(593), 1, + ACTIONS(931), 1, anon_sym_POUND_SQUOTE, - ACTIONS(595), 1, + ACTIONS(933), 1, anon_sym_SQUOTE, - ACTIONS(597), 1, + ACTIONS(935), 1, anon_sym_BQUOTE, - ACTIONS(599), 1, + ACTIONS(937), 1, anon_sym_COMMA_AT, - ACTIONS(601), 1, + ACTIONS(939), 1, anon_sym_COMMA, - ACTIONS(603), 1, + ACTIONS(941), 1, anon_sym_cl, - ACTIONS(1387), 1, + ACTIONS(1998), 1, anon_sym_POUND, - STATE(1163), 1, + ACTIONS(2002), 1, + sym_self_referential_reader_macro, + STATE(1165), 1, sym_sym_lit, - STATE(1186), 1, + STATE(1176), 1, sym__bare_set_lit, - STATE(2027), 1, + STATE(2152), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(587), 2, + ACTIONS(925), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(605), 2, + ACTIONS(943), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(607), 2, + ACTIONS(947), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(609), 2, + ACTIONS(949), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1915), 2, + ACTIONS(1996), 2, sym__ws, sym_comment, - ACTIONS(1917), 3, + ACTIONS(2000), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(646), 3, + STATE(380), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1183), 3, + STATE(1175), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1191), 19, + STATE(1187), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -43408,85 +34187,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [40798] = 34, + [17145] = 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(855), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(857), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(859), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(861), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(867), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(869), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(875), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(877), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(879), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(881), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(883), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(885), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(887), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(889), 1, anon_sym_cl, - STATE(1608), 1, + ACTIONS(1608), 1, + anon_sym_POUND, + ACTIONS(2006), 1, + sym_self_referential_reader_macro, + STATE(1793), 1, sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, + STATE(2138), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2224), 1, + sym_sym_lit, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(312), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, + ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(873), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(893), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(1919), 3, + ACTIONS(2004), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(249), 19, + STATE(1792), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1700), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -43506,7 +34287,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [40930] = 34, + [17280] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -43545,17 +34326,19 @@ static uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - STATE(1608), 1, + ACTIONS(2010), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(1610), 1, + STATE(1563), 1, sym_sym_lit, - STATE(2052), 1, + STATE(2153), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -43563,28 +34346,28 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(53), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(55), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(1921), 3, + ACTIONS(2008), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1609), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(252), 19, + STATE(404), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -43604,7 +34387,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [41062] = 34, + [17415] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -43613,76 +34396,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(821), 1, + ACTIONS(855), 1, + aux_sym_num_lit_token1, + ACTIONS(857), 1, anon_sym_COLON, - ACTIONS(823), 1, + ACTIONS(859), 1, anon_sym_COLON_COLON, - ACTIONS(825), 1, + ACTIONS(861), 1, anon_sym_DQUOTE, - ACTIONS(827), 1, + ACTIONS(867), 1, aux_sym_sym_lit_token1, - ACTIONS(845), 1, - anon_sym_cl, - ACTIONS(853), 1, - aux_sym_num_lit_token1, - ACTIONS(857), 1, + ACTIONS(869), 1, + anon_sym_LPAREN, + ACTIONS(875), 1, anon_sym_POUND_QMARK, - ACTIONS(859), 1, + ACTIONS(877), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(861), 1, + ACTIONS(879), 1, anon_sym_POUND_SQUOTE, - ACTIONS(863), 1, + ACTIONS(881), 1, anon_sym_SQUOTE, - ACTIONS(865), 1, + ACTIONS(883), 1, anon_sym_BQUOTE, - ACTIONS(867), 1, + ACTIONS(885), 1, anon_sym_COMMA_AT, - ACTIONS(869), 1, + ACTIONS(887), 1, anon_sym_COMMA, - ACTIONS(1365), 1, + ACTIONS(889), 1, + anon_sym_cl, + ACTIONS(1608), 1, anon_sym_POUND, - STATE(2051), 1, + ACTIONS(2014), 1, + sym_self_referential_reader_macro, + STATE(1793), 1, + sym__bare_set_lit, + STATE(2138), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - STATE(2333), 1, - sym__bare_set_lit, - STATE(2404), 1, + STATE(2224), 1, sym_sym_lit, - ACTIONS(653), 2, + STATE(2237), 1, + sym__metadata_lit, + ACTIONS(312), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(657), 2, + ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(855), 2, + ACTIONS(873), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(871), 2, + ACTIONS(893), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1923), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(1925), 3, + ACTIONS(2012), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(364), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2332), 3, + STATE(1792), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2291), 19, + STATE(1699), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -43702,183 +34487,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [41194] = 34, + [17550] = 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(789), 1, - anon_sym_LPAREN, - ACTIONS(821), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(823), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(825), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(827), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(845), 1, - anon_sym_cl, - ACTIONS(853), 1, - aux_sym_num_lit_token1, - ACTIONS(857), 1, - anon_sym_POUND_QMARK, - ACTIONS(859), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(861), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(863), 1, - anon_sym_SQUOTE, - ACTIONS(865), 1, - anon_sym_BQUOTE, - ACTIONS(867), 1, - anon_sym_COMMA_AT, - ACTIONS(869), 1, - anon_sym_COMMA, - ACTIONS(1365), 1, - anon_sym_POUND, - STATE(2051), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - STATE(2333), 1, - sym__bare_set_lit, - STATE(2404), 1, - sym_sym_lit, - ACTIONS(653), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(657), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(855), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(871), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(1927), 2, - sym__ws, - sym_comment, - ACTIONS(1929), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(366), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2332), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(2283), 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, - [41326] = 34, - 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(789), 1, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(821), 1, - anon_sym_COLON, - ACTIONS(823), 1, - anon_sym_COLON_COLON, - ACTIONS(825), 1, - anon_sym_DQUOTE, - ACTIONS(827), 1, - aux_sym_sym_lit_token1, - ACTIONS(845), 1, - anon_sym_cl, - ACTIONS(853), 1, - aux_sym_num_lit_token1, - ACTIONS(857), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(859), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(861), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(863), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(865), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(867), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(869), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(1365), 1, - anon_sym_POUND, - STATE(2051), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(2018), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, + sym__bare_set_lit, + STATE(1563), 1, + sym_sym_lit, + STATE(2153), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2333), 1, - sym__bare_set_lit, - STATE(2404), 1, - sym_sym_lit, - ACTIONS(653), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(657), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(855), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(871), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1353), 2, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(1931), 3, + ACTIONS(2016), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1657), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2332), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2287), 19, + STATE(1564), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(324), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -43898,7 +34587,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [41458] = 34, + [17685] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -43907,76 +34596,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(263), 1, - anon_sym_POUND, - ACTIONS(267), 1, + ACTIONS(522), 1, aux_sym_num_lit_token1, - ACTIONS(269), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(271), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(273), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(275), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(277), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(281), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(283), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(285), 1, + ACTIONS(546), 1, anon_sym_POUND_SQUOTE, - ACTIONS(287), 1, + ACTIONS(548), 1, anon_sym_SQUOTE, - ACTIONS(289), 1, + ACTIONS(550), 1, anon_sym_BQUOTE, - ACTIONS(291), 1, + ACTIONS(552), 1, anon_sym_COMMA_AT, - ACTIONS(293), 1, + ACTIONS(554), 1, anon_sym_COMMA, - ACTIONS(671), 1, + ACTIONS(556), 1, anon_sym_cl, - STATE(2024), 1, + ACTIONS(979), 1, + anon_sym_POUND, + ACTIONS(2024), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(2029), 1, - aux_sym_list_lit_repeat1, - STATE(2119), 1, + STATE(1902), 1, sym__bare_set_lit, - STATE(2221), 1, + STATE(2150), 1, + aux_sym_list_lit_repeat1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(279), 2, + ACTIONS(540), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(301), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(303), 2, + ACTIONS(562), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(305), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(2020), 2, sym__ws, sym_comment, - ACTIONS(1933), 3, + ACTIONS(2022), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1657), 3, + STATE(350), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2118), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2194), 19, + STATE(1912), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -43996,85 +34687,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [41590] = 34, + [17820] = 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(617), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(619), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(621), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(623), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(629), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(631), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(639), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(641), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(643), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(645), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(647), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(649), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(651), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(1569), 1, - anon_sym_POUND, - STATE(2064), 1, + ACTIONS(1532), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, + sym__bare_set_lit, + STATE(1563), 1, + sym_sym_lit, + STATE(2153), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2333), 1, - sym__bare_set_lit, - STATE(2344), 1, - sym_sym_lit, - ACTIONS(635), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(653), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(655), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(657), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1935), 2, + ACTIONS(2026), 2, sym__ws, sym_comment, - ACTIONS(1937), 3, + ACTIONS(1530), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(305), 3, + STATE(201), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2332), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2247), 19, + STATE(1515), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -44094,7 +34787,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [41722] = 34, + [17955] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -44103,76 +34796,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(617), 1, - aux_sym_num_lit_token1, - ACTIONS(619), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(621), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(623), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(629), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(631), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(639), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(641), 1, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(643), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(645), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(647), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(649), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(651), 1, - anon_sym_cl, - ACTIONS(1569), 1, + ACTIONS(1442), 1, anon_sym_POUND, - STATE(2064), 1, + ACTIONS(2024), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, + sym_sym_lit, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2333), 1, - sym__bare_set_lit, - STATE(2344), 1, - sym_sym_lit, - ACTIONS(635), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(653), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(655), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(657), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1939), 2, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(2028), 2, sym__ws, sym_comment, - ACTIONS(1941), 3, + ACTIONS(2022), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(239), 3, + STATE(322), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2332), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2246), 19, + STATE(1912), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -44192,7 +34887,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [41854] = 34, + [18090] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -44201,76 +34896,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(821), 1, + ACTIONS(590), 1, + aux_sym_num_lit_token1, + ACTIONS(592), 1, anon_sym_COLON, - ACTIONS(823), 1, + ACTIONS(594), 1, anon_sym_COLON_COLON, - ACTIONS(825), 1, + ACTIONS(596), 1, anon_sym_DQUOTE, - ACTIONS(827), 1, + ACTIONS(602), 1, aux_sym_sym_lit_token1, - ACTIONS(845), 1, - anon_sym_cl, - ACTIONS(853), 1, - aux_sym_num_lit_token1, - ACTIONS(857), 1, + ACTIONS(604), 1, + anon_sym_LPAREN, + ACTIONS(610), 1, anon_sym_POUND_QMARK, - ACTIONS(859), 1, + ACTIONS(612), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(861), 1, + ACTIONS(614), 1, anon_sym_POUND_SQUOTE, - ACTIONS(863), 1, + ACTIONS(616), 1, anon_sym_SQUOTE, - ACTIONS(865), 1, + ACTIONS(618), 1, anon_sym_BQUOTE, - ACTIONS(867), 1, + ACTIONS(620), 1, anon_sym_COMMA_AT, - ACTIONS(869), 1, + ACTIONS(622), 1, anon_sym_COMMA, - ACTIONS(1365), 1, + ACTIONS(624), 1, + anon_sym_cl, + ACTIONS(1480), 1, anon_sym_POUND, - STATE(2051), 1, + ACTIONS(2034), 1, + sym_self_referential_reader_macro, + STATE(2155), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2333), 1, + STATE(2313), 1, sym__bare_set_lit, - STATE(2404), 1, + STATE(2401), 1, sym_sym_lit, - ACTIONS(653), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(657), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(855), 2, + ACTIONS(608), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(871), 2, + ACTIONS(626), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(630), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1943), 2, + ACTIONS(632), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(2030), 2, sym__ws, sym_comment, - ACTIONS(1945), 3, + ACTIONS(2032), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(340), 3, + STATE(517), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2332), 3, + STATE(2315), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2241), 19, + STATE(2386), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -44290,85 +34987,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [41986] = 34, + [18225] = 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(524), 1, + anon_sym_COLON, + ACTIONS(526), 1, + anon_sym_COLON_COLON, + ACTIONS(528), 1, + anon_sym_DQUOTE, + ACTIONS(534), 1, + aux_sym_sym_lit_token1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, + ACTIONS(1442), 1, + anon_sym_POUND, + ACTIONS(2040), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(2052), 1, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1947), 2, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(2036), 2, sym__ws, sym_comment, - ACTIONS(1949), 3, + ACTIONS(2038), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(350), 3, + STATE(391), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1609), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(255), 19, + STATE(1988), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -44388,7 +35087,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [42118] = 34, + [18360] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -44397,76 +35096,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(617), 1, - aux_sym_num_lit_token1, - ACTIONS(619), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(621), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(623), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(629), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(631), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(639), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(641), 1, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(643), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(645), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(647), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(649), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(651), 1, - anon_sym_cl, - ACTIONS(1569), 1, + ACTIONS(1442), 1, anon_sym_POUND, - STATE(2064), 1, + ACTIONS(2046), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, + sym_sym_lit, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2333), 1, - sym__bare_set_lit, - STATE(2344), 1, - sym_sym_lit, - ACTIONS(635), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(653), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(655), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(657), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(2042), 2, sym__ws, sym_comment, - ACTIONS(1951), 3, + ACTIONS(2044), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1657), 3, + STATE(330), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2332), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2245), 19, + STATE(1913), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -44486,7 +35187,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [42250] = 34, + [18495] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -44495,76 +35196,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(821), 1, + ACTIONS(590), 1, + aux_sym_num_lit_token1, + ACTIONS(592), 1, anon_sym_COLON, - ACTIONS(823), 1, + ACTIONS(594), 1, anon_sym_COLON_COLON, - ACTIONS(825), 1, + ACTIONS(596), 1, anon_sym_DQUOTE, - ACTIONS(827), 1, + ACTIONS(602), 1, aux_sym_sym_lit_token1, - ACTIONS(845), 1, - anon_sym_cl, - ACTIONS(853), 1, - aux_sym_num_lit_token1, - ACTIONS(857), 1, + ACTIONS(604), 1, + anon_sym_LPAREN, + ACTIONS(610), 1, anon_sym_POUND_QMARK, - ACTIONS(859), 1, + ACTIONS(612), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(861), 1, + ACTIONS(614), 1, anon_sym_POUND_SQUOTE, - ACTIONS(863), 1, + ACTIONS(616), 1, anon_sym_SQUOTE, - ACTIONS(865), 1, + ACTIONS(618), 1, anon_sym_BQUOTE, - ACTIONS(867), 1, + ACTIONS(620), 1, anon_sym_COMMA_AT, - ACTIONS(869), 1, + ACTIONS(622), 1, anon_sym_COMMA, - ACTIONS(1365), 1, + ACTIONS(624), 1, + anon_sym_cl, + ACTIONS(1480), 1, anon_sym_POUND, - STATE(2051), 1, + ACTIONS(2052), 1, + sym_self_referential_reader_macro, + STATE(2155), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2333), 1, + STATE(2313), 1, sym__bare_set_lit, - STATE(2404), 1, + STATE(2401), 1, sym_sym_lit, - ACTIONS(653), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(657), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(855), 2, + ACTIONS(608), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(871), 2, + ACTIONS(626), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(630), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1353), 2, + ACTIONS(632), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(2048), 2, sym__ws, sym_comment, - ACTIONS(1953), 3, + ACTIONS(2050), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1657), 3, + STATE(256), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2332), 3, + STATE(2315), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2243), 19, + STATE(2248), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -44584,7 +35287,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [42382] = 34, + [18630] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -44593,76 +35296,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(183), 1, - anon_sym_POUND, - ACTIONS(187), 1, + ACTIONS(590), 1, aux_sym_num_lit_token1, - ACTIONS(189), 1, + ACTIONS(592), 1, anon_sym_COLON, - ACTIONS(191), 1, + ACTIONS(594), 1, anon_sym_COLON_COLON, - ACTIONS(193), 1, + ACTIONS(596), 1, anon_sym_DQUOTE, - ACTIONS(195), 1, + ACTIONS(602), 1, aux_sym_sym_lit_token1, - ACTIONS(210), 1, + ACTIONS(604), 1, + anon_sym_LPAREN, + ACTIONS(610), 1, anon_sym_POUND_QMARK, - ACTIONS(212), 1, + ACTIONS(612), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(214), 1, + ACTIONS(614), 1, anon_sym_POUND_SQUOTE, - ACTIONS(216), 1, + ACTIONS(616), 1, anon_sym_SQUOTE, - ACTIONS(218), 1, + ACTIONS(618), 1, anon_sym_BQUOTE, - ACTIONS(220), 1, + ACTIONS(620), 1, anon_sym_COMMA_AT, - ACTIONS(222), 1, + ACTIONS(622), 1, anon_sym_COMMA, - ACTIONS(557), 1, - anon_sym_LPAREN, - ACTIONS(561), 1, + ACTIONS(624), 1, anon_sym_cl, - STATE(1057), 1, - sym__bare_set_lit, - STATE(1059), 1, - sym_sym_lit, - STATE(2062), 1, + ACTIONS(1480), 1, + anon_sym_POUND, + ACTIONS(2058), 1, + sym_self_referential_reader_macro, + STATE(2155), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(208), 2, + STATE(2313), 1, + sym__bare_set_lit, + STATE(2401), 1, + sym_sym_lit, + ACTIONS(608), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(229), 2, + ACTIONS(626), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(231), 2, + ACTIONS(630), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(233), 2, + ACTIONS(632), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(2054), 2, sym__ws, sym_comment, - ACTIONS(1955), 3, + ACTIONS(2056), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1058), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(259), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(9), 19, + STATE(2315), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2239), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -44682,85 +35387,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [42514] = 34, + [18765] = 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(524), 1, + anon_sym_COLON, + ACTIONS(526), 1, + anon_sym_COLON_COLON, + ACTIONS(528), 1, + anon_sym_DQUOTE, + ACTIONS(534), 1, + aux_sym_sym_lit_token1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, + ACTIONS(1442), 1, + anon_sym_POUND, + ACTIONS(2062), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(2052), 1, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(1957), 3, + ACTIONS(2060), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(729), 19, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1990), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -44780,7 +35487,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [42646] = 34, + [18900] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -44789,76 +35496,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(821), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(823), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(825), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(827), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(845), 1, - anon_sym_cl, - ACTIONS(853), 1, - aux_sym_num_lit_token1, - ACTIONS(857), 1, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(859), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(861), 1, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(863), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(865), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(867), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(869), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(1365), 1, + ACTIONS(1442), 1, anon_sym_POUND, - STATE(2051), 1, + ACTIONS(2066), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, + sym_sym_lit, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2333), 1, - sym__bare_set_lit, - STATE(2404), 1, - sym_sym_lit, - ACTIONS(653), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(657), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(855), 2, + ACTIONS(785), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(871), 2, + ACTIONS(797), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1353), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(1959), 3, + ACTIONS(2064), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2332), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2244), 19, + STATE(1899), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -44878,7 +35587,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [42778] = 34, + [19035] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -44887,76 +35596,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(727), 1, + ACTIONS(590), 1, aux_sym_num_lit_token1, - ACTIONS(729), 1, + ACTIONS(592), 1, anon_sym_COLON, - ACTIONS(731), 1, + ACTIONS(594), 1, anon_sym_COLON_COLON, - ACTIONS(733), 1, + ACTIONS(596), 1, anon_sym_DQUOTE, - ACTIONS(739), 1, + ACTIONS(602), 1, aux_sym_sym_lit_token1, - ACTIONS(741), 1, + ACTIONS(604), 1, anon_sym_LPAREN, - ACTIONS(747), 1, + ACTIONS(610), 1, anon_sym_POUND_QMARK, - ACTIONS(749), 1, + ACTIONS(612), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(751), 1, + ACTIONS(614), 1, anon_sym_POUND_SQUOTE, - ACTIONS(753), 1, + ACTIONS(616), 1, anon_sym_SQUOTE, - ACTIONS(755), 1, + ACTIONS(618), 1, anon_sym_BQUOTE, - ACTIONS(757), 1, + ACTIONS(620), 1, anon_sym_COMMA_AT, - ACTIONS(759), 1, + ACTIONS(622), 1, anon_sym_COMMA, - ACTIONS(761), 1, + ACTIONS(624), 1, anon_sym_cl, - ACTIONS(1475), 1, + ACTIONS(1480), 1, anon_sym_POUND, - STATE(1811), 1, - sym__bare_set_lit, - STATE(1813), 1, - sym_sym_lit, - STATE(2036), 1, + ACTIONS(2070), 1, + sym_self_referential_reader_macro, + STATE(2155), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(745), 2, + STATE(2313), 1, + sym__bare_set_lit, + STATE(2401), 1, + sym_sym_lit, + ACTIONS(608), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(763), 2, + ACTIONS(626), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(765), 2, + ACTIONS(630), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(767), 2, + ACTIONS(632), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(1961), 3, + ACTIONS(2068), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1812), 3, + STATE(2315), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(97), 19, + STATE(2250), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -44976,7 +35687,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [42910] = 34, + [19170] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -44985,76 +35696,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(821), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(823), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(825), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(827), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(845), 1, - anon_sym_cl, - ACTIONS(853), 1, - aux_sym_num_lit_token1, - ACTIONS(857), 1, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(859), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(861), 1, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(863), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(865), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(867), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(869), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(1365), 1, + ACTIONS(1442), 1, anon_sym_POUND, - STATE(2051), 1, + ACTIONS(2076), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, + sym_sym_lit, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2333), 1, - sym__bare_set_lit, - STATE(2404), 1, - sym_sym_lit, - ACTIONS(653), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(657), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(855), 2, + ACTIONS(785), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(871), 2, + ACTIONS(797), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1353), 2, + ACTIONS(2072), 2, sym__ws, sym_comment, - ACTIONS(1951), 3, + ACTIONS(2074), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1657), 3, + STATE(337), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2332), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2245), 19, + STATE(1914), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -45074,7 +35787,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [43042] = 34, + [19305] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -45083,76 +35796,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(263), 1, - anon_sym_POUND, - ACTIONS(267), 1, + ACTIONS(590), 1, aux_sym_num_lit_token1, - ACTIONS(269), 1, + ACTIONS(592), 1, anon_sym_COLON, - ACTIONS(271), 1, + ACTIONS(594), 1, anon_sym_COLON_COLON, - ACTIONS(273), 1, + ACTIONS(596), 1, anon_sym_DQUOTE, - ACTIONS(275), 1, + ACTIONS(602), 1, aux_sym_sym_lit_token1, - ACTIONS(277), 1, + ACTIONS(604), 1, anon_sym_LPAREN, - ACTIONS(281), 1, + ACTIONS(610), 1, anon_sym_POUND_QMARK, - ACTIONS(283), 1, + ACTIONS(612), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(285), 1, + ACTIONS(614), 1, anon_sym_POUND_SQUOTE, - ACTIONS(287), 1, + ACTIONS(616), 1, anon_sym_SQUOTE, - ACTIONS(289), 1, + ACTIONS(618), 1, anon_sym_BQUOTE, - ACTIONS(291), 1, + ACTIONS(620), 1, anon_sym_COMMA_AT, - ACTIONS(293), 1, + ACTIONS(622), 1, anon_sym_COMMA, - ACTIONS(671), 1, + ACTIONS(624), 1, anon_sym_cl, - STATE(2024), 1, - sym_sym_lit, - STATE(2029), 1, + ACTIONS(1480), 1, + anon_sym_POUND, + ACTIONS(2080), 1, + sym_self_referential_reader_macro, + STATE(2155), 1, aux_sym_list_lit_repeat1, - STATE(2119), 1, - sym__bare_set_lit, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(279), 2, + STATE(2313), 1, + sym__bare_set_lit, + STATE(2401), 1, + sym_sym_lit, + ACTIONS(608), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(301), 2, + ACTIONS(626), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(303), 2, + ACTIONS(630), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(305), 2, + ACTIONS(632), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(1963), 3, + ACTIONS(2078), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2118), 3, + STATE(2315), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2195), 19, + STATE(2251), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -45172,7 +35887,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [43174] = 34, + [19440] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -45181,76 +35896,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, - aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(809), 1, - anon_sym_cl, - ACTIONS(1545), 1, + ACTIONS(1442), 1, anon_sym_POUND, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, + ACTIONS(2086), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(2037), 1, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(2082), 2, sym__ws, sym_comment, - ACTIONS(1965), 3, + ACTIONS(2084), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(344), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1995), 19, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1915), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -45270,7 +35987,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [43306] = 34, + [19575] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -45279,76 +35996,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(617), 1, + ACTIONS(61), 1, + anon_sym_POUND, + ACTIONS(65), 1, aux_sym_num_lit_token1, - ACTIONS(619), 1, + ACTIONS(67), 1, anon_sym_COLON, - ACTIONS(621), 1, + ACTIONS(69), 1, anon_sym_COLON_COLON, - ACTIONS(623), 1, + ACTIONS(71), 1, anon_sym_DQUOTE, - ACTIONS(629), 1, + ACTIONS(73), 1, aux_sym_sym_lit_token1, - ACTIONS(631), 1, - anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(77), 1, anon_sym_POUND_QMARK, - ACTIONS(639), 1, + ACTIONS(79), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(641), 1, + ACTIONS(81), 1, anon_sym_POUND_SQUOTE, - ACTIONS(643), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(645), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(647), 1, + ACTIONS(87), 1, anon_sym_COMMA_AT, - ACTIONS(649), 1, + ACTIONS(89), 1, anon_sym_COMMA, - ACTIONS(651), 1, + ACTIONS(775), 1, + anon_sym_LPAREN, + ACTIONS(779), 1, anon_sym_cl, - ACTIONS(1569), 1, - anon_sym_POUND, - STATE(2064), 1, + ACTIONS(2090), 1, + sym_self_referential_reader_macro, + STATE(862), 1, + sym_sym_lit, + STATE(870), 1, + sym__bare_set_lit, + STATE(2156), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2333), 1, - sym__bare_set_lit, - STATE(2344), 1, - sym_sym_lit, - ACTIONS(635), 2, + ACTIONS(75), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(653), 2, + ACTIONS(93), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(655), 2, + ACTIONS(97), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(657), 2, + ACTIONS(99), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(1959), 3, + ACTIONS(2088), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1657), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2332), 3, + STATE(863), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2244), 19, + STATE(1564), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(861), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -45368,7 +36087,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [43438] = 34, + [19710] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -45377,76 +36096,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, + ACTIONS(590), 1, aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(592), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(594), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(596), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(602), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(604), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(610), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(612), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(614), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(616), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(618), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(620), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(622), 1, anon_sym_COMMA, - ACTIONS(809), 1, + ACTIONS(624), 1, anon_sym_cl, - ACTIONS(1545), 1, + ACTIONS(1480), 1, anon_sym_POUND, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, - sym_sym_lit, - STATE(2037), 1, + ACTIONS(2094), 1, + sym_self_referential_reader_macro, + STATE(2155), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, + STATE(2313), 1, + sym__bare_set_lit, + STATE(2401), 1, + sym_sym_lit, + ACTIONS(608), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(626), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, + ACTIONS(630), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(632), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(1967), 3, + ACTIONS(2092), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1993), 19, + STATE(2315), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2252), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -45466,7 +36187,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [43570] = 34, + [19845] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -45475,76 +36196,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(263), 1, - anon_sym_POUND, - ACTIONS(267), 1, - aux_sym_num_lit_token1, - ACTIONS(269), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(271), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(273), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(275), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(277), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(281), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(283), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(285), 1, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(287), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(289), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(291), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(293), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(671), 1, - anon_sym_cl, - STATE(2024), 1, + ACTIONS(1442), 1, + anon_sym_POUND, + ACTIONS(2100), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(2029), 1, - aux_sym_list_lit_repeat1, - STATE(2119), 1, + STATE(1902), 1, sym__bare_set_lit, - STATE(2221), 1, + STATE(2136), 1, + aux_sym_list_lit_repeat1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(279), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(301), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(303), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(305), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1969), 2, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(2096), 2, sym__ws, sym_comment, - ACTIONS(1971), 3, + ACTIONS(2098), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(355), 3, + STATE(405), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2118), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2180), 19, + STATE(1987), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -45564,7 +36287,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [43702] = 34, + [19980] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -45573,76 +36296,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, - aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(809), 1, - anon_sym_cl, - ACTIONS(1545), 1, + ACTIONS(1442), 1, anon_sym_POUND, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, + ACTIONS(2106), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(2037), 1, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(2102), 2, sym__ws, sym_comment, - ACTIONS(1973), 3, + ACTIONS(2104), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(349), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1992), 19, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1916), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -45662,7 +36387,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [43834] = 34, + [20115] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -45671,76 +36396,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(617), 1, + ACTIONS(805), 1, aux_sym_num_lit_token1, - ACTIONS(619), 1, + ACTIONS(807), 1, anon_sym_COLON, - ACTIONS(621), 1, + ACTIONS(809), 1, anon_sym_COLON_COLON, - ACTIONS(623), 1, + ACTIONS(811), 1, anon_sym_DQUOTE, - ACTIONS(629), 1, + ACTIONS(817), 1, aux_sym_sym_lit_token1, - ACTIONS(631), 1, + ACTIONS(819), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(825), 1, anon_sym_POUND_QMARK, - ACTIONS(639), 1, + ACTIONS(827), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(641), 1, + ACTIONS(829), 1, anon_sym_POUND_SQUOTE, - ACTIONS(643), 1, + ACTIONS(831), 1, anon_sym_SQUOTE, - ACTIONS(645), 1, + ACTIONS(833), 1, anon_sym_BQUOTE, - ACTIONS(647), 1, + ACTIONS(835), 1, anon_sym_COMMA_AT, - ACTIONS(649), 1, + ACTIONS(837), 1, anon_sym_COMMA, - ACTIONS(651), 1, + ACTIONS(839), 1, anon_sym_cl, - ACTIONS(1569), 1, + ACTIONS(1714), 1, anon_sym_POUND, - STATE(2064), 1, + ACTIONS(2110), 1, + sym_self_referential_reader_macro, + STATE(1781), 1, + sym__bare_set_lit, + STATE(1783), 1, + sym_sym_lit, + STATE(2121), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2333), 1, - sym__bare_set_lit, - STATE(2344), 1, - sym_sym_lit, - ACTIONS(635), 2, + ACTIONS(823), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(653), 2, + ACTIONS(841), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(655), 2, + ACTIONS(845), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(657), 2, + ACTIONS(847), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(1953), 3, + ACTIONS(2108), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2332), 3, + STATE(1782), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2243), 19, + STATE(1576), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -45760,7 +36487,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [43966] = 34, + [20250] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -45769,76 +36496,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, + ACTIONS(522), 1, aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(546), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(548), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(550), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(552), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(554), 1, anon_sym_COMMA, - ACTIONS(809), 1, + ACTIONS(556), 1, anon_sym_cl, - ACTIONS(1545), 1, + ACTIONS(979), 1, anon_sym_POUND, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, + ACTIONS(2046), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(2037), 1, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2150), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, + ACTIONS(540), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, + ACTIONS(562), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(2112), 2, sym__ws, sym_comment, - ACTIONS(1975), 3, + ACTIONS(2044), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(351), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1986), 19, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1913), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -45858,7 +36587,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [44098] = 34, + [20385] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -45867,76 +36596,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(617), 1, + ACTIONS(590), 1, aux_sym_num_lit_token1, - ACTIONS(619), 1, + ACTIONS(592), 1, anon_sym_COLON, - ACTIONS(621), 1, + ACTIONS(594), 1, anon_sym_COLON_COLON, - ACTIONS(623), 1, + ACTIONS(596), 1, anon_sym_DQUOTE, - ACTIONS(629), 1, + ACTIONS(602), 1, aux_sym_sym_lit_token1, - ACTIONS(631), 1, + ACTIONS(604), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(610), 1, anon_sym_POUND_QMARK, - ACTIONS(639), 1, + ACTIONS(612), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(641), 1, + ACTIONS(614), 1, anon_sym_POUND_SQUOTE, - ACTIONS(643), 1, + ACTIONS(616), 1, anon_sym_SQUOTE, - ACTIONS(645), 1, + ACTIONS(618), 1, anon_sym_BQUOTE, - ACTIONS(647), 1, + ACTIONS(620), 1, anon_sym_COMMA_AT, - ACTIONS(649), 1, + ACTIONS(622), 1, anon_sym_COMMA, - ACTIONS(651), 1, + ACTIONS(624), 1, anon_sym_cl, - ACTIONS(1569), 1, + ACTIONS(1480), 1, anon_sym_POUND, - STATE(2064), 1, + ACTIONS(2118), 1, + sym_self_referential_reader_macro, + STATE(2155), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2333), 1, + STATE(2313), 1, sym__bare_set_lit, - STATE(2344), 1, + STATE(2401), 1, sym_sym_lit, - ACTIONS(635), 2, + ACTIONS(608), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(653), 2, + ACTIONS(626), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(655), 2, + ACTIONS(630), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(657), 2, + ACTIONS(632), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1977), 2, + ACTIONS(2114), 2, sym__ws, sym_comment, - ACTIONS(1979), 3, + ACTIONS(2116), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(404), 3, + STATE(279), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2332), 3, + STATE(2315), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2251), 19, + STATE(2255), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -45956,85 +36687,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [44230] = 34, + [20520] = 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(590), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(592), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(594), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(596), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(602), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(604), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(610), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(612), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(614), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(616), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(618), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(620), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(622), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(624), 1, anon_sym_cl, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, + ACTIONS(1480), 1, + anon_sym_POUND, + ACTIONS(2122), 1, + sym_self_referential_reader_macro, + STATE(2155), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(31), 2, + STATE(2313), 1, + sym__bare_set_lit, + STATE(2401), 1, + sym_sym_lit, + ACTIONS(608), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(626), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(53), 2, + ACTIONS(630), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(55), 2, + ACTIONS(632), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1981), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(1983), 3, + ACTIONS(2120), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(351), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1609), 3, + STATE(2315), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(256), 19, + STATE(2256), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -46054,7 +36787,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [44362] = 34, + [20655] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -46063,76 +36796,178 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(263), 1, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(592), 1, + anon_sym_COLON, + ACTIONS(594), 1, + anon_sym_COLON_COLON, + ACTIONS(596), 1, + anon_sym_DQUOTE, + ACTIONS(602), 1, + aux_sym_sym_lit_token1, + ACTIONS(624), 1, + anon_sym_cl, + ACTIONS(729), 1, + aux_sym_num_lit_token1, + ACTIONS(733), 1, + anon_sym_POUND_QMARK, + ACTIONS(735), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(737), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(739), 1, + anon_sym_SQUOTE, + ACTIONS(741), 1, + anon_sym_BQUOTE, + ACTIONS(743), 1, + anon_sym_COMMA_AT, + ACTIONS(745), 1, + anon_sym_COMMA, + ACTIONS(1554), 1, anon_sym_POUND, - ACTIONS(267), 1, + ACTIONS(1730), 1, + sym_self_referential_reader_macro, + STATE(2146), 1, + aux_sym_list_lit_repeat1, + STATE(2202), 1, + sym_old_meta_lit, + STATE(2206), 1, + sym_meta_lit, + STATE(2237), 1, + sym__metadata_lit, + STATE(2313), 1, + sym__bare_set_lit, + STATE(2401), 1, + sym_sym_lit, + ACTIONS(626), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(632), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(731), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(747), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1440), 2, + sym__ws, + sym_comment, + ACTIONS(1728), 3, + anon_sym_DOT, + sym_nil_lit, + sym_fancy_literal, + STATE(1564), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(2315), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1835), 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, + [20790] = 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(522), 1, aux_sym_num_lit_token1, - ACTIONS(269), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(271), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(273), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(275), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(277), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(281), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(283), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(285), 1, + ACTIONS(546), 1, anon_sym_POUND_SQUOTE, - ACTIONS(287), 1, + ACTIONS(548), 1, anon_sym_SQUOTE, - ACTIONS(289), 1, + ACTIONS(550), 1, anon_sym_BQUOTE, - ACTIONS(291), 1, + ACTIONS(552), 1, anon_sym_COMMA_AT, - ACTIONS(293), 1, + ACTIONS(554), 1, anon_sym_COMMA, - ACTIONS(671), 1, + ACTIONS(556), 1, anon_sym_cl, - STATE(2024), 1, + ACTIONS(979), 1, + anon_sym_POUND, + ACTIONS(2076), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(2029), 1, - aux_sym_list_lit_repeat1, - STATE(2119), 1, + STATE(1902), 1, sym__bare_set_lit, - STATE(2221), 1, + STATE(2150), 1, + aux_sym_list_lit_repeat1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(279), 2, + ACTIONS(540), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(301), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(303), 2, + ACTIONS(562), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(305), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(2124), 2, sym__ws, sym_comment, - ACTIONS(1985), 3, + ACTIONS(2074), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1657), 3, + STATE(352), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2118), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2163), 19, + STATE(1914), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -46152,7 +36987,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [44494] = 34, + [20925] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -46161,76 +36996,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(617), 1, + ACTIONS(522), 1, aux_sym_num_lit_token1, - ACTIONS(619), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(621), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(623), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(629), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(631), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(639), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(641), 1, + ACTIONS(546), 1, anon_sym_POUND_SQUOTE, - ACTIONS(643), 1, + ACTIONS(548), 1, anon_sym_SQUOTE, - ACTIONS(645), 1, + ACTIONS(550), 1, anon_sym_BQUOTE, - ACTIONS(647), 1, + ACTIONS(552), 1, anon_sym_COMMA_AT, - ACTIONS(649), 1, + ACTIONS(554), 1, anon_sym_COMMA, - ACTIONS(651), 1, + ACTIONS(556), 1, anon_sym_cl, - ACTIONS(1569), 1, + ACTIONS(979), 1, anon_sym_POUND, - STATE(2064), 1, + ACTIONS(2086), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, + sym_sym_lit, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2150), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2333), 1, - sym__bare_set_lit, - STATE(2344), 1, - sym_sym_lit, - ACTIONS(635), 2, + ACTIONS(540), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(653), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(655), 2, + ACTIONS(562), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(657), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(2126), 2, sym__ws, sym_comment, - ACTIONS(1885), 3, + ACTIONS(2084), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1657), 3, + STATE(378), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2332), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2248), 19, + STATE(1915), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -46250,7 +37087,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [44626] = 34, + [21060] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -46259,76 +37096,178 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(617), 1, + ACTIONS(524), 1, + anon_sym_COLON, + ACTIONS(526), 1, + anon_sym_COLON_COLON, + ACTIONS(528), 1, + anon_sym_DQUOTE, + ACTIONS(534), 1, + aux_sym_sym_lit_token1, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(542), 1, + anon_sym_POUND_QMARK, + ACTIONS(544), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, aux_sym_num_lit_token1, - ACTIONS(619), 1, + ACTIONS(787), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(789), 1, + anon_sym_SQUOTE, + ACTIONS(791), 1, + anon_sym_BQUOTE, + ACTIONS(793), 1, + anon_sym_COMMA_AT, + ACTIONS(795), 1, + anon_sym_COMMA, + ACTIONS(1442), 1, + anon_sym_POUND, + ACTIONS(2130), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, + sym_sym_lit, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, + aux_sym_list_lit_repeat1, + STATE(2202), 1, + sym_old_meta_lit, + STATE(2206), 1, + sym_meta_lit, + STATE(2237), 1, + sym__metadata_lit, + ACTIONS(558), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(564), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1440), 2, + sym__ws, + sym_comment, + ACTIONS(2128), 3, + anon_sym_DOT, + sym_nil_lit, + sym_fancy_literal, + STATE(1564), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1929), 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, + [21195] = 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(590), 1, + aux_sym_num_lit_token1, + ACTIONS(592), 1, anon_sym_COLON, - ACTIONS(621), 1, + ACTIONS(594), 1, anon_sym_COLON_COLON, - ACTIONS(623), 1, + ACTIONS(596), 1, anon_sym_DQUOTE, - ACTIONS(629), 1, + ACTIONS(602), 1, aux_sym_sym_lit_token1, - ACTIONS(631), 1, + ACTIONS(604), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(610), 1, anon_sym_POUND_QMARK, - ACTIONS(639), 1, + ACTIONS(612), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(641), 1, + ACTIONS(614), 1, anon_sym_POUND_SQUOTE, - ACTIONS(643), 1, + ACTIONS(616), 1, anon_sym_SQUOTE, - ACTIONS(645), 1, + ACTIONS(618), 1, anon_sym_BQUOTE, - ACTIONS(647), 1, + ACTIONS(620), 1, anon_sym_COMMA_AT, - ACTIONS(649), 1, + ACTIONS(622), 1, anon_sym_COMMA, - ACTIONS(651), 1, + ACTIONS(624), 1, anon_sym_cl, - ACTIONS(1569), 1, + ACTIONS(1480), 1, anon_sym_POUND, - STATE(2064), 1, + ACTIONS(2136), 1, + sym_self_referential_reader_macro, + STATE(2155), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2333), 1, + STATE(2313), 1, sym__bare_set_lit, - STATE(2344), 1, + STATE(2401), 1, sym_sym_lit, - ACTIONS(635), 2, + ACTIONS(608), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(653), 2, + ACTIONS(626), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(655), 2, + ACTIONS(630), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(657), 2, + ACTIONS(632), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1987), 2, + ACTIONS(2132), 2, sym__ws, sym_comment, - ACTIONS(1945), 3, + ACTIONS(2134), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(378), 3, + STATE(307), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2332), 3, + STATE(2315), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2241), 19, + STATE(2265), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -46348,7 +37287,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [44758] = 34, + [21330] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -46357,76 +37296,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(569), 1, + ACTIONS(61), 1, + anon_sym_POUND, + ACTIONS(65), 1, aux_sym_num_lit_token1, - ACTIONS(571), 1, + ACTIONS(67), 1, anon_sym_COLON, - ACTIONS(573), 1, + ACTIONS(69), 1, anon_sym_COLON_COLON, - ACTIONS(575), 1, + ACTIONS(71), 1, anon_sym_DQUOTE, - ACTIONS(581), 1, + ACTIONS(73), 1, aux_sym_sym_lit_token1, - ACTIONS(583), 1, - anon_sym_LPAREN, - ACTIONS(589), 1, + ACTIONS(77), 1, anon_sym_POUND_QMARK, - ACTIONS(591), 1, + ACTIONS(79), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(593), 1, + ACTIONS(81), 1, anon_sym_POUND_SQUOTE, - ACTIONS(595), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(597), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(599), 1, + ACTIONS(87), 1, anon_sym_COMMA_AT, - ACTIONS(601), 1, + ACTIONS(89), 1, anon_sym_COMMA, - ACTIONS(603), 1, + ACTIONS(775), 1, + anon_sym_LPAREN, + ACTIONS(779), 1, anon_sym_cl, - ACTIONS(1387), 1, - anon_sym_POUND, - STATE(1163), 1, + ACTIONS(2142), 1, + sym_self_referential_reader_macro, + STATE(862), 1, sym_sym_lit, - STATE(1186), 1, + STATE(870), 1, sym__bare_set_lit, - STATE(2027), 1, + STATE(2156), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(587), 2, + ACTIONS(75), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(605), 2, + ACTIONS(93), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(607), 2, + ACTIONS(97), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(609), 2, + ACTIONS(99), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(2138), 2, sym__ws, sym_comment, - ACTIONS(1989), 3, + ACTIONS(2140), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1183), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(415), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1269), 19, + STATE(863), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(864), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -46446,7 +37387,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [44890] = 34, + [21465] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -46455,76 +37396,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(617), 1, + ACTIONS(590), 1, aux_sym_num_lit_token1, - ACTIONS(619), 1, + ACTIONS(592), 1, anon_sym_COLON, - ACTIONS(621), 1, + ACTIONS(594), 1, anon_sym_COLON_COLON, - ACTIONS(623), 1, + ACTIONS(596), 1, anon_sym_DQUOTE, - ACTIONS(629), 1, + ACTIONS(602), 1, aux_sym_sym_lit_token1, - ACTIONS(631), 1, + ACTIONS(604), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(610), 1, anon_sym_POUND_QMARK, - ACTIONS(639), 1, + ACTIONS(612), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(641), 1, + ACTIONS(614), 1, anon_sym_POUND_SQUOTE, - ACTIONS(643), 1, + ACTIONS(616), 1, anon_sym_SQUOTE, - ACTIONS(645), 1, + ACTIONS(618), 1, anon_sym_BQUOTE, - ACTIONS(647), 1, + ACTIONS(620), 1, anon_sym_COMMA_AT, - ACTIONS(649), 1, + ACTIONS(622), 1, anon_sym_COMMA, - ACTIONS(651), 1, + ACTIONS(624), 1, anon_sym_cl, - ACTIONS(1569), 1, + ACTIONS(1480), 1, anon_sym_POUND, - STATE(2064), 1, + ACTIONS(2148), 1, + sym_self_referential_reader_macro, + STATE(2155), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2333), 1, + STATE(2313), 1, sym__bare_set_lit, - STATE(2344), 1, + STATE(2401), 1, sym_sym_lit, - ACTIONS(635), 2, + ACTIONS(608), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(653), 2, + ACTIONS(626), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(655), 2, + ACTIONS(630), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(657), 2, + ACTIONS(632), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(2144), 2, sym__ws, sym_comment, - ACTIONS(1931), 3, + ACTIONS(2146), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1657), 3, + STATE(309), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2332), 3, + STATE(2315), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2287), 19, + STATE(2270), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -46544,7 +37487,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [45022] = 34, + [21600] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -46553,76 +37496,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(569), 1, + ACTIONS(590), 1, aux_sym_num_lit_token1, - ACTIONS(571), 1, + ACTIONS(592), 1, anon_sym_COLON, - ACTIONS(573), 1, + ACTIONS(594), 1, anon_sym_COLON_COLON, - ACTIONS(575), 1, + ACTIONS(596), 1, anon_sym_DQUOTE, - ACTIONS(581), 1, + ACTIONS(602), 1, aux_sym_sym_lit_token1, - ACTIONS(583), 1, + ACTIONS(604), 1, anon_sym_LPAREN, - ACTIONS(589), 1, + ACTIONS(610), 1, anon_sym_POUND_QMARK, - ACTIONS(591), 1, + ACTIONS(612), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(593), 1, + ACTIONS(614), 1, anon_sym_POUND_SQUOTE, - ACTIONS(595), 1, + ACTIONS(616), 1, anon_sym_SQUOTE, - ACTIONS(597), 1, + ACTIONS(618), 1, anon_sym_BQUOTE, - ACTIONS(599), 1, + ACTIONS(620), 1, anon_sym_COMMA_AT, - ACTIONS(601), 1, + ACTIONS(622), 1, anon_sym_COMMA, - ACTIONS(603), 1, + ACTIONS(624), 1, anon_sym_cl, - ACTIONS(1387), 1, + ACTIONS(1480), 1, anon_sym_POUND, - STATE(1163), 1, - sym_sym_lit, - STATE(1186), 1, - sym__bare_set_lit, - STATE(2027), 1, + ACTIONS(2154), 1, + sym_self_referential_reader_macro, + STATE(2155), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(587), 2, + STATE(2313), 1, + sym__bare_set_lit, + STATE(2401), 1, + sym_sym_lit, + ACTIONS(608), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(605), 2, + ACTIONS(626), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(607), 2, + ACTIONS(630), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(609), 2, + ACTIONS(632), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1991), 2, + ACTIONS(2150), 2, sym__ws, sym_comment, - ACTIONS(1993), 3, + ACTIONS(2152), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(480), 3, + STATE(312), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1183), 3, + STATE(2315), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1270), 19, + STATE(2274), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -46642,7 +37587,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [45154] = 34, + [21735] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -46651,76 +37596,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(263), 1, - anon_sym_POUND, - ACTIONS(267), 1, + ACTIONS(590), 1, aux_sym_num_lit_token1, - ACTIONS(269), 1, + ACTIONS(592), 1, anon_sym_COLON, - ACTIONS(271), 1, + ACTIONS(594), 1, anon_sym_COLON_COLON, - ACTIONS(273), 1, + ACTIONS(596), 1, anon_sym_DQUOTE, - ACTIONS(275), 1, + ACTIONS(602), 1, aux_sym_sym_lit_token1, - ACTIONS(277), 1, + ACTIONS(604), 1, anon_sym_LPAREN, - ACTIONS(281), 1, + ACTIONS(610), 1, anon_sym_POUND_QMARK, - ACTIONS(283), 1, + ACTIONS(612), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(285), 1, + ACTIONS(614), 1, anon_sym_POUND_SQUOTE, - ACTIONS(287), 1, + ACTIONS(616), 1, anon_sym_SQUOTE, - ACTIONS(289), 1, + ACTIONS(618), 1, anon_sym_BQUOTE, - ACTIONS(291), 1, + ACTIONS(620), 1, anon_sym_COMMA_AT, - ACTIONS(293), 1, + ACTIONS(622), 1, anon_sym_COMMA, - ACTIONS(671), 1, + ACTIONS(624), 1, anon_sym_cl, - STATE(2024), 1, - sym_sym_lit, - STATE(2029), 1, + ACTIONS(1480), 1, + anon_sym_POUND, + ACTIONS(2160), 1, + sym_self_referential_reader_macro, + STATE(2155), 1, aux_sym_list_lit_repeat1, - STATE(2119), 1, - sym__bare_set_lit, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(279), 2, + STATE(2313), 1, + sym__bare_set_lit, + STATE(2401), 1, + sym_sym_lit, + ACTIONS(608), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(301), 2, + ACTIONS(626), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(303), 2, + ACTIONS(630), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(305), 2, + ACTIONS(632), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1995), 2, + ACTIONS(2156), 2, sym__ws, sym_comment, - ACTIONS(1997), 3, + ACTIONS(2158), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(367), 3, + STATE(318), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2118), 3, + STATE(2315), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2161), 19, + STATE(2279), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -46740,7 +37687,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [45286] = 34, + [21870] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -46749,76 +37696,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(263), 1, - anon_sym_POUND, - ACTIONS(267), 1, + ACTIONS(522), 1, aux_sym_num_lit_token1, - ACTIONS(269), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(271), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(273), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(275), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(277), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(281), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(283), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(285), 1, + ACTIONS(546), 1, anon_sym_POUND_SQUOTE, - ACTIONS(287), 1, + ACTIONS(548), 1, anon_sym_SQUOTE, - ACTIONS(289), 1, + ACTIONS(550), 1, anon_sym_BQUOTE, - ACTIONS(291), 1, + ACTIONS(552), 1, anon_sym_COMMA_AT, - ACTIONS(293), 1, + ACTIONS(554), 1, anon_sym_COMMA, - ACTIONS(671), 1, + ACTIONS(556), 1, anon_sym_cl, - STATE(2024), 1, + ACTIONS(979), 1, + anon_sym_POUND, + ACTIONS(2106), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(2029), 1, - aux_sym_list_lit_repeat1, - STATE(2119), 1, + STATE(1902), 1, sym__bare_set_lit, - STATE(2221), 1, + STATE(2150), 1, + aux_sym_list_lit_repeat1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(279), 2, + ACTIONS(540), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(301), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(303), 2, + ACTIONS(562), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(305), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(2162), 2, sym__ws, sym_comment, - ACTIONS(1999), 3, + ACTIONS(2104), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1657), 3, + STATE(379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2118), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2154), 19, + STATE(1916), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -46838,85 +37787,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [45418] = 34, + [22005] = 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(590), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(592), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(594), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(596), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(602), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(604), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(610), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(612), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(614), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(616), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(618), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(620), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(622), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(624), 1, anon_sym_cl, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, + ACTIONS(1480), 1, + anon_sym_POUND, + ACTIONS(2166), 1, + sym_self_referential_reader_macro, + STATE(2155), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(31), 2, + STATE(2313), 1, + sym__bare_set_lit, + STATE(2401), 1, + sym_sym_lit, + ACTIONS(608), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(626), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(53), 2, + ACTIONS(630), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(55), 2, + ACTIONS(632), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2001), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2003), 3, + ACTIONS(2164), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(394), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1609), 3, + STATE(2315), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(778), 19, + STATE(2283), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -46936,85 +37887,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [45550] = 34, + [22140] = 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(524), 1, + anon_sym_COLON, + ACTIONS(526), 1, + anon_sym_COLON_COLON, + ACTIONS(528), 1, + anon_sym_DQUOTE, + ACTIONS(534), 1, + aux_sym_sym_lit_token1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, + ACTIONS(1442), 1, + anon_sym_POUND, + ACTIONS(2170), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(2052), 1, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2005), 3, + ACTIONS(2168), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(739), 19, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1930), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -47034,85 +37987,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [45682] = 34, + [22275] = 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(590), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(592), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(594), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(596), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(602), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(604), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(610), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(612), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(614), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(616), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(618), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(620), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(622), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(624), 1, anon_sym_cl, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, + ACTIONS(1480), 1, + anon_sym_POUND, + ACTIONS(2174), 1, + sym_self_referential_reader_macro, + STATE(2155), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(31), 2, + STATE(2313), 1, + sym__bare_set_lit, + STATE(2401), 1, + sym_sym_lit, + ACTIONS(608), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(626), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(53), 2, + ACTIONS(630), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(55), 2, + ACTIONS(632), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2007), 3, + ACTIONS(2172), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(734), 19, + STATE(2315), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2287), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -47132,85 +38087,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [45814] = 34, + [22410] = 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(805), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(807), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(809), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(811), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(817), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(819), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(825), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(827), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(829), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(831), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(833), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(835), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(837), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(839), 1, anon_sym_cl, - STATE(1608), 1, + ACTIONS(1714), 1, + anon_sym_POUND, + ACTIONS(2180), 1, + sym_self_referential_reader_macro, + STATE(1781), 1, sym__bare_set_lit, - STATE(1610), 1, + STATE(1783), 1, sym_sym_lit, - STATE(2052), 1, + STATE(2121), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(823), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(841), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(53), 2, + ACTIONS(845), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(55), 2, + ACTIONS(847), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(2176), 2, sym__ws, sym_comment, - ACTIONS(2009), 3, + ACTIONS(2178), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(277), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(757), 19, + STATE(1782), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1569), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -47230,85 +38187,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [45946] = 34, + [22545] = 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(805), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(807), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(809), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(811), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(817), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(819), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(825), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(827), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(829), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(831), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(833), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(835), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(837), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(839), 1, anon_sym_cl, - STATE(1608), 1, + ACTIONS(1714), 1, + anon_sym_POUND, + ACTIONS(2186), 1, + sym_self_referential_reader_macro, + STATE(1781), 1, sym__bare_set_lit, - STATE(1610), 1, + STATE(1783), 1, sym_sym_lit, - STATE(2052), 1, + STATE(2121), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(823), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(841), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(53), 2, + ACTIONS(845), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(55), 2, + ACTIONS(847), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(2182), 2, sym__ws, sym_comment, - ACTIONS(2011), 3, + ACTIONS(2184), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(290), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(260), 19, + STATE(1782), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1679), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -47328,85 +38287,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [46078] = 34, + [22680] = 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(805), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(807), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(809), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(811), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(817), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(819), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(825), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(827), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(829), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(831), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(833), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(835), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(837), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(839), 1, anon_sym_cl, - STATE(1608), 1, + ACTIONS(1714), 1, + anon_sym_POUND, + ACTIONS(2190), 1, + sym_self_referential_reader_macro, + STATE(1781), 1, sym__bare_set_lit, - STATE(1610), 1, + STATE(1783), 1, sym_sym_lit, - STATE(2052), 1, + STATE(2121), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(823), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(841), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(53), 2, + ACTIONS(845), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(55), 2, + ACTIONS(847), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2013), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2015), 3, + ACTIONS(2188), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(386), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1609), 3, + STATE(1782), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(751), 19, + STATE(1680), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -47426,7 +38387,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [46210] = 34, + [22815] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -47435,76 +38396,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, + ACTIONS(590), 1, aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(592), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(594), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(596), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(602), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(604), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(610), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(612), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(614), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(616), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(618), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(620), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(622), 1, anon_sym_COMMA, - ACTIONS(809), 1, + ACTIONS(624), 1, anon_sym_cl, - ACTIONS(1545), 1, + ACTIONS(1480), 1, anon_sym_POUND, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, - sym_sym_lit, - STATE(2037), 1, + ACTIONS(2194), 1, + sym_self_referential_reader_macro, + STATE(2155), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, + STATE(2313), 1, + sym__bare_set_lit, + STATE(2401), 1, + sym_sym_lit, + ACTIONS(608), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(626), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, + ACTIONS(630), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(632), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2017), 3, + ACTIONS(2192), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1979), 19, + STATE(2315), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2288), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -47524,85 +38487,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [46342] = 34, + [22950] = 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(805), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(807), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(809), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(811), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(817), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(819), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(825), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(827), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(829), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(831), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(833), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(835), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(837), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(839), 1, anon_sym_cl, - STATE(1608), 1, + ACTIONS(1714), 1, + anon_sym_POUND, + ACTIONS(2198), 1, + sym_self_referential_reader_macro, + STATE(1781), 1, sym__bare_set_lit, - STATE(1610), 1, + STATE(1783), 1, sym_sym_lit, - STATE(2052), 1, + STATE(2121), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(823), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(841), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(53), 2, + ACTIONS(845), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(55), 2, + ACTIONS(847), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2019), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2021), 3, + ACTIONS(2196), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(398), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1609), 3, + STATE(1782), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(779), 19, + STATE(1681), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -47622,7 +38587,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [46474] = 34, + [23085] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -47631,76 +38596,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, - aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(809), 1, - anon_sym_cl, - ACTIONS(1545), 1, + ACTIONS(1442), 1, anon_sym_POUND, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, + ACTIONS(2202), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(2037), 1, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2023), 2, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2025), 3, + ACTIONS(2200), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(488), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1330), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1976), 19, + STATE(1931), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -47720,7 +38687,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [46606] = 34, + [23220] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -47759,17 +38726,19 @@ static uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - STATE(1608), 1, + ACTIONS(2206), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(1610), 1, + STATE(1563), 1, sym_sym_lit, - STATE(2052), 1, + STATE(2153), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -47777,126 +38746,28 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(53), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(55), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2027), 3, + ACTIONS(2204), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1609), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(800), 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, - [46738] = 34, - 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(263), 1, - anon_sym_POUND, - ACTIONS(267), 1, - aux_sym_num_lit_token1, - ACTIONS(269), 1, - anon_sym_COLON, - ACTIONS(271), 1, - anon_sym_COLON_COLON, - ACTIONS(273), 1, - anon_sym_DQUOTE, - ACTIONS(275), 1, - aux_sym_sym_lit_token1, - ACTIONS(277), 1, - anon_sym_LPAREN, - ACTIONS(281), 1, - anon_sym_POUND_QMARK, - ACTIONS(283), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(285), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(287), 1, - anon_sym_SQUOTE, - ACTIONS(289), 1, - anon_sym_BQUOTE, - ACTIONS(291), 1, - anon_sym_COMMA_AT, - ACTIONS(293), 1, - anon_sym_COMMA, - ACTIONS(671), 1, - anon_sym_cl, - STATE(2024), 1, - sym_sym_lit, - STATE(2029), 1, - aux_sym_list_lit_repeat1, - STATE(2119), 1, - sym__bare_set_lit, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(279), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(301), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(303), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(305), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(1353), 2, - sym__ws, - sym_comment, - ACTIONS(2029), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(1657), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2118), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(2116), 19, + STATE(549), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -47916,85 +38787,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [46870] = 34, + [23355] = 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(775), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(809), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(1545), 1, - anon_sym_POUND, - STATE(1384), 1, + ACTIONS(2210), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(1817), 1, + STATE(1563), 1, sym_sym_lit, - STATE(2037), 1, + STATE(2153), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2031), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2033), 3, + ACTIONS(2208), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(493), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1330), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1969), 19, + STATE(1564), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(552), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -48014,7 +38887,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [47002] = 34, + [23490] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -48023,76 +38896,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(263), 1, - anon_sym_POUND, - ACTIONS(267), 1, + ACTIONS(805), 1, aux_sym_num_lit_token1, - ACTIONS(269), 1, + ACTIONS(807), 1, anon_sym_COLON, - ACTIONS(271), 1, + ACTIONS(809), 1, anon_sym_COLON_COLON, - ACTIONS(273), 1, + ACTIONS(811), 1, anon_sym_DQUOTE, - ACTIONS(275), 1, + ACTIONS(817), 1, aux_sym_sym_lit_token1, - ACTIONS(277), 1, + ACTIONS(819), 1, anon_sym_LPAREN, - ACTIONS(281), 1, + ACTIONS(825), 1, anon_sym_POUND_QMARK, - ACTIONS(283), 1, + ACTIONS(827), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(285), 1, + ACTIONS(829), 1, anon_sym_POUND_SQUOTE, - ACTIONS(287), 1, + ACTIONS(831), 1, anon_sym_SQUOTE, - ACTIONS(289), 1, + ACTIONS(833), 1, anon_sym_BQUOTE, - ACTIONS(291), 1, + ACTIONS(835), 1, anon_sym_COMMA_AT, - ACTIONS(293), 1, + ACTIONS(837), 1, anon_sym_COMMA, - ACTIONS(671), 1, + ACTIONS(839), 1, anon_sym_cl, - STATE(2024), 1, + ACTIONS(1714), 1, + anon_sym_POUND, + ACTIONS(2216), 1, + sym_self_referential_reader_macro, + STATE(1781), 1, + sym__bare_set_lit, + STATE(1783), 1, sym_sym_lit, - STATE(2029), 1, + STATE(2121), 1, aux_sym_list_lit_repeat1, - STATE(2119), 1, - sym__bare_set_lit, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(279), 2, + ACTIONS(823), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(301), 2, + ACTIONS(841), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(303), 2, + ACTIONS(845), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(305), 2, + ACTIONS(847), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2035), 2, + ACTIONS(2212), 2, sym__ws, sym_comment, - ACTIONS(2037), 3, + ACTIONS(2214), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(377), 3, + STATE(528), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2118), 3, + STATE(1782), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2100), 19, + STATE(1779), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -48112,85 +38987,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [47134] = 34, + [23625] = 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(590), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(592), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(594), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(596), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(602), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(604), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(610), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(612), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(614), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(616), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(618), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(620), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(622), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(624), 1, anon_sym_cl, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, + ACTIONS(1480), 1, + anon_sym_POUND, + ACTIONS(2220), 1, + sym_self_referential_reader_macro, + STATE(2155), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(31), 2, + STATE(2313), 1, + sym__bare_set_lit, + STATE(2401), 1, + sym_sym_lit, + ACTIONS(608), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(626), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(53), 2, + ACTIONS(630), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(55), 2, + ACTIONS(632), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2039), 3, + ACTIONS(2218), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(528), 19, + STATE(2315), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2292), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -48210,7 +39087,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [47266] = 34, + [23760] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -48219,76 +39096,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, + ACTIONS(590), 1, aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(592), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(594), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(596), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(602), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(604), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(610), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(612), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(614), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(616), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(618), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(620), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(622), 1, anon_sym_COMMA, - ACTIONS(809), 1, + ACTIONS(624), 1, anon_sym_cl, - ACTIONS(1545), 1, + ACTIONS(1480), 1, anon_sym_POUND, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, - sym_sym_lit, - STATE(2037), 1, + ACTIONS(2224), 1, + sym_self_referential_reader_macro, + STATE(2155), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, + STATE(2313), 1, + sym__bare_set_lit, + STATE(2401), 1, + sym_sym_lit, + ACTIONS(608), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(626), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, + ACTIONS(630), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(632), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2041), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2043), 3, + ACTIONS(2222), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(499), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1330), 3, + STATE(2315), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1967), 19, + STATE(2293), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -48308,85 +39187,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [47398] = 34, + [23895] = 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(805), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(807), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(809), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(811), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(817), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(819), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(825), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(827), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(829), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(831), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(833), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(835), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(837), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(839), 1, anon_sym_cl, - STATE(1608), 1, + ACTIONS(1714), 1, + anon_sym_POUND, + ACTIONS(2228), 1, + sym_self_referential_reader_macro, + STATE(1781), 1, sym__bare_set_lit, - STATE(1610), 1, + STATE(1783), 1, sym_sym_lit, - STATE(2052), 1, + STATE(2121), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(823), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(841), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(53), 2, + ACTIONS(845), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(55), 2, + ACTIONS(847), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2045), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2047), 3, + ACTIONS(2226), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(388), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1609), 3, + STATE(1782), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(768), 19, + STATE(1682), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -48406,7 +39287,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [47530] = 34, + [24030] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -48415,76 +39296,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(821), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(823), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(825), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(827), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(845), 1, - anon_sym_cl, - ACTIONS(853), 1, - aux_sym_num_lit_token1, - ACTIONS(857), 1, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(859), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(861), 1, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(863), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(865), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(867), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(869), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(1365), 1, + ACTIONS(1442), 1, anon_sym_POUND, - STATE(2051), 1, + ACTIONS(2232), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, + sym_sym_lit, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2333), 1, - sym__bare_set_lit, - STATE(2404), 1, - sym_sym_lit, - ACTIONS(653), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(657), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(855), 2, + ACTIONS(785), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(871), 2, + ACTIONS(797), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2049), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(1941), 3, + ACTIONS(2230), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(444), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2332), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2246), 19, + STATE(1932), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -48504,7 +39387,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [47662] = 34, + [24165] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -48543,17 +39426,19 @@ static uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - STATE(1608), 1, + ACTIONS(1462), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(1610), 1, + STATE(1563), 1, sym_sym_lit, - STATE(2052), 1, + STATE(2153), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -48561,28 +39446,28 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(53), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(55), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2051), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2053), 3, + ACTIONS(1460), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(635), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1609), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1558), 19, + STATE(1564), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1447), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -48602,85 +39487,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [47794] = 34, + [24300] = 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(61), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(65), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(67), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(69), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(71), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(73), 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(77), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(79), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(81), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(87), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(89), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(775), 1, + anon_sym_LPAREN, + ACTIONS(779), 1, anon_sym_cl, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, + ACTIONS(2236), 1, + sym_self_referential_reader_macro, + STATE(862), 1, sym_sym_lit, - STATE(2052), 1, + STATE(870), 1, + sym__bare_set_lit, + STATE(2156), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(75), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(93), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(53), 2, + ACTIONS(97), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(55), 2, + ACTIONS(99), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2055), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2057), 3, + ACTIONS(2234), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(632), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1609), 3, + STATE(863), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1555), 19, + STATE(1564), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(916), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -48700,7 +39587,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [47926] = 34, + [24435] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -48709,76 +39596,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(617), 1, + ACTIONS(61), 1, + anon_sym_POUND, + ACTIONS(65), 1, aux_sym_num_lit_token1, - ACTIONS(619), 1, + ACTIONS(67), 1, anon_sym_COLON, - ACTIONS(621), 1, + ACTIONS(69), 1, anon_sym_COLON_COLON, - ACTIONS(623), 1, + ACTIONS(71), 1, anon_sym_DQUOTE, - ACTIONS(629), 1, + ACTIONS(73), 1, aux_sym_sym_lit_token1, - ACTIONS(631), 1, - anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(77), 1, anon_sym_POUND_QMARK, - ACTIONS(639), 1, + ACTIONS(79), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(641), 1, + ACTIONS(81), 1, anon_sym_POUND_SQUOTE, - ACTIONS(643), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(645), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(647), 1, + ACTIONS(87), 1, anon_sym_COMMA_AT, - ACTIONS(649), 1, + ACTIONS(89), 1, anon_sym_COMMA, - ACTIONS(651), 1, + ACTIONS(775), 1, + anon_sym_LPAREN, + ACTIONS(779), 1, anon_sym_cl, - ACTIONS(1569), 1, - anon_sym_POUND, - STATE(2064), 1, + ACTIONS(2240), 1, + sym_self_referential_reader_macro, + STATE(862), 1, + sym_sym_lit, + STATE(870), 1, + sym__bare_set_lit, + STATE(2156), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2333), 1, - sym__bare_set_lit, - STATE(2344), 1, - sym_sym_lit, - ACTIONS(635), 2, + ACTIONS(75), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(653), 2, + ACTIONS(93), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(655), 2, + ACTIONS(97), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(657), 2, + ACTIONS(99), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2059), 3, + ACTIONS(2238), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1657), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2332), 3, + STATE(863), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2257), 19, + STATE(1564), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(865), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -48798,85 +39687,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [48058] = 34, + [24570] = 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(775), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(809), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(1545), 1, - anon_sym_POUND, - STATE(1384), 1, + ACTIONS(1452), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(1817), 1, + STATE(1563), 1, sym_sym_lit, - STATE(2037), 1, + STATE(2153), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2061), 3, + ACTIONS(1450), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1330), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1966), 19, + STATE(1448), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -48896,85 +39787,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [48190] = 34, + [24705] = 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(524), 1, + anon_sym_COLON, + ACTIONS(526), 1, + anon_sym_COLON_COLON, + ACTIONS(528), 1, + anon_sym_DQUOTE, + ACTIONS(534), 1, + aux_sym_sym_lit_token1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, + ACTIONS(1442), 1, + anon_sym_POUND, + ACTIONS(2244), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(2052), 1, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2063), 2, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2065), 3, + ACTIONS(2242), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(389), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1609), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(277), 19, + STATE(1933), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -48994,7 +39887,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [48322] = 34, + [24840] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -49003,76 +39896,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, + ACTIONS(522), 1, aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(546), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(548), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(550), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(552), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(554), 1, anon_sym_COMMA, - ACTIONS(809), 1, + ACTIONS(556), 1, anon_sym_cl, - ACTIONS(1545), 1, + ACTIONS(979), 1, anon_sym_POUND, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, + ACTIONS(2130), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(2037), 1, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2150), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, + ACTIONS(540), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, + ACTIONS(562), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2067), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2069), 3, + ACTIONS(2128), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(510), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1330), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1962), 19, + STATE(1929), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -49092,7 +39987,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [48454] = 34, + [24975] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -49101,76 +39996,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(821), 1, + ACTIONS(522), 1, + aux_sym_num_lit_token1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(823), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(825), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(827), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(845), 1, - anon_sym_cl, - ACTIONS(853), 1, - aux_sym_num_lit_token1, - ACTIONS(857), 1, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(859), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(861), 1, + ACTIONS(546), 1, anon_sym_POUND_SQUOTE, - ACTIONS(863), 1, + ACTIONS(548), 1, anon_sym_SQUOTE, - ACTIONS(865), 1, + ACTIONS(550), 1, anon_sym_BQUOTE, - ACTIONS(867), 1, + ACTIONS(552), 1, anon_sym_COMMA_AT, - ACTIONS(869), 1, + ACTIONS(554), 1, anon_sym_COMMA, - ACTIONS(1365), 1, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(979), 1, anon_sym_POUND, - STATE(2051), 1, + ACTIONS(2170), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, + sym_sym_lit, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2150), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2333), 1, - sym__bare_set_lit, - STATE(2404), 1, - sym_sym_lit, - ACTIONS(653), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(657), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(855), 2, + ACTIONS(540), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(871), 2, + ACTIONS(558), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(562), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2071), 2, + ACTIONS(564), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(1937), 3, + ACTIONS(2168), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(446), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2332), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2247), 19, + STATE(1930), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -49190,7 +40087,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [48586] = 34, + [25110] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -49199,76 +40096,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, + ACTIONS(522), 1, aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(546), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(548), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(550), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(552), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(554), 1, anon_sym_COMMA, - ACTIONS(809), 1, + ACTIONS(556), 1, anon_sym_cl, - ACTIONS(1545), 1, + ACTIONS(979), 1, anon_sym_POUND, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, + ACTIONS(2202), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(2037), 1, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2150), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, + ACTIONS(540), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, + ACTIONS(562), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2073), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2075), 3, + ACTIONS(2200), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(513), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1330), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1960), 19, + STATE(1931), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -49288,85 +40187,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [48718] = 34, + [25245] = 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(263), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(267), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(269), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(271), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(273), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(275), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(277), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(281), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(283), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(285), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(287), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(289), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(291), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(293), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(671), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - STATE(2024), 1, + ACTIONS(2250), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, + sym__bare_set_lit, + STATE(1563), 1, sym_sym_lit, - STATE(2029), 1, + STATE(2153), 1, aux_sym_list_lit_repeat1, - STATE(2119), 1, - sym__bare_set_lit, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(279), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(301), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(303), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(305), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2077), 2, + ACTIONS(2246), 2, sym__ws, sym_comment, - ACTIONS(2079), 3, + ACTIONS(2248), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(481), 3, + STATE(338), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2118), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2120), 19, + STATE(582), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -49386,9 +40287,13 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [48850] = 34, + [25380] = 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, @@ -49407,64 +40312,62 @@ static 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(435), 1, - aux_sym_num_lit_token1, - ACTIONS(445), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(447), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(449), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(451), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(453), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(2083), 1, - anon_sym_POUND, - STATE(1608), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(2256), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(1610), 1, + STATE(1563), 1, sym_sym_lit, - STATE(2042), 1, + STATE(2153), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 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_POUNDC, - anon_sym_POUNDc, - ACTIONS(443), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(455), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2081), 2, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(2252), 2, sym__ws, sym_comment, - ACTIONS(2085), 3, + ACTIONS(2254), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(785), 3, + STATE(339), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1609), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1607), 19, + STATE(585), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -49484,7 +40387,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [48982] = 34, + [25515] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -49523,17 +40426,19 @@ static uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - STATE(1608), 1, + ACTIONS(2260), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(1610), 1, + STATE(1563), 1, sym_sym_lit, - STATE(2052), 1, + STATE(2153), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -49541,28 +40446,28 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(53), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(55), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2087), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2089), 3, + ACTIONS(2258), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(603), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1609), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1544), 19, + STATE(1564), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(597), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -49582,7 +40487,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [49114] = 34, + [25650] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -49591,76 +40496,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(617), 1, - aux_sym_num_lit_token1, - ACTIONS(619), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(621), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(623), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(629), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(631), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(639), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(641), 1, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(643), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(645), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(647), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(649), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(651), 1, - anon_sym_cl, - ACTIONS(1569), 1, + ACTIONS(1442), 1, anon_sym_POUND, - STATE(2064), 1, + ACTIONS(2266), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, + sym_sym_lit, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2333), 1, - sym__bare_set_lit, - STATE(2344), 1, - sym_sym_lit, - ACTIONS(635), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(653), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(655), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(657), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(2262), 2, sym__ws, sym_comment, - ACTIONS(2091), 3, + ACTIONS(2264), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1657), 3, + STATE(800), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2332), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2258), 19, + STATE(1935), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -49680,85 +40587,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [49246] = 34, + [25785] = 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(524), 1, + anon_sym_COLON, + ACTIONS(526), 1, + anon_sym_COLON_COLON, + ACTIONS(528), 1, + anon_sym_DQUOTE, + ACTIONS(534), 1, + aux_sym_sym_lit_token1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, + ACTIONS(1442), 1, + anon_sym_POUND, + ACTIONS(2272), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(2052), 1, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2093), 2, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(2268), 2, sym__ws, sym_comment, - ACTIONS(2095), 3, + ACTIONS(2270), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(586), 3, + STATE(807), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1609), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1540), 19, + STATE(1938), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -49778,85 +40687,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [49378] = 34, + [25920] = 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(524), 1, + anon_sym_COLON, + ACTIONS(526), 1, + anon_sym_COLON_COLON, + ACTIONS(528), 1, + anon_sym_DQUOTE, + ACTIONS(534), 1, + aux_sym_sym_lit_token1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, + ACTIONS(1442), 1, + anon_sym_POUND, + ACTIONS(2278), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(2052), 1, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2097), 2, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(2274), 2, sym__ws, sym_comment, - ACTIONS(2099), 3, + ACTIONS(2276), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(575), 3, + STATE(226), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1609), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1539), 19, + STATE(1939), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -49876,7 +40787,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [49510] = 34, + [26055] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -49885,76 +40796,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(263), 1, - anon_sym_POUND, - ACTIONS(267), 1, - aux_sym_num_lit_token1, - ACTIONS(269), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(271), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(273), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(275), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(277), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(281), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(283), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(285), 1, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(287), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(289), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(291), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(293), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(671), 1, - anon_sym_cl, - STATE(2024), 1, + ACTIONS(1442), 1, + anon_sym_POUND, + ACTIONS(2284), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(2029), 1, - aux_sym_list_lit_repeat1, - STATE(2119), 1, + STATE(1902), 1, sym__bare_set_lit, - STATE(2221), 1, + STATE(2136), 1, + aux_sym_list_lit_repeat1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(279), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(301), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(303), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(305), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2101), 2, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(2280), 2, sym__ws, sym_comment, - ACTIONS(2103), 3, + ACTIONS(2282), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(384), 3, + STATE(306), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2118), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2099), 19, + STATE(1940), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -49974,7 +40887,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [49642] = 34, + [26190] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -49983,76 +40896,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(263), 1, - anon_sym_POUND, - ACTIONS(267), 1, + ACTIONS(805), 1, aux_sym_num_lit_token1, - ACTIONS(269), 1, + ACTIONS(807), 1, anon_sym_COLON, - ACTIONS(271), 1, + ACTIONS(809), 1, anon_sym_COLON_COLON, - ACTIONS(273), 1, + ACTIONS(811), 1, anon_sym_DQUOTE, - ACTIONS(275), 1, + ACTIONS(817), 1, aux_sym_sym_lit_token1, - ACTIONS(277), 1, + ACTIONS(819), 1, anon_sym_LPAREN, - ACTIONS(281), 1, + ACTIONS(825), 1, anon_sym_POUND_QMARK, - ACTIONS(283), 1, + ACTIONS(827), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(285), 1, + ACTIONS(829), 1, anon_sym_POUND_SQUOTE, - ACTIONS(287), 1, + ACTIONS(831), 1, anon_sym_SQUOTE, - ACTIONS(289), 1, + ACTIONS(833), 1, anon_sym_BQUOTE, - ACTIONS(291), 1, + ACTIONS(835), 1, anon_sym_COMMA_AT, - ACTIONS(293), 1, + ACTIONS(837), 1, anon_sym_COMMA, - ACTIONS(671), 1, + ACTIONS(839), 1, anon_sym_cl, - STATE(2024), 1, + ACTIONS(1714), 1, + anon_sym_POUND, + ACTIONS(2290), 1, + sym_self_referential_reader_macro, + STATE(1781), 1, + sym__bare_set_lit, + STATE(1783), 1, sym_sym_lit, - STATE(2029), 1, + STATE(2121), 1, aux_sym_list_lit_repeat1, - STATE(2119), 1, - sym__bare_set_lit, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(279), 2, + ACTIONS(823), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(301), 2, + ACTIONS(841), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(303), 2, + ACTIONS(845), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(305), 2, + ACTIONS(847), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(2286), 2, sym__ws, sym_comment, - ACTIONS(2105), 3, + ACTIONS(2288), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1657), 3, + STATE(315), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2118), 3, + STATE(1782), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2098), 19, + STATE(1686), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -50072,13 +40987,9 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [49774] = 34, + [26325] = 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, @@ -50097,60 +41008,66 @@ static 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(749), 1, + aux_sym_num_lit_token1, + ACTIONS(753), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(755), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(757), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(759), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(761), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - STATE(1608), 1, + ACTIONS(1448), 1, + anon_sym_POUND, + ACTIONS(2294), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(1610), 1, + STATE(1563), 1, sym_sym_lit, - STATE(2052), 1, + STATE(2154), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2107), 2, + ACTIONS(751), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(763), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2109), 3, + ACTIONS(2292), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(554), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1609), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(438), 19, + STATE(1564), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1539), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -50170,7 +41087,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [49906] = 34, + [26460] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -50179,76 +41096,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(619), 1, + ACTIONS(190), 1, + anon_sym_POUND, + ACTIONS(194), 1, + aux_sym_num_lit_token1, + ACTIONS(196), 1, anon_sym_COLON, - ACTIONS(621), 1, + ACTIONS(198), 1, anon_sym_COLON_COLON, - ACTIONS(623), 1, + ACTIONS(200), 1, anon_sym_DQUOTE, - ACTIONS(629), 1, + ACTIONS(202), 1, aux_sym_sym_lit_token1, - ACTIONS(631), 1, - anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(217), 1, anon_sym_POUND_QMARK, - ACTIONS(873), 1, - aux_sym_num_lit_token1, - ACTIONS(893), 1, + ACTIONS(219), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(895), 1, + ACTIONS(221), 1, anon_sym_POUND_SQUOTE, - ACTIONS(897), 1, + ACTIONS(223), 1, anon_sym_SQUOTE, - ACTIONS(899), 1, + ACTIONS(225), 1, anon_sym_BQUOTE, - ACTIONS(901), 1, + ACTIONS(227), 1, anon_sym_COMMA_AT, - ACTIONS(903), 1, + ACTIONS(229), 1, anon_sym_COMMA, - ACTIONS(905), 1, + ACTIONS(576), 1, + anon_sym_LPAREN, + ACTIONS(580), 1, anon_sym_cl, - ACTIONS(2113), 1, - anon_sym_POUND, - STATE(1384), 1, + ACTIONS(2298), 1, + sym_self_referential_reader_macro, + STATE(1077), 1, sym__bare_set_lit, - STATE(2050), 1, + STATE(1079), 1, + sym_sym_lit, + STATE(2137), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2223), 1, - sym_sym_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(811), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(815), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(875), 2, + ACTIONS(215), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(907), 2, + ACTIONS(236), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(240), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2111), 2, + ACTIONS(242), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2115), 3, + ACTIONS(2296), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(715), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1330), 3, + STATE(1078), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2031), 19, + STATE(1564), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(10), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -50268,85 +41187,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [50038] = 34, + [26595] = 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(263), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(267), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(269), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(271), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(273), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(275), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(277), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(281), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(283), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(285), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(287), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(289), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(291), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(293), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(671), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - STATE(2024), 1, + ACTIONS(2304), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, + sym__bare_set_lit, + STATE(1563), 1, sym_sym_lit, - STATE(2029), 1, + STATE(2153), 1, aux_sym_list_lit_repeat1, - STATE(2119), 1, - sym__bare_set_lit, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(279), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(301), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(303), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(305), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(2300), 2, sym__ws, sym_comment, - ACTIONS(2117), 3, + ACTIONS(2302), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1657), 3, + STATE(366), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2118), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2096), 19, + STATE(544), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -50366,7 +41287,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [50170] = 34, + [26730] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -50375,76 +41296,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(617), 1, - aux_sym_num_lit_token1, - ACTIONS(619), 1, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(592), 1, anon_sym_COLON, - ACTIONS(621), 1, + ACTIONS(594), 1, anon_sym_COLON_COLON, - ACTIONS(623), 1, + ACTIONS(596), 1, anon_sym_DQUOTE, - ACTIONS(629), 1, + ACTIONS(602), 1, aux_sym_sym_lit_token1, - ACTIONS(631), 1, - anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(624), 1, + anon_sym_cl, + ACTIONS(729), 1, + aux_sym_num_lit_token1, + ACTIONS(733), 1, anon_sym_POUND_QMARK, - ACTIONS(639), 1, + ACTIONS(735), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(641), 1, + ACTIONS(737), 1, anon_sym_POUND_SQUOTE, - ACTIONS(643), 1, + ACTIONS(739), 1, anon_sym_SQUOTE, - ACTIONS(645), 1, + ACTIONS(741), 1, anon_sym_BQUOTE, - ACTIONS(647), 1, + ACTIONS(743), 1, anon_sym_COMMA_AT, - ACTIONS(649), 1, + ACTIONS(745), 1, anon_sym_COMMA, - ACTIONS(651), 1, - anon_sym_cl, - ACTIONS(1569), 1, + ACTIONS(1554), 1, anon_sym_POUND, - STATE(2064), 1, + ACTIONS(2052), 1, + sym_self_referential_reader_macro, + STATE(2146), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2333), 1, + STATE(2313), 1, sym__bare_set_lit, - STATE(2344), 1, + STATE(2401), 1, sym_sym_lit, - ACTIONS(635), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(653), 2, + ACTIONS(626), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(655), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(657), 2, + ACTIONS(632), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2119), 2, + ACTIONS(731), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(747), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(2306), 2, sym__ws, sym_comment, - ACTIONS(1929), 3, + ACTIONS(2050), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(360), 3, + STATE(190), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2332), 3, + STATE(2315), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2283), 19, + STATE(2248), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -50464,7 +41387,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [50302] = 34, + [26865] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -50473,76 +41396,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(617), 1, + ACTIONS(805), 1, aux_sym_num_lit_token1, - ACTIONS(619), 1, + ACTIONS(807), 1, anon_sym_COLON, - ACTIONS(621), 1, + ACTIONS(809), 1, anon_sym_COLON_COLON, - ACTIONS(623), 1, + ACTIONS(811), 1, anon_sym_DQUOTE, - ACTIONS(629), 1, + ACTIONS(817), 1, aux_sym_sym_lit_token1, - ACTIONS(631), 1, + ACTIONS(819), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(825), 1, anon_sym_POUND_QMARK, - ACTIONS(639), 1, + ACTIONS(827), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(641), 1, + ACTIONS(829), 1, anon_sym_POUND_SQUOTE, - ACTIONS(643), 1, + ACTIONS(831), 1, anon_sym_SQUOTE, - ACTIONS(645), 1, + ACTIONS(833), 1, anon_sym_BQUOTE, - ACTIONS(647), 1, + ACTIONS(835), 1, anon_sym_COMMA_AT, - ACTIONS(649), 1, + ACTIONS(837), 1, anon_sym_COMMA, - ACTIONS(651), 1, + ACTIONS(839), 1, anon_sym_cl, - ACTIONS(1569), 1, + ACTIONS(1714), 1, anon_sym_POUND, - STATE(2064), 1, + ACTIONS(2310), 1, + sym_self_referential_reader_macro, + STATE(1781), 1, + sym__bare_set_lit, + STATE(1783), 1, + sym_sym_lit, + STATE(2121), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2333), 1, - sym__bare_set_lit, - STATE(2344), 1, - sym_sym_lit, - ACTIONS(635), 2, + ACTIONS(823), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(653), 2, + ACTIONS(841), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(655), 2, + ACTIONS(845), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(657), 2, + ACTIONS(847), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2121), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(1925), 3, + ACTIONS(2308), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(369), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2332), 3, + STATE(1782), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2291), 19, + STATE(81), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -50562,85 +41487,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [50434] = 34, + [27000] = 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(617), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(619), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(621), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(623), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(629), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(631), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(639), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(641), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(643), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(645), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(647), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(649), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(651), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(1569), 1, - anon_sym_POUND, - STATE(2064), 1, + ACTIONS(2314), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, + sym__bare_set_lit, + STATE(1563), 1, + sym_sym_lit, + STATE(2153), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2333), 1, - sym__bare_set_lit, - STATE(2344), 1, - sym_sym_lit, - ACTIONS(635), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(653), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(655), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(657), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2123), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(1889), 3, + ACTIONS(2312), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(373), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2332), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2292), 19, + STATE(1564), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(609), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -50660,7 +41587,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [50566] = 34, + [27135] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -50669,76 +41596,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(263), 1, - anon_sym_POUND, - ACTIONS(267), 1, + ACTIONS(805), 1, aux_sym_num_lit_token1, - ACTIONS(269), 1, + ACTIONS(807), 1, anon_sym_COLON, - ACTIONS(271), 1, + ACTIONS(809), 1, anon_sym_COLON_COLON, - ACTIONS(273), 1, + ACTIONS(811), 1, anon_sym_DQUOTE, - ACTIONS(275), 1, + ACTIONS(817), 1, aux_sym_sym_lit_token1, - ACTIONS(277), 1, + ACTIONS(819), 1, anon_sym_LPAREN, - ACTIONS(281), 1, + ACTIONS(825), 1, anon_sym_POUND_QMARK, - ACTIONS(283), 1, + ACTIONS(827), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(285), 1, + ACTIONS(829), 1, anon_sym_POUND_SQUOTE, - ACTIONS(287), 1, + ACTIONS(831), 1, anon_sym_SQUOTE, - ACTIONS(289), 1, + ACTIONS(833), 1, anon_sym_BQUOTE, - ACTIONS(291), 1, + ACTIONS(835), 1, anon_sym_COMMA_AT, - ACTIONS(293), 1, + ACTIONS(837), 1, anon_sym_COMMA, - ACTIONS(671), 1, + ACTIONS(839), 1, anon_sym_cl, - STATE(2024), 1, + ACTIONS(1714), 1, + anon_sym_POUND, + ACTIONS(2318), 1, + sym_self_referential_reader_macro, + STATE(1781), 1, + sym__bare_set_lit, + STATE(1783), 1, sym_sym_lit, - STATE(2029), 1, + STATE(2121), 1, aux_sym_list_lit_repeat1, - STATE(2119), 1, - sym__bare_set_lit, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(279), 2, + ACTIONS(823), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(301), 2, + ACTIONS(841), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(303), 2, + ACTIONS(845), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(305), 2, + ACTIONS(847), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2125), 3, + ACTIONS(2316), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2118), 3, + STATE(1782), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2092), 19, + STATE(1687), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -50758,85 +41687,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [50698] = 34, + [27270] = 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(524), 1, + anon_sym_COLON, + ACTIONS(526), 1, + anon_sym_COLON_COLON, + ACTIONS(528), 1, + anon_sym_DQUOTE, + ACTIONS(534), 1, + aux_sym_sym_lit_token1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, + ACTIONS(1442), 1, + anon_sym_POUND, + ACTIONS(2322), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(2052), 1, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2127), 2, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2129), 3, + ACTIONS(2320), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(443), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1609), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(707), 19, + STATE(1962), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -50856,7 +41787,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [50830] = 34, + [27405] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -50865,76 +41796,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(617), 1, + ACTIONS(590), 1, aux_sym_num_lit_token1, - ACTIONS(619), 1, + ACTIONS(592), 1, anon_sym_COLON, - ACTIONS(621), 1, + ACTIONS(594), 1, anon_sym_COLON_COLON, - ACTIONS(623), 1, + ACTIONS(596), 1, anon_sym_DQUOTE, - ACTIONS(629), 1, + ACTIONS(602), 1, aux_sym_sym_lit_token1, - ACTIONS(631), 1, + ACTIONS(604), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(610), 1, anon_sym_POUND_QMARK, - ACTIONS(639), 1, + ACTIONS(612), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(641), 1, + ACTIONS(614), 1, anon_sym_POUND_SQUOTE, - ACTIONS(643), 1, + ACTIONS(616), 1, anon_sym_SQUOTE, - ACTIONS(645), 1, + ACTIONS(618), 1, anon_sym_BQUOTE, - ACTIONS(647), 1, + ACTIONS(620), 1, anon_sym_COMMA_AT, - ACTIONS(649), 1, + ACTIONS(622), 1, anon_sym_COMMA, - ACTIONS(651), 1, + ACTIONS(624), 1, anon_sym_cl, - ACTIONS(1569), 1, + ACTIONS(1480), 1, anon_sym_POUND, - STATE(2064), 1, + ACTIONS(2328), 1, + sym_self_referential_reader_macro, + STATE(2155), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2333), 1, + STATE(2313), 1, sym__bare_set_lit, - STATE(2344), 1, + STATE(2401), 1, sym_sym_lit, - ACTIONS(635), 2, + ACTIONS(608), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(653), 2, + ACTIONS(626), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(655), 2, + ACTIONS(630), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(657), 2, + ACTIONS(632), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2131), 2, + ACTIONS(2324), 2, sym__ws, sym_comment, - ACTIONS(1777), 3, + ACTIONS(2326), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(381), 3, + STATE(329), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2332), 3, + STATE(2315), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2295), 19, + STATE(2269), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -50954,85 +41887,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [50962] = 34, + [27540] = 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(524), 1, + anon_sym_COLON, + ACTIONS(526), 1, + anon_sym_COLON_COLON, + ACTIONS(528), 1, + anon_sym_DQUOTE, + ACTIONS(534), 1, + aux_sym_sym_lit_token1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, + ACTIONS(1442), 1, + anon_sym_POUND, + ACTIONS(2332), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(2052), 1, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2133), 3, + ACTIONS(2330), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(804), 19, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1961), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -51052,85 +41987,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [51094] = 34, + [27675] = 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(590), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(592), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(594), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(596), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(602), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(604), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(610), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(612), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(614), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(616), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(618), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(620), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(622), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(624), 1, anon_sym_cl, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, + ACTIONS(1480), 1, + anon_sym_POUND, + ACTIONS(2338), 1, + sym_self_referential_reader_macro, + STATE(2155), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(31), 2, + STATE(2313), 1, + sym__bare_set_lit, + STATE(2401), 1, + sym_sym_lit, + ACTIONS(608), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(626), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(53), 2, + ACTIONS(630), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(55), 2, + ACTIONS(632), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(2334), 2, sym__ws, sym_comment, - ACTIONS(2135), 3, + ACTIONS(2336), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(331), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(808), 19, + STATE(2315), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2268), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -51150,7 +42087,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [51226] = 34, + [27810] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -51159,76 +42096,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(617), 1, - aux_sym_num_lit_token1, - ACTIONS(619), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(621), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(623), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(629), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(631), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(639), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(641), 1, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(643), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(645), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(647), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(649), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(651), 1, - anon_sym_cl, - ACTIONS(1569), 1, + ACTIONS(1442), 1, anon_sym_POUND, - STATE(2064), 1, + ACTIONS(2342), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, + sym_sym_lit, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2333), 1, - sym__bare_set_lit, - STATE(2344), 1, - sym_sym_lit, - ACTIONS(635), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(653), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(655), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(657), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(1823), 3, + ACTIONS(2340), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2332), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2298), 19, + STATE(1960), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -51248,7 +42187,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [51358] = 34, + [27945] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -51257,76 +42196,178 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(263), 1, - anon_sym_POUND, - ACTIONS(267), 1, + ACTIONS(590), 1, aux_sym_num_lit_token1, - ACTIONS(269), 1, + ACTIONS(592), 1, anon_sym_COLON, - ACTIONS(271), 1, + ACTIONS(594), 1, anon_sym_COLON_COLON, - ACTIONS(273), 1, + ACTIONS(596), 1, anon_sym_DQUOTE, - ACTIONS(275), 1, + ACTIONS(602), 1, aux_sym_sym_lit_token1, - ACTIONS(277), 1, + ACTIONS(604), 1, anon_sym_LPAREN, - ACTIONS(281), 1, + ACTIONS(610), 1, anon_sym_POUND_QMARK, - ACTIONS(283), 1, + ACTIONS(612), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(285), 1, + ACTIONS(614), 1, anon_sym_POUND_SQUOTE, - ACTIONS(287), 1, + ACTIONS(616), 1, anon_sym_SQUOTE, - ACTIONS(289), 1, + ACTIONS(618), 1, anon_sym_BQUOTE, - ACTIONS(291), 1, + ACTIONS(620), 1, anon_sym_COMMA_AT, - ACTIONS(293), 1, + ACTIONS(622), 1, anon_sym_COMMA, - ACTIONS(671), 1, + ACTIONS(624), 1, anon_sym_cl, - STATE(2024), 1, - sym_sym_lit, - STATE(2029), 1, + ACTIONS(1480), 1, + anon_sym_POUND, + ACTIONS(2348), 1, + sym_self_referential_reader_macro, + STATE(2155), 1, aux_sym_list_lit_repeat1, - STATE(2119), 1, - sym__bare_set_lit, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(279), 2, + STATE(2313), 1, + sym__bare_set_lit, + STATE(2401), 1, + sym_sym_lit, + ACTIONS(608), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(301), 2, + ACTIONS(626), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(303), 2, + ACTIONS(630), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(305), 2, + ACTIONS(632), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2137), 2, + ACTIONS(2344), 2, sym__ws, sym_comment, - ACTIONS(2139), 3, + ACTIONS(2346), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(395), 3, + STATE(335), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2118), 3, + STATE(2315), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2088), 19, + STATE(2266), 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, + [28080] = 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(524), 1, + anon_sym_COLON, + ACTIONS(526), 1, + anon_sym_COLON_COLON, + ACTIONS(528), 1, + anon_sym_DQUOTE, + ACTIONS(534), 1, + aux_sym_sym_lit_token1, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(542), 1, + anon_sym_POUND_QMARK, + ACTIONS(544), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(789), 1, + anon_sym_SQUOTE, + ACTIONS(791), 1, + anon_sym_BQUOTE, + ACTIONS(793), 1, + anon_sym_COMMA_AT, + ACTIONS(795), 1, + anon_sym_COMMA, + ACTIONS(1442), 1, + anon_sym_POUND, + ACTIONS(2352), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, + sym_sym_lit, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, + aux_sym_list_lit_repeat1, + STATE(2202), 1, + sym_old_meta_lit, + STATE(2206), 1, + sym_meta_lit, + STATE(2237), 1, + sym__metadata_lit, + ACTIONS(558), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(564), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1440), 2, + sym__ws, + sym_comment, + ACTIONS(2350), 3, + anon_sym_DOT, + sym_nil_lit, + sym_fancy_literal, + STATE(1564), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2040), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -51346,7 +42387,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [51490] = 34, + [28215] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -51355,76 +42396,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(617), 1, + ACTIONS(590), 1, aux_sym_num_lit_token1, - ACTIONS(619), 1, + ACTIONS(592), 1, anon_sym_COLON, - ACTIONS(621), 1, + ACTIONS(594), 1, anon_sym_COLON_COLON, - ACTIONS(623), 1, + ACTIONS(596), 1, anon_sym_DQUOTE, - ACTIONS(629), 1, + ACTIONS(602), 1, aux_sym_sym_lit_token1, - ACTIONS(631), 1, + ACTIONS(604), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(610), 1, anon_sym_POUND_QMARK, - ACTIONS(639), 1, + ACTIONS(612), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(641), 1, + ACTIONS(614), 1, anon_sym_POUND_SQUOTE, - ACTIONS(643), 1, + ACTIONS(616), 1, anon_sym_SQUOTE, - ACTIONS(645), 1, + ACTIONS(618), 1, anon_sym_BQUOTE, - ACTIONS(647), 1, + ACTIONS(620), 1, anon_sym_COMMA_AT, - ACTIONS(649), 1, + ACTIONS(622), 1, anon_sym_COMMA, - ACTIONS(651), 1, + ACTIONS(624), 1, anon_sym_cl, - ACTIONS(1569), 1, + ACTIONS(1480), 1, anon_sym_POUND, - STATE(2064), 1, + ACTIONS(2358), 1, + sym_self_referential_reader_macro, + STATE(2155), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2333), 1, + STATE(2313), 1, sym__bare_set_lit, - STATE(2344), 1, + STATE(2401), 1, sym_sym_lit, - ACTIONS(635), 2, + ACTIONS(608), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(653), 2, + ACTIONS(626), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(655), 2, + ACTIONS(630), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(657), 2, + ACTIONS(632), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(2354), 2, sym__ws, sym_comment, - ACTIONS(1807), 3, + ACTIONS(2356), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1657), 3, + STATE(341), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2332), 3, + STATE(2315), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2304), 19, + STATE(2254), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -51444,85 +42487,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [51622] = 34, + [28350] = 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(263), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(267), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(269), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(271), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(273), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(275), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(277), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(281), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(283), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(285), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(287), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(289), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(291), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(293), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(671), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - STATE(2024), 1, + ACTIONS(2364), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, + sym__bare_set_lit, + STATE(1563), 1, sym_sym_lit, - STATE(2029), 1, + STATE(2153), 1, aux_sym_list_lit_repeat1, - STATE(2119), 1, - sym__bare_set_lit, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(279), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(301), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(303), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(305), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(2360), 2, sym__ws, sym_comment, - ACTIONS(2141), 3, + ACTIONS(2362), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1657), 3, + STATE(355), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2118), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2086), 19, + STATE(620), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -51542,7 +42587,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [51754] = 34, + [28485] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -51551,76 +42596,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(617), 1, + ACTIONS(590), 1, aux_sym_num_lit_token1, - ACTIONS(619), 1, + ACTIONS(592), 1, anon_sym_COLON, - ACTIONS(621), 1, + ACTIONS(594), 1, anon_sym_COLON_COLON, - ACTIONS(623), 1, + ACTIONS(596), 1, anon_sym_DQUOTE, - ACTIONS(629), 1, + ACTIONS(602), 1, aux_sym_sym_lit_token1, - ACTIONS(631), 1, + ACTIONS(604), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(610), 1, anon_sym_POUND_QMARK, - ACTIONS(639), 1, + ACTIONS(612), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(641), 1, + ACTIONS(614), 1, anon_sym_POUND_SQUOTE, - ACTIONS(643), 1, + ACTIONS(616), 1, anon_sym_SQUOTE, - ACTIONS(645), 1, + ACTIONS(618), 1, anon_sym_BQUOTE, - ACTIONS(647), 1, + ACTIONS(620), 1, anon_sym_COMMA_AT, - ACTIONS(649), 1, + ACTIONS(622), 1, anon_sym_COMMA, - ACTIONS(651), 1, + ACTIONS(624), 1, anon_sym_cl, - ACTIONS(1569), 1, + ACTIONS(1480), 1, anon_sym_POUND, - STATE(2064), 1, + ACTIONS(2370), 1, + sym_self_referential_reader_macro, + STATE(2155), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2333), 1, + STATE(2313), 1, sym__bare_set_lit, - STATE(2344), 1, + STATE(2401), 1, sym_sym_lit, - ACTIONS(635), 2, + ACTIONS(608), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(653), 2, + ACTIONS(626), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(655), 2, + ACTIONS(630), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(657), 2, + ACTIONS(632), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(2366), 2, sym__ws, sym_comment, - ACTIONS(1743), 3, + ACTIONS(2368), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1657), 3, + STATE(342), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2332), 3, + STATE(2315), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2305), 19, + STATE(2249), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -51640,7 +42687,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [51886] = 34, + [28620] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -51649,76 +42696,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(263), 1, - anon_sym_POUND, - ACTIONS(267), 1, + ACTIONS(522), 1, aux_sym_num_lit_token1, - ACTIONS(269), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(271), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(273), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(275), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(277), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(281), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(283), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(285), 1, + ACTIONS(546), 1, anon_sym_POUND_SQUOTE, - ACTIONS(287), 1, + ACTIONS(548), 1, anon_sym_SQUOTE, - ACTIONS(289), 1, + ACTIONS(550), 1, anon_sym_BQUOTE, - ACTIONS(291), 1, + ACTIONS(552), 1, anon_sym_COMMA_AT, - ACTIONS(293), 1, + ACTIONS(554), 1, anon_sym_COMMA, - ACTIONS(671), 1, + ACTIONS(556), 1, anon_sym_cl, - STATE(2024), 1, + ACTIONS(979), 1, + anon_sym_POUND, + ACTIONS(2232), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(2029), 1, - aux_sym_list_lit_repeat1, - STATE(2119), 1, + STATE(1902), 1, sym__bare_set_lit, - STATE(2221), 1, + STATE(2150), 1, + aux_sym_list_lit_repeat1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(279), 2, + ACTIONS(540), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(301), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(303), 2, + ACTIONS(562), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(305), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2143), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2145), 3, + ACTIONS(2230), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(417), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2118), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2085), 19, + STATE(1932), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -51738,7 +42787,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [52018] = 34, + [28755] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -51747,76 +42796,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(617), 1, + ACTIONS(522), 1, aux_sym_num_lit_token1, - ACTIONS(821), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(823), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(825), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(827), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(829), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(831), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(833), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(835), 1, + ACTIONS(546), 1, anon_sym_POUND_SQUOTE, - ACTIONS(837), 1, + ACTIONS(548), 1, anon_sym_SQUOTE, - ACTIONS(839), 1, + ACTIONS(550), 1, anon_sym_BQUOTE, - ACTIONS(841), 1, + ACTIONS(552), 1, anon_sym_COMMA_AT, - ACTIONS(843), 1, + ACTIONS(554), 1, anon_sym_COMMA, - ACTIONS(845), 1, + ACTIONS(556), 1, anon_sym_cl, - ACTIONS(1373), 1, + ACTIONS(979), 1, anon_sym_POUND, - STATE(2056), 1, + ACTIONS(2244), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, + sym_sym_lit, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2150), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2333), 1, - sym__bare_set_lit, - STATE(2404), 1, - sym_sym_lit, - ACTIONS(635), 2, + ACTIONS(540), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(653), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(657), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(847), 2, + ACTIONS(562), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2147), 2, + ACTIONS(564), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2149), 3, + ACTIONS(2242), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(293), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2332), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2406), 19, + STATE(1933), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -51836,7 +42887,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [52150] = 34, + [28890] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -51845,76 +42896,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, + ACTIONS(907), 1, aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(909), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(911), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(913), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(919), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(921), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(927), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(929), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(931), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(933), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(935), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(937), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(939), 1, anon_sym_COMMA, - ACTIONS(809), 1, + ACTIONS(941), 1, anon_sym_cl, - ACTIONS(1545), 1, + ACTIONS(1998), 1, anon_sym_POUND, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, + ACTIONS(2374), 1, + sym_self_referential_reader_macro, + STATE(1165), 1, sym_sym_lit, - STATE(2037), 1, + STATE(1176), 1, + sym__bare_set_lit, + STATE(2152), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, + ACTIONS(925), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(943), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, + ACTIONS(947), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(949), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2151), 3, + ACTIONS(2372), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1330), 3, + STATE(1175), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1326), 19, + STATE(1184), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -51934,7 +42987,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [52282] = 34, + [29025] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -51943,76 +42996,178 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(617), 1, + ACTIONS(522), 1, aux_sym_num_lit_token1, - ACTIONS(619), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(621), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(623), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(629), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(631), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(639), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(641), 1, + ACTIONS(546), 1, anon_sym_POUND_SQUOTE, - ACTIONS(643), 1, + ACTIONS(548), 1, anon_sym_SQUOTE, - ACTIONS(645), 1, + ACTIONS(550), 1, anon_sym_BQUOTE, - ACTIONS(647), 1, + ACTIONS(552), 1, anon_sym_COMMA_AT, - ACTIONS(649), 1, + ACTIONS(554), 1, anon_sym_COMMA, - ACTIONS(651), 1, + ACTIONS(556), 1, anon_sym_cl, - ACTIONS(1569), 1, + ACTIONS(979), 1, anon_sym_POUND, - STATE(2064), 1, + ACTIONS(2266), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, + sym_sym_lit, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2150), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2333), 1, - sym__bare_set_lit, - STATE(2344), 1, + ACTIONS(540), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(558), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(562), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(564), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(2376), 2, + sym__ws, + sym_comment, + ACTIONS(2264), 3, + anon_sym_DOT, + sym_nil_lit, + sym_fancy_literal, + STATE(451), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1935), 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, + [29160] = 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(907), 1, + aux_sym_num_lit_token1, + ACTIONS(909), 1, + anon_sym_COLON, + ACTIONS(911), 1, + anon_sym_COLON_COLON, + ACTIONS(913), 1, + anon_sym_DQUOTE, + ACTIONS(919), 1, + aux_sym_sym_lit_token1, + ACTIONS(921), 1, + anon_sym_LPAREN, + ACTIONS(927), 1, + anon_sym_POUND_QMARK, + ACTIONS(929), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(931), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(933), 1, + anon_sym_SQUOTE, + ACTIONS(935), 1, + anon_sym_BQUOTE, + ACTIONS(937), 1, + anon_sym_COMMA_AT, + ACTIONS(939), 1, + anon_sym_COMMA, + ACTIONS(941), 1, + anon_sym_cl, + ACTIONS(1998), 1, + anon_sym_POUND, + ACTIONS(2382), 1, + sym_self_referential_reader_macro, + STATE(1165), 1, sym_sym_lit, - ACTIONS(635), 2, + STATE(1176), 1, + sym__bare_set_lit, + STATE(2152), 1, + aux_sym_list_lit_repeat1, + STATE(2202), 1, + sym_old_meta_lit, + STATE(2206), 1, + sym_meta_lit, + STATE(2237), 1, + sym__metadata_lit, + ACTIONS(925), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(653), 2, + ACTIONS(943), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(655), 2, + ACTIONS(947), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(657), 2, + ACTIONS(949), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(2378), 2, sym__ws, sym_comment, - ACTIONS(1709), 3, + ACTIONS(2380), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1657), 3, + STATE(480), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2332), 3, + STATE(1175), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2313), 19, + STATE(1183), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -52032,85 +43187,187 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [52414] = 34, + [29295] = 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(472), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(474), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(476), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(478), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(484), 1, aux_sym_sym_lit_token1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(492), 1, + anon_sym_POUND_QMARK, + ACTIONS(494), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(496), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(498), 1, + anon_sym_SQUOTE, + ACTIONS(500), 1, + anon_sym_BQUOTE, + ACTIONS(502), 1, + anon_sym_COMMA_AT, + ACTIONS(504), 1, + anon_sym_COMMA, + ACTIONS(506), 1, + anon_sym_cl, + ACTIONS(2384), 1, + anon_sym_POUND, + ACTIONS(2388), 1, + sym_self_referential_reader_macro, + STATE(1401), 1, + sym__bare_set_lit, + STATE(1402), 1, + sym_sym_lit, + STATE(2134), 1, + aux_sym_list_lit_repeat1, + STATE(2202), 1, + sym_old_meta_lit, + STATE(2206), 1, + sym_meta_lit, + STATE(2237), 1, + sym__metadata_lit, + ACTIONS(490), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(508), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(512), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(514), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(1440), 2, + sym__ws, + sym_comment, + ACTIONS(2386), 3, + anon_sym_DOT, + sym_nil_lit, + sym_fancy_literal, + STATE(1356), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1564), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1352), 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, + [29430] = 35, + ACTIONS(9), 1, + anon_sym_POUND_, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(472), 1, + aux_sym_num_lit_token1, + ACTIONS(474), 1, + anon_sym_COLON, + ACTIONS(476), 1, + anon_sym_COLON_COLON, + ACTIONS(478), 1, + anon_sym_DQUOTE, + ACTIONS(484), 1, + aux_sym_sym_lit_token1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(492), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(494), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(496), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(498), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(500), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(502), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(504), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(506), 1, anon_sym_cl, - STATE(1608), 1, + ACTIONS(2384), 1, + anon_sym_POUND, + ACTIONS(2392), 1, + sym_self_referential_reader_macro, + STATE(1401), 1, sym__bare_set_lit, - STATE(1610), 1, + STATE(1402), 1, sym_sym_lit, - STATE(2052), 1, + STATE(2134), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(490), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(508), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(53), 2, + ACTIONS(512), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(55), 2, + ACTIONS(514), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2153), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2155), 3, + ACTIONS(2390), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(184), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1609), 3, + STATE(1356), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1642), 19, + STATE(1564), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1337), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -52130,7 +43387,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [52546] = 34, + [29565] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -52139,76 +43396,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(263), 1, - anon_sym_POUND, - ACTIONS(267), 1, + ACTIONS(472), 1, aux_sym_num_lit_token1, - ACTIONS(269), 1, + ACTIONS(474), 1, anon_sym_COLON, - ACTIONS(271), 1, + ACTIONS(476), 1, anon_sym_COLON_COLON, - ACTIONS(273), 1, + ACTIONS(478), 1, anon_sym_DQUOTE, - ACTIONS(275), 1, + ACTIONS(484), 1, aux_sym_sym_lit_token1, - ACTIONS(277), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(281), 1, + ACTIONS(492), 1, anon_sym_POUND_QMARK, - ACTIONS(283), 1, + ACTIONS(494), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(285), 1, + ACTIONS(496), 1, anon_sym_POUND_SQUOTE, - ACTIONS(287), 1, + ACTIONS(498), 1, anon_sym_SQUOTE, - ACTIONS(289), 1, + ACTIONS(500), 1, anon_sym_BQUOTE, - ACTIONS(291), 1, + ACTIONS(502), 1, anon_sym_COMMA_AT, - ACTIONS(293), 1, + ACTIONS(504), 1, anon_sym_COMMA, - ACTIONS(671), 1, + ACTIONS(506), 1, anon_sym_cl, - STATE(2024), 1, + ACTIONS(2384), 1, + anon_sym_POUND, + ACTIONS(2398), 1, + sym_self_referential_reader_macro, + STATE(1401), 1, + sym__bare_set_lit, + STATE(1402), 1, sym_sym_lit, - STATE(2029), 1, + STATE(2134), 1, aux_sym_list_lit_repeat1, - STATE(2119), 1, - sym__bare_set_lit, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(279), 2, + ACTIONS(490), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(301), 2, + ACTIONS(508), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(303), 2, + ACTIONS(512), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(305), 2, + ACTIONS(514), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2157), 2, + ACTIONS(2394), 2, sym__ws, sym_comment, - ACTIONS(2159), 3, + ACTIONS(2396), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(420), 3, + STATE(383), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2118), 3, + STATE(1356), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2071), 19, + STATE(1311), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -52228,7 +43487,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [52678] = 34, + [29700] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -52237,76 +43496,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, + ACTIONS(472), 1, aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(474), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(476), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(478), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(484), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(492), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(494), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(496), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(498), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(500), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(502), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(504), 1, anon_sym_COMMA, - ACTIONS(809), 1, + ACTIONS(506), 1, anon_sym_cl, - ACTIONS(1545), 1, + ACTIONS(2384), 1, anon_sym_POUND, - STATE(1384), 1, + ACTIONS(2402), 1, + sym_self_referential_reader_macro, + STATE(1401), 1, sym__bare_set_lit, - STATE(1817), 1, + STATE(1402), 1, sym_sym_lit, - STATE(2037), 1, + STATE(2134), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, + ACTIONS(490), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(508), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, + ACTIONS(512), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(514), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2161), 3, + ACTIONS(2400), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1330), 3, + STATE(1356), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1331), 19, + STATE(1307), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -52326,7 +43587,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [52810] = 34, + [29835] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -52335,76 +43596,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(617), 1, + ACTIONS(472), 1, aux_sym_num_lit_token1, - ACTIONS(619), 1, + ACTIONS(474), 1, anon_sym_COLON, - ACTIONS(621), 1, + ACTIONS(476), 1, anon_sym_COLON_COLON, - ACTIONS(623), 1, + ACTIONS(478), 1, anon_sym_DQUOTE, - ACTIONS(629), 1, + ACTIONS(484), 1, aux_sym_sym_lit_token1, - ACTIONS(631), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(492), 1, anon_sym_POUND_QMARK, - ACTIONS(639), 1, + ACTIONS(494), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(641), 1, + ACTIONS(496), 1, anon_sym_POUND_SQUOTE, - ACTIONS(643), 1, + ACTIONS(498), 1, anon_sym_SQUOTE, - ACTIONS(645), 1, + ACTIONS(500), 1, anon_sym_BQUOTE, - ACTIONS(647), 1, + ACTIONS(502), 1, anon_sym_COMMA_AT, - ACTIONS(649), 1, + ACTIONS(504), 1, anon_sym_COMMA, - ACTIONS(651), 1, + ACTIONS(506), 1, anon_sym_cl, - ACTIONS(1569), 1, + ACTIONS(2384), 1, anon_sym_POUND, - STATE(2064), 1, + ACTIONS(2408), 1, + sym_self_referential_reader_macro, + STATE(1401), 1, + sym__bare_set_lit, + STATE(1402), 1, + sym_sym_lit, + STATE(2134), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2333), 1, - sym__bare_set_lit, - STATE(2344), 1, - sym_sym_lit, - ACTIONS(635), 2, + ACTIONS(490), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(653), 2, + ACTIONS(508), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(655), 2, + ACTIONS(512), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(657), 2, + ACTIONS(514), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(2404), 2, sym__ws, sym_comment, - ACTIONS(1687), 3, + ACTIONS(2406), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1657), 3, + STATE(384), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2332), 3, + STATE(1356), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2317), 19, + STATE(1308), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -52424,7 +43687,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [52942] = 34, + [29970] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -52433,76 +43696,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(263), 1, - anon_sym_POUND, - ACTIONS(267), 1, + ACTIONS(472), 1, aux_sym_num_lit_token1, - ACTIONS(269), 1, + ACTIONS(474), 1, anon_sym_COLON, - ACTIONS(271), 1, + ACTIONS(476), 1, anon_sym_COLON_COLON, - ACTIONS(273), 1, + ACTIONS(478), 1, anon_sym_DQUOTE, - ACTIONS(275), 1, + ACTIONS(484), 1, aux_sym_sym_lit_token1, - ACTIONS(277), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(281), 1, + ACTIONS(492), 1, anon_sym_POUND_QMARK, - ACTIONS(283), 1, + ACTIONS(494), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(285), 1, + ACTIONS(496), 1, anon_sym_POUND_SQUOTE, - ACTIONS(287), 1, + ACTIONS(498), 1, anon_sym_SQUOTE, - ACTIONS(289), 1, + ACTIONS(500), 1, anon_sym_BQUOTE, - ACTIONS(291), 1, + ACTIONS(502), 1, anon_sym_COMMA_AT, - ACTIONS(293), 1, + ACTIONS(504), 1, anon_sym_COMMA, - ACTIONS(671), 1, + ACTIONS(506), 1, anon_sym_cl, - STATE(2024), 1, + ACTIONS(2384), 1, + anon_sym_POUND, + ACTIONS(2412), 1, + sym_self_referential_reader_macro, + STATE(1401), 1, + sym__bare_set_lit, + STATE(1402), 1, sym_sym_lit, - STATE(2029), 1, + STATE(2134), 1, aux_sym_list_lit_repeat1, - STATE(2119), 1, - sym__bare_set_lit, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(279), 2, + ACTIONS(490), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(301), 2, + ACTIONS(508), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(303), 2, + ACTIONS(512), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(305), 2, + ACTIONS(514), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2163), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2165), 3, + ACTIONS(2410), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(424), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2118), 3, + STATE(1356), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2073), 19, + STATE(1564), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1371), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -52522,7 +43787,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [53074] = 34, + [30105] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -52561,17 +43826,19 @@ static uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - STATE(1608), 1, + ACTIONS(2418), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(1610), 1, + STATE(1563), 1, sym_sym_lit, - STATE(2052), 1, + STATE(2153), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -52579,28 +43846,28 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(53), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(55), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(2414), 2, sym__ws, sym_comment, - ACTIONS(2167), 3, + ACTIONS(2416), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(403), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(699), 19, + STATE(1562), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(630), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -52620,7 +43887,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [53206] = 34, + [30240] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -52629,76 +43896,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(821), 1, + ACTIONS(472), 1, + aux_sym_num_lit_token1, + ACTIONS(474), 1, anon_sym_COLON, - ACTIONS(823), 1, + ACTIONS(476), 1, anon_sym_COLON_COLON, - ACTIONS(825), 1, + ACTIONS(478), 1, anon_sym_DQUOTE, - ACTIONS(827), 1, + ACTIONS(484), 1, aux_sym_sym_lit_token1, - ACTIONS(845), 1, - anon_sym_cl, - ACTIONS(853), 1, - aux_sym_num_lit_token1, - ACTIONS(857), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(492), 1, anon_sym_POUND_QMARK, - ACTIONS(859), 1, + ACTIONS(494), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(861), 1, + ACTIONS(496), 1, anon_sym_POUND_SQUOTE, - ACTIONS(863), 1, + ACTIONS(498), 1, anon_sym_SQUOTE, - ACTIONS(865), 1, + ACTIONS(500), 1, anon_sym_BQUOTE, - ACTIONS(867), 1, + ACTIONS(502), 1, anon_sym_COMMA_AT, - ACTIONS(869), 1, + ACTIONS(504), 1, anon_sym_COMMA, - ACTIONS(1365), 1, + ACTIONS(506), 1, + anon_sym_cl, + ACTIONS(2384), 1, anon_sym_POUND, - STATE(2051), 1, + ACTIONS(2422), 1, + sym_self_referential_reader_macro, + STATE(1401), 1, + sym__bare_set_lit, + STATE(1402), 1, + sym_sym_lit, + STATE(2134), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2333), 1, - sym__bare_set_lit, - STATE(2404), 1, - sym_sym_lit, - ACTIONS(653), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(657), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(855), 2, + ACTIONS(490), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(871), 2, + ACTIONS(508), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(512), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1353), 2, + ACTIONS(514), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(1571), 3, + ACTIONS(2420), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1657), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2332), 3, + STATE(1356), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2250), 19, + STATE(1564), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1302), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -52718,7 +43987,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [53338] = 34, + [30375] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -52727,76 +43996,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(821), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(823), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(825), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(827), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(845), 1, - anon_sym_cl, - ACTIONS(853), 1, - aux_sym_num_lit_token1, - ACTIONS(857), 1, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(859), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(861), 1, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(863), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(865), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(867), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(869), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(1365), 1, + ACTIONS(1442), 1, anon_sym_POUND, - STATE(2051), 1, + ACTIONS(2426), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, + sym_sym_lit, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2333), 1, - sym__bare_set_lit, - STATE(2404), 1, - sym_sym_lit, - ACTIONS(653), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(657), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(855), 2, + ACTIONS(785), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(871), 2, + ACTIONS(797), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2169), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(1979), 3, + ACTIONS(2424), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(454), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2332), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2251), 19, + STATE(1972), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -52816,7 +44087,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [53470] = 34, + [30510] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -52825,76 +44096,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(821), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(823), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(825), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(827), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(845), 1, - anon_sym_cl, - ACTIONS(853), 1, - aux_sym_num_lit_token1, - ACTIONS(857), 1, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(859), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(861), 1, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(863), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(865), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(867), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(869), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(1365), 1, + ACTIONS(1442), 1, anon_sym_POUND, - STATE(2051), 1, + ACTIONS(2432), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, + sym_sym_lit, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2333), 1, - sym__bare_set_lit, - STATE(2404), 1, - sym_sym_lit, - ACTIONS(653), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(657), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(855), 2, + ACTIONS(785), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(871), 2, + ACTIONS(797), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1353), 2, + ACTIONS(2428), 2, sym__ws, sym_comment, - ACTIONS(1783), 3, + ACTIONS(2430), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1657), 3, + STATE(797), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2332), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2252), 19, + STATE(1991), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -52914,7 +44187,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [53602] = 34, + [30645] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -52923,76 +44196,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(263), 1, - anon_sym_POUND, - ACTIONS(267), 1, - aux_sym_num_lit_token1, - ACTIONS(269), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(271), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(273), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(275), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(277), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(281), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(283), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(285), 1, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(287), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(289), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(291), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(293), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(671), 1, - anon_sym_cl, - STATE(2024), 1, + ACTIONS(1442), 1, + anon_sym_POUND, + ACTIONS(2438), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(2029), 1, - aux_sym_list_lit_repeat1, - STATE(2119), 1, + STATE(1902), 1, sym__bare_set_lit, - STATE(2221), 1, + STATE(2136), 1, + aux_sym_list_lit_repeat1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(279), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(301), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(303), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(305), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2171), 2, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(2434), 2, sym__ws, sym_comment, - ACTIONS(2173), 3, + ACTIONS(2436), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(432), 3, + STATE(488), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2118), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2091), 19, + STATE(1971), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -53012,85 +44287,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [53734] = 34, + [30780] = 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(522), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(546), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(548), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(550), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(552), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(554), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(556), 1, anon_sym_cl, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, + ACTIONS(979), 1, + anon_sym_POUND, + ACTIONS(2444), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(2052), 1, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2150), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(540), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(53), 2, + ACTIONS(562), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(55), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2175), 2, + ACTIONS(2440), 2, sym__ws, sym_comment, - ACTIONS(2177), 3, + ACTIONS(2442), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(492), 3, + STATE(628), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1609), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(693), 19, + STATE(1837), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -53110,85 +44387,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [53866] = 34, + [30915] = 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(472), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(474), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(476), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(478), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(484), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(492), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(494), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(496), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(498), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(500), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(502), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(504), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(506), 1, anon_sym_cl, - STATE(1608), 1, + ACTIONS(2384), 1, + anon_sym_POUND, + ACTIONS(2450), 1, + sym_self_referential_reader_macro, + STATE(1401), 1, sym__bare_set_lit, - STATE(1610), 1, + STATE(1402), 1, sym_sym_lit, - STATE(2052), 1, + STATE(2134), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(490), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(508), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(53), 2, + ACTIONS(512), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(55), 2, + ACTIONS(514), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(2446), 2, sym__ws, sym_comment, - ACTIONS(2179), 3, + ACTIONS(2448), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(386), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(316), 19, + STATE(1356), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1309), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -53208,85 +44487,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [53998] = 34, + [31050] = 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(524), 1, + anon_sym_COLON, + ACTIONS(526), 1, + anon_sym_COLON_COLON, + ACTIONS(528), 1, + anon_sym_DQUOTE, + ACTIONS(534), 1, + aux_sym_sym_lit_token1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, + ACTIONS(1442), 1, + anon_sym_POUND, + ACTIONS(2456), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(2052), 1, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(2452), 2, sym__ws, sym_comment, - ACTIONS(2181), 3, + ACTIONS(2454), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(167), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(319), 19, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1970), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -53306,7 +44587,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [54130] = 34, + [31185] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -53315,76 +44596,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(263), 1, - anon_sym_POUND, - ACTIONS(267), 1, + ACTIONS(472), 1, aux_sym_num_lit_token1, - ACTIONS(269), 1, + ACTIONS(474), 1, anon_sym_COLON, - ACTIONS(271), 1, + ACTIONS(476), 1, anon_sym_COLON_COLON, - ACTIONS(273), 1, + ACTIONS(478), 1, anon_sym_DQUOTE, - ACTIONS(275), 1, + ACTIONS(484), 1, aux_sym_sym_lit_token1, - ACTIONS(277), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(281), 1, + ACTIONS(492), 1, anon_sym_POUND_QMARK, - ACTIONS(283), 1, + ACTIONS(494), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(285), 1, + ACTIONS(496), 1, anon_sym_POUND_SQUOTE, - ACTIONS(287), 1, + ACTIONS(498), 1, anon_sym_SQUOTE, - ACTIONS(289), 1, + ACTIONS(500), 1, anon_sym_BQUOTE, - ACTIONS(291), 1, + ACTIONS(502), 1, anon_sym_COMMA_AT, - ACTIONS(293), 1, + ACTIONS(504), 1, anon_sym_COMMA, - ACTIONS(671), 1, + ACTIONS(506), 1, anon_sym_cl, - STATE(2024), 1, + ACTIONS(2384), 1, + anon_sym_POUND, + ACTIONS(2462), 1, + sym_self_referential_reader_macro, + STATE(1401), 1, + sym__bare_set_lit, + STATE(1402), 1, sym_sym_lit, - STATE(2029), 1, + STATE(2134), 1, aux_sym_list_lit_repeat1, - STATE(2119), 1, - sym__bare_set_lit, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(279), 2, + ACTIONS(490), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(301), 2, + ACTIONS(508), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(303), 2, + ACTIONS(512), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(305), 2, + ACTIONS(514), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(2458), 2, sym__ws, sym_comment, - ACTIONS(2183), 3, + ACTIONS(2460), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1657), 3, + STATE(388), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2118), 3, + STATE(1356), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2094), 19, + STATE(1312), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -53404,7 +44687,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [54262] = 34, + [31320] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -53413,76 +44696,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(821), 1, + ACTIONS(472), 1, + aux_sym_num_lit_token1, + ACTIONS(474), 1, anon_sym_COLON, - ACTIONS(823), 1, + ACTIONS(476), 1, anon_sym_COLON_COLON, - ACTIONS(825), 1, + ACTIONS(478), 1, anon_sym_DQUOTE, - ACTIONS(827), 1, + ACTIONS(484), 1, aux_sym_sym_lit_token1, - ACTIONS(845), 1, - anon_sym_cl, - ACTIONS(853), 1, - aux_sym_num_lit_token1, - ACTIONS(857), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(492), 1, anon_sym_POUND_QMARK, - ACTIONS(859), 1, + ACTIONS(494), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(861), 1, + ACTIONS(496), 1, anon_sym_POUND_SQUOTE, - ACTIONS(863), 1, + ACTIONS(498), 1, anon_sym_SQUOTE, - ACTIONS(865), 1, + ACTIONS(500), 1, anon_sym_BQUOTE, - ACTIONS(867), 1, + ACTIONS(502), 1, anon_sym_COMMA_AT, - ACTIONS(869), 1, + ACTIONS(504), 1, anon_sym_COMMA, - ACTIONS(1365), 1, + ACTIONS(506), 1, + anon_sym_cl, + ACTIONS(2384), 1, anon_sym_POUND, - STATE(2051), 1, + ACTIONS(2466), 1, + sym_self_referential_reader_macro, + STATE(1401), 1, + sym__bare_set_lit, + STATE(1402), 1, + sym_sym_lit, + STATE(2134), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2333), 1, - sym__bare_set_lit, - STATE(2404), 1, - sym_sym_lit, - ACTIONS(653), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(657), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(855), 2, + ACTIONS(490), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(871), 2, + ACTIONS(508), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(512), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2185), 2, + ACTIONS(514), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(1787), 3, + ACTIONS(2464), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(458), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2332), 3, + STATE(1356), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2310), 19, + STATE(1564), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1413), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -53502,85 +44787,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [54394] = 34, + [31455] = 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(524), 1, + anon_sym_COLON, + ACTIONS(526), 1, + anon_sym_COLON_COLON, + ACTIONS(528), 1, + anon_sym_DQUOTE, + ACTIONS(534), 1, + aux_sym_sym_lit_token1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, + ACTIONS(1442), 1, + anon_sym_POUND, + ACTIONS(2472), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(2052), 1, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2187), 2, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(2468), 2, sym__ws, sym_comment, - ACTIONS(2189), 3, + ACTIONS(2470), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(470), 3, + STATE(499), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1609), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(447), 19, + STATE(1969), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -53600,7 +44887,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [54526] = 34, + [31590] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -53609,76 +44896,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(821), 1, + ACTIONS(472), 1, + aux_sym_num_lit_token1, + ACTIONS(474), 1, anon_sym_COLON, - ACTIONS(823), 1, + ACTIONS(476), 1, anon_sym_COLON_COLON, - ACTIONS(825), 1, + ACTIONS(478), 1, anon_sym_DQUOTE, - ACTIONS(827), 1, + ACTIONS(484), 1, aux_sym_sym_lit_token1, - ACTIONS(845), 1, - anon_sym_cl, - ACTIONS(853), 1, - aux_sym_num_lit_token1, - ACTIONS(857), 1, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(492), 1, anon_sym_POUND_QMARK, - ACTIONS(859), 1, + ACTIONS(494), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(861), 1, + ACTIONS(496), 1, anon_sym_POUND_SQUOTE, - ACTIONS(863), 1, + ACTIONS(498), 1, anon_sym_SQUOTE, - ACTIONS(865), 1, + ACTIONS(500), 1, anon_sym_BQUOTE, - ACTIONS(867), 1, + ACTIONS(502), 1, anon_sym_COMMA_AT, - ACTIONS(869), 1, + ACTIONS(504), 1, anon_sym_COMMA, - ACTIONS(1365), 1, + ACTIONS(506), 1, + anon_sym_cl, + ACTIONS(2384), 1, anon_sym_POUND, - STATE(2051), 1, + ACTIONS(2476), 1, + sym_self_referential_reader_macro, + STATE(1401), 1, + sym__bare_set_lit, + STATE(1402), 1, + sym_sym_lit, + STATE(2134), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2333), 1, - sym__bare_set_lit, - STATE(2404), 1, - sym_sym_lit, - ACTIONS(653), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(657), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(855), 2, + ACTIONS(490), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(871), 2, + ACTIONS(508), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(512), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1353), 2, + ACTIONS(514), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2059), 3, + ACTIONS(2474), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1657), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2332), 3, + STATE(1356), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2257), 19, + STATE(1564), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1314), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -53698,7 +44987,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [54658] = 34, + [31725] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -53737,17 +45026,19 @@ static uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - STATE(1608), 1, + ACTIONS(2482), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(1610), 1, + STATE(1563), 1, sym_sym_lit, - STATE(2052), 1, + STATE(2153), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -53755,28 +45046,28 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(53), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(55), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2191), 2, + ACTIONS(2478), 2, sym__ws, sym_comment, - ACTIONS(2193), 3, + ACTIONS(2480), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(427), 3, + STATE(439), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1609), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(812), 19, + STATE(364), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -53796,7 +45087,107 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [54790] = 34, + [31860] = 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(524), 1, + anon_sym_COLON, + ACTIONS(526), 1, + anon_sym_COLON_COLON, + ACTIONS(528), 1, + anon_sym_DQUOTE, + ACTIONS(534), 1, + aux_sym_sym_lit_token1, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(542), 1, + anon_sym_POUND_QMARK, + ACTIONS(544), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(789), 1, + anon_sym_SQUOTE, + ACTIONS(791), 1, + anon_sym_BQUOTE, + ACTIONS(793), 1, + anon_sym_COMMA_AT, + ACTIONS(795), 1, + anon_sym_COMMA, + ACTIONS(1442), 1, + anon_sym_POUND, + ACTIONS(2486), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, + sym_sym_lit, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, + aux_sym_list_lit_repeat1, + STATE(2202), 1, + sym_old_meta_lit, + STATE(2206), 1, + sym_meta_lit, + STATE(2237), 1, + sym__metadata_lit, + ACTIONS(558), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(564), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1440), 2, + sym__ws, + sym_comment, + ACTIONS(2484), 3, + anon_sym_DOT, + sym_nil_lit, + sym_fancy_literal, + STATE(1564), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1999), 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, + [31995] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -53835,17 +45226,19 @@ static uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - STATE(1608), 1, + ACTIONS(2490), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(1610), 1, + STATE(1563), 1, sym_sym_lit, - STATE(2052), 1, + STATE(2153), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -53853,28 +45246,28 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(53), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(55), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2195), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2197), 3, + ACTIONS(2488), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(428), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1609), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(762), 19, + STATE(1564), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(216), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -53894,7 +45287,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [54922] = 34, + [32130] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -53903,76 +45296,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, + ACTIONS(61), 1, + anon_sym_POUND, + ACTIONS(65), 1, aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(67), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(69), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(71), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(73), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(77), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(79), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(81), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(87), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(89), 1, anon_sym_COMMA, - ACTIONS(809), 1, + ACTIONS(775), 1, + anon_sym_LPAREN, + ACTIONS(779), 1, anon_sym_cl, - ACTIONS(1545), 1, - anon_sym_POUND, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, + ACTIONS(2496), 1, + sym_self_referential_reader_macro, + STATE(862), 1, sym_sym_lit, - STATE(2037), 1, + STATE(870), 1, + sym__bare_set_lit, + STATE(2156), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, + ACTIONS(75), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(93), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, + ACTIONS(97), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(99), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2199), 2, + ACTIONS(2492), 2, sym__ws, sym_comment, - ACTIONS(2201), 3, + ACTIONS(2494), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(436), 3, + STATE(421), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1330), 3, + STATE(863), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1335), 19, + STATE(866), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -53992,7 +45387,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [55054] = 34, + [32265] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -54001,76 +45396,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(821), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(823), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(825), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(827), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(845), 1, - anon_sym_cl, - ACTIONS(853), 1, - aux_sym_num_lit_token1, - ACTIONS(857), 1, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(859), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(861), 1, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(863), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(865), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(867), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(869), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(1365), 1, + ACTIONS(1442), 1, anon_sym_POUND, - STATE(2051), 1, + ACTIONS(2500), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, + sym_sym_lit, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2333), 1, - sym__bare_set_lit, - STATE(2404), 1, - sym_sym_lit, - ACTIONS(653), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(657), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(855), 2, + ACTIONS(785), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(871), 2, + ACTIONS(797), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1353), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2091), 3, + ACTIONS(2498), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2332), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2258), 19, + STATE(1968), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -54090,85 +45487,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [55186] = 34, + [32400] = 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(775), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(809), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(1545), 1, - anon_sym_POUND, - STATE(1384), 1, + ACTIONS(2506), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(1817), 1, + STATE(1563), 1, sym_sym_lit, - STATE(2037), 1, + STATE(2153), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(2502), 2, sym__ws, sym_comment, - ACTIONS(2203), 3, + ACTIONS(2504), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(205), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1336), 19, + STATE(1562), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(204), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -54188,7 +45587,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [55318] = 34, + [32535] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -54197,76 +45596,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(569), 1, - aux_sym_num_lit_token1, - ACTIONS(571), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(573), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(575), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(581), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(583), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(589), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(591), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(593), 1, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(595), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(597), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(599), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(601), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(603), 1, - anon_sym_cl, - ACTIONS(1387), 1, + ACTIONS(1442), 1, anon_sym_POUND, - STATE(1163), 1, + ACTIONS(2512), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(1186), 1, + STATE(1902), 1, sym__bare_set_lit, - STATE(2027), 1, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(587), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(605), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(607), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(609), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2205), 2, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(2508), 2, sym__ws, sym_comment, - ACTIONS(2207), 3, + ACTIONS(2510), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(181), 3, + STATE(510), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1183), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1216), 19, + STATE(1967), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -54286,7 +45687,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [55450] = 34, + [32670] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -54325,17 +45726,19 @@ static uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - STATE(1608), 1, + ACTIONS(2518), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(1610), 1, + STATE(1563), 1, sym_sym_lit, - STATE(2052), 1, + STATE(2153), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -54343,28 +45746,28 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(53), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(55), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(2514), 2, sym__ws, sym_comment, - ACTIONS(2209), 3, + ACTIONS(2516), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(203), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(592), 19, + STATE(1562), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(202), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -54384,7 +45787,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [55582] = 34, + [32805] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -54393,76 +45796,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(777), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(809), 1, + ACTIONS(556), 1, anon_sym_cl, - ACTIONS(873), 1, + ACTIONS(783), 1, aux_sym_num_lit_token1, - ACTIONS(877), 1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(879), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(881), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(883), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(885), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(1015), 1, + ACTIONS(1442), 1, anon_sym_POUND, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, + ACTIONS(2524), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(2048), 1, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(811), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(815), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(875), 2, + ACTIONS(785), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(887), 2, + ACTIONS(797), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2211), 2, + ACTIONS(2520), 2, sym__ws, sym_comment, - ACTIONS(2213), 3, + ACTIONS(2522), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(579), 3, + STATE(513), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1330), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1375), 19, + STATE(1966), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -54482,7 +45887,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [55714] = 34, + [32940] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -54491,76 +45896,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, + ACTIONS(472), 1, aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(474), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(476), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(478), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(484), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(492), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(494), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(496), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(498), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(500), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(502), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(504), 1, anon_sym_COMMA, - ACTIONS(809), 1, + ACTIONS(506), 1, anon_sym_cl, - ACTIONS(1545), 1, + ACTIONS(2384), 1, anon_sym_POUND, - STATE(1384), 1, + ACTIONS(2528), 1, + sym_self_referential_reader_macro, + STATE(1401), 1, sym__bare_set_lit, - STATE(1817), 1, + STATE(1402), 1, sym_sym_lit, - STATE(2037), 1, + STATE(2134), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, + ACTIONS(490), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(508), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, + ACTIONS(512), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(514), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2215), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2217), 3, + ACTIONS(2526), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(440), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1330), 3, + STATE(1356), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1337), 19, + STATE(1564), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1315), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -54580,7 +45987,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [55846] = 34, + [33075] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -54589,76 +45996,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(777), 1, + ACTIONS(472), 1, + aux_sym_num_lit_token1, + ACTIONS(474), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(476), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(478), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(484), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(492), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(494), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(809), 1, - anon_sym_cl, - ACTIONS(873), 1, - aux_sym_num_lit_token1, - ACTIONS(877), 1, + ACTIONS(496), 1, anon_sym_POUND_SQUOTE, - ACTIONS(879), 1, + ACTIONS(498), 1, anon_sym_SQUOTE, - ACTIONS(881), 1, + ACTIONS(500), 1, anon_sym_BQUOTE, - ACTIONS(883), 1, + ACTIONS(502), 1, anon_sym_COMMA_AT, - ACTIONS(885), 1, + ACTIONS(504), 1, anon_sym_COMMA, - ACTIONS(1015), 1, + ACTIONS(506), 1, + anon_sym_cl, + ACTIONS(2384), 1, anon_sym_POUND, - STATE(1384), 1, + ACTIONS(2534), 1, + sym_self_referential_reader_macro, + STATE(1401), 1, sym__bare_set_lit, - STATE(1817), 1, + STATE(1402), 1, sym_sym_lit, - STATE(2048), 1, + STATE(2134), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(811), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(815), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(875), 2, + ACTIONS(490), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(887), 2, + ACTIONS(508), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(512), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2219), 2, + ACTIONS(514), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(2530), 2, sym__ws, sym_comment, - ACTIONS(2221), 3, + ACTIONS(2532), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(601), 3, + STATE(390), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1330), 3, + STATE(1356), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1374), 19, + STATE(1318), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -54678,7 +46087,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [55978] = 34, + [33210] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -54687,76 +46096,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, + ACTIONS(472), 1, aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(474), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(476), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(478), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(484), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(492), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(494), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(496), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(498), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(500), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(502), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(504), 1, anon_sym_COMMA, - ACTIONS(809), 1, + ACTIONS(506), 1, anon_sym_cl, - ACTIONS(1545), 1, + ACTIONS(2384), 1, anon_sym_POUND, - STATE(1384), 1, + ACTIONS(2538), 1, + sym_self_referential_reader_macro, + STATE(1401), 1, sym__bare_set_lit, - STATE(1817), 1, + STATE(1402), 1, sym_sym_lit, - STATE(2037), 1, + STATE(2134), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, + ACTIONS(490), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(508), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, + ACTIONS(512), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(514), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2223), 3, + ACTIONS(2536), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1330), 3, + STATE(1356), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1338), 19, + STATE(1319), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -54776,85 +46187,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [56110] = 34, + [33345] = 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(522), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(546), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(548), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(550), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(552), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(554), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(556), 1, anon_sym_cl, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, + ACTIONS(979), 1, + anon_sym_POUND, + ACTIONS(2272), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(2052), 1, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2150), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(540), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(53), 2, + ACTIONS(562), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(55), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2225), 2, + ACTIONS(2540), 2, sym__ws, sym_comment, - ACTIONS(2227), 3, + ACTIONS(2270), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(449), 3, + STATE(458), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1609), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(322), 19, + STATE(1938), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -54874,7 +46287,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [56242] = 34, + [33480] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -54883,76 +46296,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, + ACTIONS(472), 1, aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(474), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(476), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(478), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(484), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(492), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(494), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(496), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(498), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(500), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(502), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(504), 1, anon_sym_COMMA, - ACTIONS(809), 1, + ACTIONS(506), 1, anon_sym_cl, - ACTIONS(1545), 1, + ACTIONS(2384), 1, anon_sym_POUND, - STATE(1384), 1, + ACTIONS(2546), 1, + sym_self_referential_reader_macro, + STATE(1401), 1, sym__bare_set_lit, - STATE(1817), 1, + STATE(1402), 1, sym_sym_lit, - STATE(2037), 1, + STATE(2134), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, + ACTIONS(490), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(508), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, + ACTIONS(512), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(514), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2229), 2, + ACTIONS(2542), 2, sym__ws, sym_comment, - ACTIONS(2231), 3, + ACTIONS(2544), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(569), 3, + STATE(398), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1330), 3, + STATE(1356), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1952), 19, + STATE(1328), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -54972,85 +46387,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [56374] = 34, + [33615] = 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(61), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(65), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(67), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(69), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(71), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(73), 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(77), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(79), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(81), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(87), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(89), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(775), 1, + anon_sym_LPAREN, + ACTIONS(779), 1, anon_sym_cl, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, + ACTIONS(2550), 1, + sym_self_referential_reader_macro, + STATE(862), 1, sym_sym_lit, - STATE(2052), 1, + STATE(870), 1, + sym__bare_set_lit, + STATE(2156), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(75), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(93), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(53), 2, + ACTIONS(97), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(55), 2, + ACTIONS(99), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2233), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2235), 3, + ACTIONS(2548), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(450), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1609), 3, + STATE(863), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(323), 19, + STATE(1564), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(878), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -55070,7 +46487,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [56506] = 34, + [33750] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -55079,76 +46496,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(777), 1, + ACTIONS(472), 1, + aux_sym_num_lit_token1, + ACTIONS(474), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(476), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(478), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(484), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(492), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(494), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(809), 1, - anon_sym_cl, - ACTIONS(873), 1, - aux_sym_num_lit_token1, - ACTIONS(877), 1, + ACTIONS(496), 1, anon_sym_POUND_SQUOTE, - ACTIONS(879), 1, + ACTIONS(498), 1, anon_sym_SQUOTE, - ACTIONS(881), 1, + ACTIONS(500), 1, anon_sym_BQUOTE, - ACTIONS(883), 1, + ACTIONS(502), 1, anon_sym_COMMA_AT, - ACTIONS(885), 1, + ACTIONS(504), 1, anon_sym_COMMA, - ACTIONS(1015), 1, + ACTIONS(506), 1, + anon_sym_cl, + ACTIONS(2384), 1, anon_sym_POUND, - STATE(1384), 1, + ACTIONS(2556), 1, + sym_self_referential_reader_macro, + STATE(1401), 1, sym__bare_set_lit, - STATE(1817), 1, + STATE(1402), 1, sym_sym_lit, - STATE(2048), 1, + STATE(2134), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(811), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(815), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(875), 2, + ACTIONS(490), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(887), 2, + ACTIONS(508), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(512), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2237), 2, + ACTIONS(514), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(2552), 2, sym__ws, sym_comment, - ACTIONS(2239), 3, + ACTIONS(2554), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(615), 3, + STATE(400), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1330), 3, + STATE(1356), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1373), 19, + STATE(1329), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -55168,85 +46587,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [56638] = 34, + [33885] = 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(472), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(474), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(476), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(478), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(484), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(492), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(494), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(496), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(498), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(500), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(502), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(504), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(506), 1, anon_sym_cl, - STATE(1608), 1, + ACTIONS(2384), 1, + anon_sym_POUND, + ACTIONS(2562), 1, + sym_self_referential_reader_macro, + STATE(1401), 1, sym__bare_set_lit, - STATE(1610), 1, + STATE(1402), 1, sym_sym_lit, - STATE(2052), 1, + STATE(2134), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(490), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(508), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(53), 2, + ACTIONS(512), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(55), 2, + ACTIONS(514), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(2558), 2, sym__ws, sym_comment, - ACTIONS(2241), 3, + ACTIONS(2560), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(410), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(430), 19, + STATE(1356), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1332), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -55266,7 +46687,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [56770] = 34, + [34020] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -55275,76 +46696,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(263), 1, - anon_sym_POUND, - ACTIONS(267), 1, + ACTIONS(472), 1, aux_sym_num_lit_token1, - ACTIONS(269), 1, + ACTIONS(474), 1, anon_sym_COLON, - ACTIONS(271), 1, + ACTIONS(476), 1, anon_sym_COLON_COLON, - ACTIONS(273), 1, + ACTIONS(478), 1, anon_sym_DQUOTE, - ACTIONS(275), 1, + ACTIONS(484), 1, aux_sym_sym_lit_token1, - ACTIONS(277), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(281), 1, + ACTIONS(492), 1, anon_sym_POUND_QMARK, - ACTIONS(283), 1, + ACTIONS(494), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(285), 1, + ACTIONS(496), 1, anon_sym_POUND_SQUOTE, - ACTIONS(287), 1, + ACTIONS(498), 1, anon_sym_SQUOTE, - ACTIONS(289), 1, + ACTIONS(500), 1, anon_sym_BQUOTE, - ACTIONS(291), 1, + ACTIONS(502), 1, anon_sym_COMMA_AT, - ACTIONS(293), 1, + ACTIONS(504), 1, anon_sym_COMMA, - ACTIONS(671), 1, + ACTIONS(506), 1, anon_sym_cl, - STATE(2024), 1, + ACTIONS(2384), 1, + anon_sym_POUND, + ACTIONS(2568), 1, + sym_self_referential_reader_macro, + STATE(1401), 1, + sym__bare_set_lit, + STATE(1402), 1, sym_sym_lit, - STATE(2029), 1, + STATE(2134), 1, aux_sym_list_lit_repeat1, - STATE(2119), 1, - sym__bare_set_lit, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(279), 2, + ACTIONS(490), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(301), 2, + ACTIONS(508), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(303), 2, + ACTIONS(512), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(305), 2, + ACTIONS(514), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(2564), 2, sym__ws, sym_comment, - ACTIONS(2243), 3, + ACTIONS(2566), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1657), 3, + STATE(412), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2118), 3, + STATE(1356), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2101), 19, + STATE(1338), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -55364,7 +46787,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [56902] = 34, + [34155] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -55373,76 +46796,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(263), 1, - anon_sym_POUND, - ACTIONS(267), 1, + ACTIONS(522), 1, aux_sym_num_lit_token1, - ACTIONS(269), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(271), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(273), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(275), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(277), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(281), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(283), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(285), 1, + ACTIONS(546), 1, anon_sym_POUND_SQUOTE, - ACTIONS(287), 1, + ACTIONS(548), 1, anon_sym_SQUOTE, - ACTIONS(289), 1, + ACTIONS(550), 1, anon_sym_BQUOTE, - ACTIONS(291), 1, + ACTIONS(552), 1, anon_sym_COMMA_AT, - ACTIONS(293), 1, + ACTIONS(554), 1, anon_sym_COMMA, - ACTIONS(671), 1, + ACTIONS(556), 1, anon_sym_cl, - STATE(2024), 1, + ACTIONS(979), 1, + anon_sym_POUND, + ACTIONS(2278), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(2029), 1, - aux_sym_list_lit_repeat1, - STATE(2119), 1, + STATE(1902), 1, sym__bare_set_lit, - STATE(2221), 1, + STATE(2150), 1, + aux_sym_list_lit_repeat1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(279), 2, + ACTIONS(540), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(301), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(303), 2, + ACTIONS(562), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(305), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(2570), 2, sym__ws, sym_comment, - ACTIONS(2245), 3, + ACTIONS(2276), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1657), 3, + STATE(461), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2118), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2108), 19, + STATE(1939), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -55462,85 +46887,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [57034] = 34, + [34290] = 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(472), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(474), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(476), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(478), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(484), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(492), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(494), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(496), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(498), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(500), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(502), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(504), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(506), 1, anon_sym_cl, - STATE(1608), 1, + ACTIONS(2384), 1, + anon_sym_POUND, + ACTIONS(2574), 1, + sym_self_referential_reader_macro, + STATE(1401), 1, sym__bare_set_lit, - STATE(1610), 1, + STATE(1402), 1, sym_sym_lit, - STATE(2052), 1, + STATE(2134), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(490), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(508), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(53), 2, + ACTIONS(512), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(55), 2, + ACTIONS(514), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2247), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2249), 3, + ACTIONS(2572), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(519), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1609), 3, + STATE(1356), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(692), 19, + STATE(1564), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1340), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -55560,85 +46987,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [57166] = 34, + [34425] = 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(61), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(65), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(67), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(69), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(71), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(73), 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(77), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(79), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(81), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(87), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(89), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(775), 1, + anon_sym_LPAREN, + ACTIONS(779), 1, anon_sym_cl, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, + ACTIONS(2578), 1, + sym_self_referential_reader_macro, + STATE(862), 1, sym_sym_lit, - STATE(2052), 1, + STATE(870), 1, + sym__bare_set_lit, + STATE(2156), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(75), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(93), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(53), 2, + ACTIONS(97), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(55), 2, + ACTIONS(99), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2251), 3, + ACTIONS(2576), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1609), 3, + STATE(863), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1537), 19, + STATE(879), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -55658,85 +47087,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [57298] = 34, + [34560] = 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(263), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(267), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(269), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(271), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(273), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(275), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(277), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(281), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(283), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(285), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(287), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(289), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(291), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(293), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(671), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - STATE(2024), 1, + ACTIONS(2582), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, + sym__bare_set_lit, + STATE(1563), 1, sym_sym_lit, - STATE(2029), 1, + STATE(2153), 1, aux_sym_list_lit_repeat1, - STATE(2119), 1, - sym__bare_set_lit, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(279), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(301), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(303), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(305), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2253), 3, + ACTIONS(2580), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1657), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2118), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2114), 19, + STATE(1564), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(780), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -55756,7 +47187,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [57430] = 34, + [34695] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -55765,76 +47196,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(263), 1, - anon_sym_POUND, - ACTIONS(267), 1, + ACTIONS(472), 1, aux_sym_num_lit_token1, - ACTIONS(269), 1, + ACTIONS(474), 1, anon_sym_COLON, - ACTIONS(271), 1, + ACTIONS(476), 1, anon_sym_COLON_COLON, - ACTIONS(273), 1, + ACTIONS(478), 1, anon_sym_DQUOTE, - ACTIONS(275), 1, + ACTIONS(484), 1, aux_sym_sym_lit_token1, - ACTIONS(277), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(281), 1, + ACTIONS(492), 1, anon_sym_POUND_QMARK, - ACTIONS(283), 1, + ACTIONS(494), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(285), 1, + ACTIONS(496), 1, anon_sym_POUND_SQUOTE, - ACTIONS(287), 1, + ACTIONS(498), 1, anon_sym_SQUOTE, - ACTIONS(289), 1, + ACTIONS(500), 1, anon_sym_BQUOTE, - ACTIONS(291), 1, + ACTIONS(502), 1, anon_sym_COMMA_AT, - ACTIONS(293), 1, + ACTIONS(504), 1, anon_sym_COMMA, - ACTIONS(671), 1, + ACTIONS(506), 1, anon_sym_cl, - STATE(2024), 1, + ACTIONS(2384), 1, + anon_sym_POUND, + ACTIONS(2586), 1, + sym_self_referential_reader_macro, + STATE(1401), 1, + sym__bare_set_lit, + STATE(1402), 1, sym_sym_lit, - STATE(2029), 1, + STATE(2134), 1, aux_sym_list_lit_repeat1, - STATE(2119), 1, - sym__bare_set_lit, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(279), 2, + ACTIONS(490), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(301), 2, + ACTIONS(508), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(303), 2, + ACTIONS(512), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(305), 2, + ACTIONS(514), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2255), 3, + ACTIONS(2584), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1657), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2118), 3, + STATE(1356), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2115), 19, + STATE(1564), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1341), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -55854,7 +47287,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [57562] = 34, + [34830] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -55863,76 +47296,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, + ACTIONS(472), 1, aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(474), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(476), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(478), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(484), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(492), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(494), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(496), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(498), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(500), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(502), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(504), 1, anon_sym_COMMA, - ACTIONS(809), 1, + ACTIONS(506), 1, anon_sym_cl, - ACTIONS(1545), 1, + ACTIONS(2384), 1, anon_sym_POUND, - STATE(1384), 1, + ACTIONS(2590), 1, + sym_self_referential_reader_macro, + STATE(1401), 1, sym__bare_set_lit, - STATE(1817), 1, + STATE(1402), 1, sym_sym_lit, - STATE(2037), 1, + STATE(2134), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, + ACTIONS(490), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(508), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, + ACTIONS(512), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(514), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2257), 3, + ACTIONS(2588), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1330), 3, + STATE(1356), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1340), 19, + STATE(1342), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -55952,7 +47387,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [57694] = 34, + [34965] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -55991,17 +47426,19 @@ static uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - STATE(1608), 1, + ACTIONS(2594), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(1610), 1, + STATE(1563), 1, sym_sym_lit, - STATE(2052), 1, + STATE(2153), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -56009,28 +47446,28 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(53), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(55), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2259), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2261), 3, + ACTIONS(2592), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(461), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1609), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(578), 19, + STATE(1564), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(787), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -56050,7 +47487,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [57826] = 34, + [35100] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -56059,76 +47496,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(617), 1, + ACTIONS(805), 1, aux_sym_num_lit_token1, - ACTIONS(619), 1, + ACTIONS(807), 1, anon_sym_COLON, - ACTIONS(621), 1, + ACTIONS(809), 1, anon_sym_COLON_COLON, - ACTIONS(623), 1, + ACTIONS(811), 1, anon_sym_DQUOTE, - ACTIONS(629), 1, + ACTIONS(817), 1, aux_sym_sym_lit_token1, - ACTIONS(631), 1, + ACTIONS(819), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(825), 1, anon_sym_POUND_QMARK, - ACTIONS(639), 1, + ACTIONS(827), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(641), 1, + ACTIONS(829), 1, anon_sym_POUND_SQUOTE, - ACTIONS(643), 1, + ACTIONS(831), 1, anon_sym_SQUOTE, - ACTIONS(645), 1, + ACTIONS(833), 1, anon_sym_BQUOTE, - ACTIONS(647), 1, + ACTIONS(835), 1, anon_sym_COMMA_AT, - ACTIONS(649), 1, + ACTIONS(837), 1, anon_sym_COMMA, - ACTIONS(651), 1, + ACTIONS(839), 1, anon_sym_cl, - ACTIONS(1569), 1, + ACTIONS(1714), 1, anon_sym_POUND, - STATE(2064), 1, + ACTIONS(2600), 1, + sym_self_referential_reader_macro, + STATE(1781), 1, + sym__bare_set_lit, + STATE(1783), 1, + sym_sym_lit, + STATE(2121), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2333), 1, - sym__bare_set_lit, - STATE(2344), 1, - sym_sym_lit, - ACTIONS(635), 2, + ACTIONS(823), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(653), 2, + ACTIONS(841), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(655), 2, + ACTIONS(845), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(657), 2, + ACTIONS(847), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(2596), 2, sym__ws, sym_comment, - ACTIONS(2263), 3, + ACTIONS(2598), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1657), 3, + STATE(334), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2332), 3, + STATE(1782), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2044), 19, + STATE(1698), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -56148,7 +47587,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [57958] = 34, + [35235] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -56157,76 +47596,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(569), 1, + ACTIONS(805), 1, aux_sym_num_lit_token1, - ACTIONS(571), 1, + ACTIONS(807), 1, anon_sym_COLON, - ACTIONS(573), 1, + ACTIONS(809), 1, anon_sym_COLON_COLON, - ACTIONS(575), 1, + ACTIONS(811), 1, anon_sym_DQUOTE, - ACTIONS(581), 1, + ACTIONS(817), 1, aux_sym_sym_lit_token1, - ACTIONS(583), 1, + ACTIONS(819), 1, anon_sym_LPAREN, - ACTIONS(589), 1, + ACTIONS(825), 1, anon_sym_POUND_QMARK, - ACTIONS(591), 1, + ACTIONS(827), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(593), 1, + ACTIONS(829), 1, anon_sym_POUND_SQUOTE, - ACTIONS(595), 1, + ACTIONS(831), 1, anon_sym_SQUOTE, - ACTIONS(597), 1, + ACTIONS(833), 1, anon_sym_BQUOTE, - ACTIONS(599), 1, + ACTIONS(835), 1, anon_sym_COMMA_AT, - ACTIONS(601), 1, + ACTIONS(837), 1, anon_sym_COMMA, - ACTIONS(603), 1, + ACTIONS(839), 1, anon_sym_cl, - ACTIONS(1387), 1, + ACTIONS(1714), 1, anon_sym_POUND, - STATE(1163), 1, - sym_sym_lit, - STATE(1186), 1, + ACTIONS(2606), 1, + sym_self_referential_reader_macro, + STATE(1781), 1, sym__bare_set_lit, - STATE(2027), 1, + STATE(1783), 1, + sym_sym_lit, + STATE(2121), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(587), 2, + ACTIONS(823), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(605), 2, + ACTIONS(841), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(607), 2, + ACTIONS(845), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(609), 2, + ACTIONS(847), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(2602), 2, sym__ws, sym_comment, - ACTIONS(2265), 3, + ACTIONS(2604), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1183), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1221), 19, + STATE(1782), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1676), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -56246,7 +47687,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [58090] = 34, + [35370] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -56255,76 +47696,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(263), 1, - anon_sym_POUND, - ACTIONS(267), 1, + ACTIONS(472), 1, aux_sym_num_lit_token1, - ACTIONS(269), 1, + ACTIONS(474), 1, anon_sym_COLON, - ACTIONS(271), 1, + ACTIONS(476), 1, anon_sym_COLON_COLON, - ACTIONS(273), 1, + ACTIONS(478), 1, anon_sym_DQUOTE, - ACTIONS(275), 1, + ACTIONS(484), 1, aux_sym_sym_lit_token1, - ACTIONS(277), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(281), 1, + ACTIONS(492), 1, anon_sym_POUND_QMARK, - ACTIONS(283), 1, + ACTIONS(494), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(285), 1, + ACTIONS(496), 1, anon_sym_POUND_SQUOTE, - ACTIONS(287), 1, + ACTIONS(498), 1, anon_sym_SQUOTE, - ACTIONS(289), 1, + ACTIONS(500), 1, anon_sym_BQUOTE, - ACTIONS(291), 1, + ACTIONS(502), 1, anon_sym_COMMA_AT, - ACTIONS(293), 1, + ACTIONS(504), 1, anon_sym_COMMA, - ACTIONS(671), 1, + ACTIONS(506), 1, anon_sym_cl, - STATE(2024), 1, + ACTIONS(2384), 1, + anon_sym_POUND, + ACTIONS(2610), 1, + sym_self_referential_reader_macro, + STATE(1401), 1, + sym__bare_set_lit, + STATE(1402), 1, sym_sym_lit, - STATE(2029), 1, + STATE(2134), 1, aux_sym_list_lit_repeat1, - STATE(2119), 1, - sym__bare_set_lit, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(279), 2, + ACTIONS(490), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(301), 2, + ACTIONS(508), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(303), 2, + ACTIONS(512), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(305), 2, + ACTIONS(514), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2267), 3, + ACTIONS(2608), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1657), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2118), 3, + STATE(1356), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2080), 19, + STATE(1564), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1343), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -56344,85 +47787,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [58222] = 34, + [35505] = 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(263), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(267), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(269), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(271), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(273), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(275), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(277), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(281), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(283), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(285), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(287), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(289), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(291), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(293), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(671), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - STATE(2024), 1, + ACTIONS(1538), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, + sym__bare_set_lit, + STATE(1563), 1, sym_sym_lit, - STATE(2029), 1, + STATE(2153), 1, aux_sym_list_lit_repeat1, - STATE(2119), 1, - sym__bare_set_lit, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(279), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(301), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(303), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(305), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2269), 2, + ACTIONS(2612), 2, sym__ws, sym_comment, - ACTIONS(2271), 3, + ACTIONS(1536), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(451), 3, + STATE(199), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2118), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2162), 19, + STATE(1516), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -56442,85 +47887,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [58354] = 34, + [35640] = 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(263), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(267), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(269), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(271), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(273), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(275), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(277), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(281), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(283), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(285), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(287), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(289), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(291), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(293), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(671), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - STATE(2024), 1, + ACTIONS(1544), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, + sym__bare_set_lit, + STATE(1563), 1, sym_sym_lit, - STATE(2029), 1, + STATE(2153), 1, aux_sym_list_lit_repeat1, - STATE(2119), 1, - sym__bare_set_lit, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(279), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(301), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(303), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(305), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2273), 2, + ACTIONS(2614), 2, sym__ws, sym_comment, - ACTIONS(2275), 3, + ACTIONS(1542), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(471), 3, + STATE(197), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2118), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2138), 19, + STATE(1517), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -56540,7 +47987,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [58486] = 34, + [35775] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -56549,76 +47996,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, + ACTIONS(805), 1, aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(807), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(809), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(811), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(817), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(819), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(825), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(827), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(829), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(831), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(833), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(835), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(837), 1, anon_sym_COMMA, - ACTIONS(809), 1, + ACTIONS(839), 1, anon_sym_cl, - ACTIONS(1545), 1, + ACTIONS(1714), 1, anon_sym_POUND, - STATE(1384), 1, + ACTIONS(2620), 1, + sym_self_referential_reader_macro, + STATE(1781), 1, sym__bare_set_lit, - STATE(1817), 1, + STATE(1783), 1, sym_sym_lit, - STATE(2037), 1, + STATE(2121), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, + ACTIONS(823), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(841), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, + ACTIONS(845), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(847), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2277), 2, + ACTIONS(2616), 2, sym__ws, sym_comment, - ACTIONS(2279), 3, + ACTIONS(2618), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(583), 3, + STATE(343), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1330), 3, + STATE(1782), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1950), 19, + STATE(1702), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -56638,7 +48087,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [58618] = 34, + [35910] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -56647,76 +48096,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(263), 1, - anon_sym_POUND, - ACTIONS(267), 1, + ACTIONS(805), 1, aux_sym_num_lit_token1, - ACTIONS(269), 1, + ACTIONS(807), 1, anon_sym_COLON, - ACTIONS(271), 1, + ACTIONS(809), 1, anon_sym_COLON_COLON, - ACTIONS(273), 1, + ACTIONS(811), 1, anon_sym_DQUOTE, - ACTIONS(275), 1, + ACTIONS(817), 1, aux_sym_sym_lit_token1, - ACTIONS(277), 1, + ACTIONS(819), 1, anon_sym_LPAREN, - ACTIONS(281), 1, + ACTIONS(825), 1, anon_sym_POUND_QMARK, - ACTIONS(283), 1, + ACTIONS(827), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(285), 1, + ACTIONS(829), 1, anon_sym_POUND_SQUOTE, - ACTIONS(287), 1, + ACTIONS(831), 1, anon_sym_SQUOTE, - ACTIONS(289), 1, + ACTIONS(833), 1, anon_sym_BQUOTE, - ACTIONS(291), 1, + ACTIONS(835), 1, anon_sym_COMMA_AT, - ACTIONS(293), 1, + ACTIONS(837), 1, anon_sym_COMMA, - ACTIONS(671), 1, + ACTIONS(839), 1, anon_sym_cl, - STATE(2024), 1, + ACTIONS(1714), 1, + anon_sym_POUND, + ACTIONS(2626), 1, + sym_self_referential_reader_macro, + STATE(1781), 1, + sym__bare_set_lit, + STATE(1783), 1, sym_sym_lit, - STATE(2029), 1, + STATE(2121), 1, aux_sym_list_lit_repeat1, - STATE(2119), 1, - sym__bare_set_lit, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(279), 2, + ACTIONS(823), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(301), 2, + ACTIONS(841), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(303), 2, + ACTIONS(845), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(305), 2, + ACTIONS(847), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2281), 2, + ACTIONS(2622), 2, sym__ws, sym_comment, - ACTIONS(2283), 3, + ACTIONS(2624), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(472), 3, + STATE(367), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2118), 3, + STATE(1782), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2136), 19, + STATE(1707), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -56736,85 +48187,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [58750] = 34, + [36045] = 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(472), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(474), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(476), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(478), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(484), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(492), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(494), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(496), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(498), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(500), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(502), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(504), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(506), 1, anon_sym_cl, - STATE(1608), 1, + ACTIONS(2384), 1, + anon_sym_POUND, + ACTIONS(2630), 1, + sym_self_referential_reader_macro, + STATE(1401), 1, sym__bare_set_lit, - STATE(1610), 1, + STATE(1402), 1, sym_sym_lit, - STATE(2052), 1, + STATE(2134), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(490), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(508), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(53), 2, + ACTIONS(512), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(55), 2, + ACTIONS(514), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2285), 3, + ACTIONS(2628), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1609), 3, + STATE(1356), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(327), 19, + STATE(1344), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -56834,85 +48287,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [58882] = 34, + [36180] = 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(805), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(807), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(809), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(811), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(817), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(819), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(825), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(827), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(829), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(831), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(833), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(835), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(837), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(839), 1, anon_sym_cl, - STATE(1608), 1, + ACTIONS(1714), 1, + anon_sym_POUND, + ACTIONS(2634), 1, + sym_self_referential_reader_macro, + STATE(1781), 1, sym__bare_set_lit, - STATE(1610), 1, + STATE(1783), 1, sym_sym_lit, - STATE(2052), 1, + STATE(2121), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(823), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(841), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(53), 2, + ACTIONS(845), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(55), 2, + ACTIONS(847), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2287), 3, + ACTIONS(2632), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(620), 19, + STATE(1782), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1709), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -56932,7 +48387,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [59014] = 34, + [36315] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -56941,76 +48396,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, + ACTIONS(472), 1, aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(474), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(476), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(478), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(484), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(492), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(494), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(496), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(498), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(500), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(502), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(504), 1, anon_sym_COMMA, - ACTIONS(809), 1, + ACTIONS(506), 1, anon_sym_cl, - ACTIONS(1545), 1, + ACTIONS(2384), 1, anon_sym_POUND, - STATE(1384), 1, + ACTIONS(2638), 1, + sym_self_referential_reader_macro, + STATE(1401), 1, sym__bare_set_lit, - STATE(1817), 1, + STATE(1402), 1, sym_sym_lit, - STATE(2037), 1, + STATE(2134), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, + ACTIONS(490), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(508), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, + ACTIONS(512), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(514), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2289), 3, + ACTIONS(2636), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1330), 3, + STATE(1356), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1943), 19, + STATE(1362), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -57030,85 +48487,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [59146] = 34, + [36450] = 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(472), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(474), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(476), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(478), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(484), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(492), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(494), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(496), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(498), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(500), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(502), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(504), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(506), 1, anon_sym_cl, - STATE(1608), 1, + ACTIONS(2384), 1, + anon_sym_POUND, + ACTIONS(2644), 1, + sym_self_referential_reader_macro, + STATE(1401), 1, sym__bare_set_lit, - STATE(1610), 1, + STATE(1402), 1, sym_sym_lit, - STATE(2052), 1, + STATE(2134), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(490), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(508), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(53), 2, + ACTIONS(512), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(55), 2, + ACTIONS(514), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2291), 2, + ACTIONS(2640), 2, sym__ws, sym_comment, - ACTIONS(2293), 3, + ACTIONS(2642), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(202), 3, + STATE(420), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1609), 3, + STATE(1356), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(201), 19, + STATE(1373), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -57128,7 +48587,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [59278] = 34, + [36585] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -57137,76 +48596,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, + ACTIONS(472), 1, aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(474), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(476), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(478), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(484), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(492), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(494), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(496), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(498), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(500), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(502), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(504), 1, anon_sym_COMMA, - ACTIONS(809), 1, + ACTIONS(506), 1, anon_sym_cl, - ACTIONS(1545), 1, + ACTIONS(2384), 1, anon_sym_POUND, - STATE(1384), 1, + ACTIONS(2650), 1, + sym_self_referential_reader_macro, + STATE(1401), 1, sym__bare_set_lit, - STATE(1817), 1, + STATE(1402), 1, sym_sym_lit, - STATE(2037), 1, + STATE(2134), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, + ACTIONS(490), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(508), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, + ACTIONS(512), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(514), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2295), 2, + ACTIONS(2646), 2, sym__ws, sym_comment, - ACTIONS(2297), 3, + ACTIONS(2648), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(588), 3, + STATE(423), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1330), 3, + STATE(1356), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1933), 19, + STATE(1375), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -57226,85 +48687,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [59410] = 34, + [36720] = 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(472), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(474), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(476), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(478), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(484), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(492), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(494), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(496), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(498), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(500), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(502), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(504), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(506), 1, anon_sym_cl, - STATE(1608), 1, + ACTIONS(2384), 1, + anon_sym_POUND, + ACTIONS(2656), 1, + sym_self_referential_reader_macro, + STATE(1401), 1, sym__bare_set_lit, - STATE(1610), 1, + STATE(1402), 1, sym_sym_lit, - STATE(2052), 1, + STATE(2134), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(490), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(508), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(53), 2, + ACTIONS(512), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(55), 2, + ACTIONS(514), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2299), 2, + ACTIONS(2652), 2, sym__ws, sym_comment, - ACTIONS(2301), 3, + ACTIONS(2654), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(200), 3, + STATE(424), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1609), 3, + STATE(1356), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(199), 19, + STATE(1377), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -57324,7 +48787,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [59542] = 34, + [36855] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -57363,17 +48826,19 @@ static uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - STATE(1608), 1, + ACTIONS(2660), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(1610), 1, + STATE(1563), 1, sym_sym_lit, - STATE(2052), 1, + STATE(2153), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -57381,126 +48846,28 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(1353), 2, - sym__ws, - sym_comment, - ACTIONS(2303), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(684), 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, - [59674] = 34, - 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(775), 1, - aux_sym_num_lit_token1, - ACTIONS(777), 1, - anon_sym_COLON, - ACTIONS(779), 1, - anon_sym_COLON_COLON, - ACTIONS(781), 1, - anon_sym_DQUOTE, - ACTIONS(787), 1, - aux_sym_sym_lit_token1, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(795), 1, - anon_sym_POUND_QMARK, - ACTIONS(797), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, - anon_sym_SQUOTE, - ACTIONS(803), 1, - anon_sym_BQUOTE, - ACTIONS(805), 1, - anon_sym_COMMA_AT, - ACTIONS(807), 1, - anon_sym_COMMA, - ACTIONS(809), 1, - anon_sym_cl, - ACTIONS(1545), 1, - anon_sym_POUND, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, - sym_sym_lit, - STATE(2037), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(793), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(811), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(813), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2305), 3, + ACTIONS(2658), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1330), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1932), 19, + STATE(214), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -57520,85 +48887,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [59806] = 34, + [36990] = 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(775), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(809), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(1545), 1, - anon_sym_POUND, - STATE(1384), 1, + ACTIONS(2666), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(1817), 1, + STATE(1563), 1, sym_sym_lit, - STATE(2037), 1, + STATE(2153), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2307), 2, + ACTIONS(2662), 2, sym__ws, sym_comment, - ACTIONS(2309), 3, + ACTIONS(2664), 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(1330), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1342), 19, + STATE(811), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -57618,7 +48987,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [59938] = 34, + [37125] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -57627,76 +48996,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, + ACTIONS(805), 1, aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(807), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(809), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(811), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(817), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(819), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(825), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(827), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(829), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(831), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(833), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(835), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(837), 1, anon_sym_COMMA, - ACTIONS(809), 1, + ACTIONS(839), 1, anon_sym_cl, - ACTIONS(1545), 1, + ACTIONS(1714), 1, anon_sym_POUND, - STATE(1384), 1, + ACTIONS(2670), 1, + sym_self_referential_reader_macro, + STATE(1781), 1, sym__bare_set_lit, - STATE(1817), 1, + STATE(1783), 1, sym_sym_lit, - STATE(2037), 1, + STATE(2121), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, + ACTIONS(823), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(841), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, + ACTIONS(845), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(847), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2311), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2313), 3, + ACTIONS(2668), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(593), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1330), 3, + STATE(1782), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1927), 19, + STATE(1711), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -57716,7 +49087,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [60070] = 34, + [37260] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -57725,76 +49096,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, + ACTIONS(472), 1, aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(474), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(476), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(478), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(484), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(492), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(494), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(496), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(498), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(500), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(502), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(504), 1, anon_sym_COMMA, - ACTIONS(809), 1, + ACTIONS(506), 1, anon_sym_cl, - ACTIONS(1545), 1, + ACTIONS(2384), 1, anon_sym_POUND, - STATE(1384), 1, + ACTIONS(2676), 1, + sym_self_referential_reader_macro, + STATE(1401), 1, sym__bare_set_lit, - STATE(1817), 1, + STATE(1402), 1, sym_sym_lit, - STATE(2037), 1, + STATE(2134), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, + ACTIONS(490), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(508), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, + ACTIONS(512), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(514), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2315), 2, + ACTIONS(2672), 2, sym__ws, sym_comment, - ACTIONS(2317), 3, + ACTIONS(2674), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(465), 3, + STATE(428), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1330), 3, + STATE(1356), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1343), 19, + STATE(1379), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -57814,85 +49187,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [60202] = 34, + [37395] = 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(805), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(807), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(809), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(811), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(817), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(819), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(825), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(827), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(829), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(831), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(833), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(835), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(837), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(839), 1, anon_sym_cl, - STATE(1608), 1, + ACTIONS(1714), 1, + anon_sym_POUND, + ACTIONS(2680), 1, + sym_self_referential_reader_macro, + STATE(1781), 1, sym__bare_set_lit, - STATE(1610), 1, + STATE(1783), 1, sym_sym_lit, - STATE(2052), 1, + STATE(2121), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(823), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(841), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(53), 2, + ACTIONS(845), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(55), 2, + ACTIONS(847), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2319), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2321), 3, + ACTIONS(2678), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(198), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1609), 3, + STATE(1782), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1615), 19, + STATE(1714), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -57912,85 +49287,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [60334] = 34, + [37530] = 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(775), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(809), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(1545), 1, - anon_sym_POUND, - STATE(1384), 1, + ACTIONS(2686), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(1817), 1, + STATE(1563), 1, sym_sym_lit, - STATE(2037), 1, + STATE(2153), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(2682), 2, sym__ws, sym_comment, - ACTIONS(2323), 3, + ACTIONS(2684), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(425), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1344), 19, + STATE(1562), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(812), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -58010,85 +49387,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [60466] = 34, + [37665] = 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(775), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(809), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(1545), 1, - anon_sym_POUND, - STATE(1384), 1, + ACTIONS(2690), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(1817), 1, + STATE(1563), 1, sym_sym_lit, - STATE(2037), 1, + STATE(2153), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2325), 3, + ACTIONS(2688), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1330), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1920), 19, + STATE(802), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -58108,7 +49487,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [60598] = 34, + [37800] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -58117,76 +49496,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(617), 1, + ACTIONS(61), 1, + anon_sym_POUND, + ACTIONS(65), 1, aux_sym_num_lit_token1, - ACTIONS(619), 1, + ACTIONS(67), 1, anon_sym_COLON, - ACTIONS(621), 1, + ACTIONS(69), 1, anon_sym_COLON_COLON, - ACTIONS(623), 1, + ACTIONS(71), 1, anon_sym_DQUOTE, - ACTIONS(629), 1, + ACTIONS(73), 1, aux_sym_sym_lit_token1, - ACTIONS(631), 1, - anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(77), 1, anon_sym_POUND_QMARK, - ACTIONS(639), 1, + ACTIONS(79), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(641), 1, + ACTIONS(81), 1, anon_sym_POUND_SQUOTE, - ACTIONS(643), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(645), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(647), 1, + ACTIONS(87), 1, anon_sym_COMMA_AT, - ACTIONS(649), 1, + ACTIONS(89), 1, anon_sym_COMMA, - ACTIONS(651), 1, + ACTIONS(775), 1, + anon_sym_LPAREN, + ACTIONS(779), 1, anon_sym_cl, - ACTIONS(1569), 1, - anon_sym_POUND, - STATE(2064), 1, + ACTIONS(2696), 1, + sym_self_referential_reader_macro, + STATE(862), 1, + sym_sym_lit, + STATE(870), 1, + sym__bare_set_lit, + STATE(2156), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2333), 1, - sym__bare_set_lit, - STATE(2344), 1, - sym_sym_lit, - ACTIONS(635), 2, + ACTIONS(75), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(653), 2, + ACTIONS(93), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(655), 2, + ACTIONS(97), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(657), 2, + ACTIONS(99), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2327), 2, + ACTIONS(2692), 2, sym__ws, sym_comment, - ACTIONS(2329), 3, + ACTIONS(2694), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(429), 3, + STATE(346), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2332), 3, + STATE(863), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2326), 19, + STATE(871), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -58206,85 +49587,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [60730] = 34, + [37935] = 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(775), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(809), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(1545), 1, - anon_sym_POUND, - STATE(1384), 1, + ACTIONS(2702), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(1817), 1, + STATE(1563), 1, sym_sym_lit, - STATE(2037), 1, + STATE(2153), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2331), 2, + ACTIONS(2698), 2, sym__ws, sym_comment, - ACTIONS(2333), 3, + ACTIONS(2700), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(600), 3, + STATE(450), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1330), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1916), 19, + STATE(381), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -58304,7 +49687,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [60862] = 34, + [38070] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -58313,76 +49696,178 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, + ACTIONS(472), 1, aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(474), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(476), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(478), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(484), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(492), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(494), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(496), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(498), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(500), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(502), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(504), 1, anon_sym_COMMA, - ACTIONS(809), 1, + ACTIONS(506), 1, anon_sym_cl, - ACTIONS(1545), 1, + ACTIONS(2384), 1, anon_sym_POUND, - STATE(1384), 1, + ACTIONS(2708), 1, + sym_self_referential_reader_macro, + STATE(1401), 1, sym__bare_set_lit, - STATE(1817), 1, + STATE(1402), 1, sym_sym_lit, - STATE(2037), 1, + STATE(2134), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, + ACTIONS(490), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(508), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, + ACTIONS(512), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(514), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(2704), 2, sym__ws, sym_comment, - ACTIONS(2335), 3, + ACTIONS(2706), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1330), 3, + STATE(433), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1356), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1657), 3, + STATE(1380), 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, + [38205] = 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(522), 1, + aux_sym_num_lit_token1, + ACTIONS(524), 1, + anon_sym_COLON, + ACTIONS(526), 1, + anon_sym_COLON_COLON, + ACTIONS(528), 1, + anon_sym_DQUOTE, + ACTIONS(534), 1, + aux_sym_sym_lit_token1, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(542), 1, + anon_sym_POUND_QMARK, + ACTIONS(544), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(546), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(548), 1, + anon_sym_SQUOTE, + ACTIONS(550), 1, + anon_sym_BQUOTE, + ACTIONS(552), 1, + anon_sym_COMMA_AT, + ACTIONS(554), 1, + anon_sym_COMMA, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(979), 1, + anon_sym_POUND, + ACTIONS(2284), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, + sym_sym_lit, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2150), 1, + aux_sym_list_lit_repeat1, + STATE(2202), 1, + sym_old_meta_lit, + STATE(2206), 1, + sym_meta_lit, + STATE(2237), 1, + sym__metadata_lit, + ACTIONS(540), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(558), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(562), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(564), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(2710), 2, + sym__ws, + sym_comment, + ACTIONS(2282), 3, + anon_sym_DOT, + sym_nil_lit, + sym_fancy_literal, + STATE(463), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1345), 19, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1940), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -58402,7 +49887,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [60994] = 34, + [38340] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -58441,17 +49926,19 @@ static uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - STATE(1608), 1, + ACTIONS(2714), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(1610), 1, + STATE(1563), 1, sym_sym_lit, - STATE(2052), 1, + STATE(2153), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -58459,28 +49946,28 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(53), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(55), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2337), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2339), 3, + ACTIONS(2712), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(486), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1609), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(332), 19, + STATE(1564), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(456), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -58500,7 +49987,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [61126] = 34, + [38475] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -58509,76 +49996,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, + ACTIONS(522), 1, aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(546), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(548), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(550), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(552), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(554), 1, anon_sym_COMMA, - ACTIONS(809), 1, + ACTIONS(556), 1, anon_sym_cl, - ACTIONS(1545), 1, + ACTIONS(979), 1, anon_sym_POUND, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, + ACTIONS(2718), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(2037), 1, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2150), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, + ACTIONS(540), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, + ACTIONS(562), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2341), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2343), 3, + ACTIONS(2716), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(605), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1330), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1907), 19, + STATE(1947), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -58598,7 +50087,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [61258] = 34, + [38610] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -58637,17 +50126,19 @@ static uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - STATE(1608), 1, + ACTIONS(2724), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(1610), 1, + STATE(1563), 1, sym_sym_lit, - STATE(2052), 1, + STATE(2153), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -58655,28 +50146,28 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(53), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(55), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2345), 2, + ACTIONS(2720), 2, sym__ws, sym_comment, - ACTIONS(2347), 3, + ACTIONS(2722), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(196), 3, + STATE(445), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1609), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1613), 19, + STATE(356), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -58696,183 +50187,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [61390] = 34, + [38745] = 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(775), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(795), 1, - anon_sym_POUND_QMARK, - ACTIONS(797), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, - anon_sym_SQUOTE, - ACTIONS(803), 1, - anon_sym_BQUOTE, - ACTIONS(805), 1, - anon_sym_COMMA_AT, - ACTIONS(807), 1, - anon_sym_COMMA, - ACTIONS(809), 1, - anon_sym_cl, - ACTIONS(1545), 1, - anon_sym_POUND, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, - sym_sym_lit, - STATE(2037), 1, - aux_sym_list_lit_repeat1, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(793), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(811), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(813), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(815), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(2349), 2, - sym__ws, - sym_comment, - ACTIONS(2351), 3, - anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(610), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1906), 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, - [61522] = 34, - 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(617), 1, - aux_sym_num_lit_token1, - ACTIONS(619), 1, - anon_sym_COLON, - ACTIONS(621), 1, - anon_sym_COLON_COLON, - ACTIONS(623), 1, - anon_sym_DQUOTE, - ACTIONS(629), 1, - aux_sym_sym_lit_token1, - ACTIONS(631), 1, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(639), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(641), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(643), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(645), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(647), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(649), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(651), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(1569), 1, - anon_sym_POUND, - STATE(2064), 1, + ACTIONS(2730), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, + sym__bare_set_lit, + STATE(1563), 1, + sym_sym_lit, + STATE(2153), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2333), 1, - sym__bare_set_lit, - STATE(2344), 1, - sym_sym_lit, - ACTIONS(635), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(653), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(655), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(657), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2353), 2, + ACTIONS(2726), 2, sym__ws, sym_comment, - ACTIONS(1367), 3, + ACTIONS(2728), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(431), 3, + STATE(464), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2332), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2327), 19, + STATE(465), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -58892,7 +50287,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [61654] = 34, + [38880] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -58931,17 +50326,19 @@ static uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - STATE(1608), 1, + ACTIONS(2736), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(1610), 1, + STATE(1563), 1, sym_sym_lit, - STATE(2052), 1, + STATE(2153), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -58949,28 +50346,28 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(53), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(55), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2355), 2, + ACTIONS(2732), 2, sym__ws, sym_comment, - ACTIONS(2357), 3, + ACTIONS(2734), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(194), 3, + STATE(536), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1609), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1612), 19, + STATE(466), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -58990,7 +50387,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [61786] = 34, + [39015] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -58999,76 +50396,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, - aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(592), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(594), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(596), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(602), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(624), 1, + anon_sym_cl, + ACTIONS(729), 1, + aux_sym_num_lit_token1, + ACTIONS(733), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(735), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(737), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(739), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(741), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(743), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(745), 1, anon_sym_COMMA, - ACTIONS(809), 1, - anon_sym_cl, - ACTIONS(1545), 1, + ACTIONS(1554), 1, anon_sym_POUND, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, - sym_sym_lit, - STATE(2037), 1, + ACTIONS(2444), 1, + sym_self_referential_reader_macro, + STATE(2146), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(811), 2, + STATE(2313), 1, + sym__bare_set_lit, + STATE(2401), 1, + sym_sym_lit, + ACTIONS(626), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(632), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(731), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(747), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(2738), 2, sym__ws, sym_comment, - ACTIONS(2359), 3, + ACTIONS(2442), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(319), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1346), 19, + STATE(2315), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1837), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -59088,7 +50487,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [61918] = 34, + [39150] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -59097,76 +50496,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, + ACTIONS(522), 1, aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(546), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(548), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(550), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(552), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(554), 1, anon_sym_COMMA, - ACTIONS(809), 1, + ACTIONS(556), 1, anon_sym_cl, - ACTIONS(1545), 1, + ACTIONS(979), 1, anon_sym_POUND, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, + ACTIONS(2744), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(2037), 1, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2150), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, + ACTIONS(540), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, + ACTIONS(562), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(2740), 2, sym__ws, sym_comment, - ACTIONS(2361), 3, + ACTIONS(2742), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(472), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1905), 19, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1885), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -59186,85 +50587,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [62050] = 34, + [39285] = 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(777), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(809), 1, - anon_sym_cl, - ACTIONS(873), 1, - aux_sym_num_lit_token1, - ACTIONS(877), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(879), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(881), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(883), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(885), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(1015), 1, - anon_sym_POUND, - STATE(1384), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(2748), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(1817), 1, + STATE(1563), 1, sym_sym_lit, - STATE(2048), 1, + STATE(2153), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(811), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(815), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(875), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(887), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2363), 2, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2365), 3, + ACTIONS(2746), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(338), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1330), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1836), 19, + STATE(1564), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(188), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -59284,7 +50687,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [62182] = 34, + [39420] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -59293,76 +50696,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(617), 1, + ACTIONS(522), 1, aux_sym_num_lit_token1, - ACTIONS(619), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(621), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(623), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(629), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(631), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(639), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(641), 1, + ACTIONS(546), 1, anon_sym_POUND_SQUOTE, - ACTIONS(643), 1, + ACTIONS(548), 1, anon_sym_SQUOTE, - ACTIONS(645), 1, + ACTIONS(550), 1, anon_sym_BQUOTE, - ACTIONS(647), 1, + ACTIONS(552), 1, anon_sym_COMMA_AT, - ACTIONS(649), 1, + ACTIONS(554), 1, anon_sym_COMMA, - ACTIONS(651), 1, + ACTIONS(556), 1, anon_sym_cl, - ACTIONS(1569), 1, + ACTIONS(979), 1, anon_sym_POUND, - STATE(2064), 1, + ACTIONS(2752), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, + sym_sym_lit, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2150), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2333), 1, - sym__bare_set_lit, - STATE(2344), 1, - sym_sym_lit, - ACTIONS(635), 2, + ACTIONS(540), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(653), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(655), 2, + ACTIONS(562), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(657), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2367), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(1371), 3, + ACTIONS(2750), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(433), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2332), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2328), 19, + STATE(1865), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -59382,7 +50787,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [62314] = 34, + [39555] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -59391,76 +50796,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, + ACTIONS(805), 1, aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(807), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(809), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(811), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(817), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(819), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(825), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(827), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(829), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(831), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(833), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(835), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(837), 1, anon_sym_COMMA, - ACTIONS(809), 1, + ACTIONS(839), 1, anon_sym_cl, - ACTIONS(1545), 1, + ACTIONS(1714), 1, anon_sym_POUND, - STATE(1384), 1, + ACTIONS(2756), 1, + sym_self_referential_reader_macro, + STATE(1781), 1, sym__bare_set_lit, - STATE(1817), 1, + STATE(1783), 1, sym_sym_lit, - STATE(2037), 1, + STATE(2121), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, + ACTIONS(823), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(841), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, + ACTIONS(845), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(847), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2369), 3, + ACTIONS(2754), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1904), 19, + STATE(1782), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1717), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -59480,85 +50887,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [62446] = 34, + [39690] = 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(617), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(619), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(621), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(623), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(629), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(631), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(639), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(641), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(643), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(645), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(647), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(649), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(651), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(1569), 1, - anon_sym_POUND, - STATE(2064), 1, + ACTIONS(1552), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, + sym__bare_set_lit, + STATE(1563), 1, + sym_sym_lit, + STATE(2153), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2333), 1, - sym__bare_set_lit, - STATE(2344), 1, - sym_sym_lit, - ACTIONS(635), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(653), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(655), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(657), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2371), 2, + ACTIONS(2758), 2, sym__ws, sym_comment, - ACTIONS(1379), 3, + ACTIONS(1550), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(437), 3, + STATE(187), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2332), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2329), 19, + STATE(1522), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -59578,7 +50987,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [62578] = 34, + [39825] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -59587,76 +50996,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, + ACTIONS(522), 1, aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(546), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(548), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(550), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(552), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(554), 1, anon_sym_COMMA, - ACTIONS(809), 1, + ACTIONS(556), 1, anon_sym_cl, - ACTIONS(1545), 1, + ACTIONS(979), 1, anon_sym_POUND, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, + ACTIONS(1722), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(2037), 1, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2150), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, + ACTIONS(540), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, + ACTIONS(562), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2373), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2375), 3, + ACTIONS(1720), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(617), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1330), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1980), 19, + STATE(1900), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -59676,7 +51087,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [62710] = 34, + [39960] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -59685,76 +51096,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(617), 1, + ACTIONS(61), 1, + anon_sym_POUND, + ACTIONS(65), 1, aux_sym_num_lit_token1, - ACTIONS(619), 1, + ACTIONS(67), 1, anon_sym_COLON, - ACTIONS(621), 1, + ACTIONS(69), 1, anon_sym_COLON_COLON, - ACTIONS(623), 1, + ACTIONS(71), 1, anon_sym_DQUOTE, - ACTIONS(629), 1, + ACTIONS(73), 1, aux_sym_sym_lit_token1, - ACTIONS(631), 1, - anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(77), 1, anon_sym_POUND_QMARK, - ACTIONS(639), 1, + ACTIONS(79), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(641), 1, + ACTIONS(81), 1, anon_sym_POUND_SQUOTE, - ACTIONS(643), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(645), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(647), 1, + ACTIONS(87), 1, anon_sym_COMMA_AT, - ACTIONS(649), 1, + ACTIONS(89), 1, anon_sym_COMMA, - ACTIONS(651), 1, + ACTIONS(775), 1, + anon_sym_LPAREN, + ACTIONS(779), 1, anon_sym_cl, - ACTIONS(1569), 1, - anon_sym_POUND, - STATE(2064), 1, + ACTIONS(2764), 1, + sym_self_referential_reader_macro, + STATE(862), 1, + sym_sym_lit, + STATE(870), 1, + sym__bare_set_lit, + STATE(2156), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2333), 1, - sym__bare_set_lit, - STATE(2344), 1, - sym_sym_lit, - ACTIONS(635), 2, + ACTIONS(75), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(653), 2, + ACTIONS(93), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(655), 2, + ACTIONS(97), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(657), 2, + ACTIONS(99), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2377), 2, + ACTIONS(2760), 2, sym__ws, sym_comment, - ACTIONS(1383), 3, + ACTIONS(2762), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(441), 3, + STATE(563), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2332), 3, + STATE(863), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2330), 19, + STATE(907), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -59774,7 +51187,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [62842] = 34, + [40095] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -59783,76 +51196,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, + ACTIONS(522), 1, aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(546), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(548), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(550), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(552), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(554), 1, anon_sym_COMMA, - ACTIONS(809), 1, + ACTIONS(556), 1, anon_sym_cl, - ACTIONS(1545), 1, + ACTIONS(979), 1, anon_sym_POUND, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, + ACTIONS(2066), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(2037), 1, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2150), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, + ACTIONS(540), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, + ACTIONS(562), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2379), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2381), 3, + ACTIONS(2064), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(477), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1330), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1348), 19, + STATE(1899), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -59872,85 +51287,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [62974] = 34, + [40230] = 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(775), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(809), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(1545), 1, - anon_sym_POUND, - STATE(1384), 1, + ACTIONS(2768), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(1817), 1, + STATE(1563), 1, sym_sym_lit, - STATE(2037), 1, + STATE(2153), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2383), 3, + ACTIONS(2766), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1330), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1349), 19, + STATE(475), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -59970,85 +51387,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [63106] = 34, + [40365] = 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(522), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(546), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(548), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(550), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(552), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(554), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(556), 1, anon_sym_cl, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, + ACTIONS(979), 1, + anon_sym_POUND, + ACTIONS(2774), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(2052), 1, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2150), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(540), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(53), 2, + ACTIONS(562), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(55), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(2770), 2, sym__ws, sym_comment, - ACTIONS(2385), 3, + ACTIONS(2772), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(473), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(680), 19, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1897), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -60068,7 +51487,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [63238] = 34, + [40500] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -60077,76 +51496,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(679), 1, + ACTIONS(522), 1, aux_sym_num_lit_token1, - ACTIONS(681), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(683), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(685), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(691), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(693), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(699), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(701), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(703), 1, + ACTIONS(546), 1, anon_sym_POUND_SQUOTE, - ACTIONS(705), 1, + ACTIONS(548), 1, anon_sym_SQUOTE, - ACTIONS(707), 1, + ACTIONS(550), 1, anon_sym_BQUOTE, - ACTIONS(709), 1, + ACTIONS(552), 1, anon_sym_COMMA_AT, - ACTIONS(711), 1, + ACTIONS(554), 1, anon_sym_COMMA, - ACTIONS(713), 1, + ACTIONS(556), 1, anon_sym_cl, - ACTIONS(2389), 1, + ACTIONS(979), 1, anon_sym_POUND, - STATE(1522), 1, - sym__bare_set_lit, - STATE(1525), 1, + ACTIONS(2780), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(2032), 1, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2150), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(697), 2, + ACTIONS(540), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(715), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(717), 2, + ACTIONS(562), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(719), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2387), 2, + ACTIONS(2776), 2, sym__ws, sym_comment, - ACTIONS(2391), 3, + ACTIONS(2778), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(555), 3, + STATE(477), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1524), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1520), 19, + STATE(1896), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -60166,7 +51587,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [63370] = 34, + [40635] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -60175,76 +51596,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(263), 1, - anon_sym_POUND, - ACTIONS(267), 1, - aux_sym_num_lit_token1, - ACTIONS(269), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(271), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(273), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(275), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(277), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(281), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(283), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(285), 1, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(287), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(289), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(291), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(293), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(671), 1, - anon_sym_cl, - STATE(2024), 1, + ACTIONS(1442), 1, + anon_sym_POUND, + ACTIONS(2786), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(2029), 1, - aux_sym_list_lit_repeat1, - STATE(2119), 1, + STATE(1902), 1, sym__bare_set_lit, - STATE(2221), 1, + STATE(2136), 1, + aux_sym_list_lit_repeat1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(279), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(301), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(303), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(305), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2393), 2, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(2782), 2, sym__ws, sym_comment, - ACTIONS(2395), 3, + ACTIONS(2784), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(475), 3, + STATE(569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2118), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2134), 19, + STATE(1978), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -60264,85 +51687,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [63502] = 34, + [40770] = 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(263), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(267), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(269), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(271), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(273), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(275), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(277), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(281), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(283), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(285), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(287), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(289), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(291), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(293), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(671), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - STATE(2024), 1, + ACTIONS(1568), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, + sym__bare_set_lit, + STATE(1563), 1, sym_sym_lit, - STATE(2029), 1, + STATE(2153), 1, aux_sym_list_lit_repeat1, - STATE(2119), 1, - sym__bare_set_lit, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(279), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(301), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(303), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(305), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2397), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2399), 3, + ACTIONS(1566), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(476), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2118), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2133), 19, + STATE(1564), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1524), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -60362,7 +51787,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [63634] = 34, + [40905] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -60371,76 +51796,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(777), 1, + ACTIONS(61), 1, + anon_sym_POUND, + ACTIONS(65), 1, + aux_sym_num_lit_token1, + ACTIONS(67), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(69), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(71), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(73), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(77), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(79), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(809), 1, - anon_sym_cl, - ACTIONS(873), 1, - aux_sym_num_lit_token1, - ACTIONS(877), 1, + ACTIONS(81), 1, anon_sym_POUND_SQUOTE, - ACTIONS(879), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(881), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(883), 1, + ACTIONS(87), 1, anon_sym_COMMA_AT, - ACTIONS(885), 1, + ACTIONS(89), 1, anon_sym_COMMA, - ACTIONS(1015), 1, - anon_sym_POUND, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, + ACTIONS(775), 1, + anon_sym_LPAREN, + ACTIONS(779), 1, + anon_sym_cl, + ACTIONS(2792), 1, + sym_self_referential_reader_macro, + STATE(862), 1, sym_sym_lit, - STATE(2048), 1, + STATE(870), 1, + sym__bare_set_lit, + STATE(2156), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(811), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(815), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(875), 2, + ACTIONS(75), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(887), 2, + ACTIONS(93), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(97), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1353), 2, + ACTIONS(99), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(2788), 2, sym__ws, sym_comment, - ACTIONS(2151), 3, + ACTIONS(2790), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(576), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1326), 19, + STATE(863), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(908), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -60460,85 +51887,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [63766] = 34, + [41040] = 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(777), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(809), 1, - anon_sym_cl, - ACTIONS(873), 1, - aux_sym_num_lit_token1, - ACTIONS(877), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(879), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(881), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(883), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(885), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(1015), 1, - anon_sym_POUND, - STATE(1384), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(1578), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(1817), 1, + STATE(1563), 1, sym_sym_lit, - STATE(2048), 1, + STATE(2153), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(811), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(815), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(875), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(887), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1353), 2, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2161), 3, + ACTIONS(1576), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1330), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1331), 19, + STATE(1525), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -60558,7 +51987,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [63898] = 34, + [41175] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -60567,76 +51996,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, + ACTIONS(805), 1, aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(807), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(809), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(811), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(817), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(819), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(825), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(827), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(829), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(831), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(833), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(835), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(837), 1, anon_sym_COMMA, - ACTIONS(809), 1, + ACTIONS(839), 1, anon_sym_cl, - ACTIONS(1545), 1, + ACTIONS(1714), 1, anon_sym_POUND, - STATE(1384), 1, + ACTIONS(2796), 1, + sym_self_referential_reader_macro, + STATE(1781), 1, sym__bare_set_lit, - STATE(1817), 1, + STATE(1783), 1, sym_sym_lit, - STATE(2037), 1, + STATE(2121), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, + ACTIONS(823), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(841), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, + ACTIONS(845), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(847), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2401), 3, + ACTIONS(2794), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1908), 19, + STATE(1782), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1718), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -60656,85 +52087,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [64030] = 34, + [41310] = 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(522), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(546), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(548), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(550), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(552), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(554), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(556), 1, anon_sym_cl, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, + ACTIONS(979), 1, + anon_sym_POUND, + ACTIONS(2800), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(2052), 1, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2150), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(540), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(53), 2, + ACTIONS(562), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(55), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2403), 3, + ACTIONS(2798), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(306), 19, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1890), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -60754,85 +52187,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [64162] = 34, + [41445] = 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(522), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(546), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(548), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(550), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(552), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(554), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(556), 1, anon_sym_cl, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, + ACTIONS(979), 1, + anon_sym_POUND, + ACTIONS(2804), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(2052), 1, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2150), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(540), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(53), 2, + ACTIONS(562), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(55), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2405), 3, + ACTIONS(2802), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(375), 19, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1882), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -60852,7 +52287,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [64294] = 34, + [41580] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -60861,76 +52296,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(777), 1, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(592), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(594), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(596), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(602), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(795), 1, - anon_sym_POUND_QMARK, - ACTIONS(797), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(809), 1, + ACTIONS(624), 1, anon_sym_cl, - ACTIONS(873), 1, + ACTIONS(729), 1, aux_sym_num_lit_token1, - ACTIONS(877), 1, + ACTIONS(733), 1, + anon_sym_POUND_QMARK, + ACTIONS(735), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(737), 1, anon_sym_POUND_SQUOTE, - ACTIONS(879), 1, + ACTIONS(739), 1, anon_sym_SQUOTE, - ACTIONS(881), 1, + ACTIONS(741), 1, anon_sym_BQUOTE, - ACTIONS(883), 1, + ACTIONS(743), 1, anon_sym_COMMA_AT, - ACTIONS(885), 1, + ACTIONS(745), 1, anon_sym_COMMA, - ACTIONS(1015), 1, + ACTIONS(1554), 1, anon_sym_POUND, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, - sym_sym_lit, - STATE(2048), 1, + ACTIONS(2370), 1, + sym_self_referential_reader_macro, + STATE(2146), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(811), 2, + STATE(2313), 1, + sym__bare_set_lit, + STATE(2401), 1, + sym_sym_lit, + ACTIONS(626), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(815), 2, + ACTIONS(632), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(875), 2, + ACTIONS(731), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(887), 2, + ACTIONS(747), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2407), 2, + ACTIONS(2806), 2, sym__ws, sym_comment, - ACTIONS(2201), 3, + ACTIONS(2368), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(523), 3, + STATE(529), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1330), 3, + STATE(2315), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1335), 19, + STATE(2249), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -60950,85 +52387,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [64426] = 34, + [41715] = 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(522), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(546), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(548), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(550), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(552), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(554), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(556), 1, anon_sym_cl, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, + ACTIONS(979), 1, + anon_sym_POUND, + ACTIONS(2812), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(2052), 1, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2150), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(540), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(53), 2, + ACTIONS(562), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(55), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(2808), 2, sym__ws, sym_comment, - ACTIONS(2409), 3, + ACTIONS(2810), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(479), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(349), 19, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1881), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -61048,85 +52487,187 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [64558] = 34, + [41850] = 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(61), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(65), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(67), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(69), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(71), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(73), 1, aux_sym_sym_lit_token1, + ACTIONS(77), 1, + anon_sym_POUND_QMARK, + ACTIONS(79), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(81), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(83), 1, + anon_sym_SQUOTE, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(87), 1, + anon_sym_COMMA_AT, + ACTIONS(89), 1, + anon_sym_COMMA, + ACTIONS(775), 1, + anon_sym_LPAREN, + ACTIONS(779), 1, + anon_sym_cl, + ACTIONS(2818), 1, + sym_self_referential_reader_macro, + STATE(862), 1, + sym_sym_lit, + STATE(870), 1, + sym__bare_set_lit, + STATE(2156), 1, + aux_sym_list_lit_repeat1, + STATE(2202), 1, + sym_old_meta_lit, + STATE(2206), 1, + sym_meta_lit, + STATE(2237), 1, + sym__metadata_lit, + ACTIONS(75), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(93), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(97), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(99), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(2814), 2, + sym__ws, + sym_comment, + ACTIONS(2816), 3, + anon_sym_DOT, + sym_nil_lit, + sym_fancy_literal, + STATE(579), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(863), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(910), 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, + [41985] = 35, + ACTIONS(9), 1, + anon_sym_POUND_, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(522), 1, + aux_sym_num_lit_token1, + ACTIONS(524), 1, + anon_sym_COLON, + ACTIONS(526), 1, + anon_sym_COLON_COLON, + ACTIONS(528), 1, + anon_sym_DQUOTE, + ACTIONS(534), 1, + aux_sym_sym_lit_token1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(546), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(548), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(550), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(552), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(554), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(556), 1, anon_sym_cl, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, + ACTIONS(979), 1, + anon_sym_POUND, + ACTIONS(2822), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(2052), 1, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2150), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(540), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(53), 2, + ACTIONS(562), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(55), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2411), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2085), 3, + ACTIONS(2820), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(474), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1609), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1607), 19, + STATE(1874), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -61146,7 +52687,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [64690] = 34, + [42120] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -61155,76 +52696,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(679), 1, + ACTIONS(522), 1, aux_sym_num_lit_token1, - ACTIONS(681), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(683), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(685), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(691), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(693), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(699), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(701), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(703), 1, + ACTIONS(546), 1, anon_sym_POUND_SQUOTE, - ACTIONS(705), 1, + ACTIONS(548), 1, anon_sym_SQUOTE, - ACTIONS(707), 1, + ACTIONS(550), 1, anon_sym_BQUOTE, - ACTIONS(709), 1, + ACTIONS(552), 1, anon_sym_COMMA_AT, - ACTIONS(711), 1, + ACTIONS(554), 1, anon_sym_COMMA, - ACTIONS(713), 1, + ACTIONS(556), 1, anon_sym_cl, - ACTIONS(2389), 1, + ACTIONS(979), 1, anon_sym_POUND, - STATE(1522), 1, - sym__bare_set_lit, - STATE(1525), 1, + ACTIONS(2828), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(2032), 1, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2150), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(697), 2, + ACTIONS(540), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(715), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(717), 2, + ACTIONS(562), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(719), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2413), 2, + ACTIONS(2824), 2, sym__ws, sym_comment, - ACTIONS(2415), 3, + ACTIONS(2826), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(557), 3, + STATE(481), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1524), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1497), 19, + STATE(1872), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -61244,7 +52787,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [64822] = 34, + [42255] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -61253,76 +52796,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, + ACTIONS(522), 1, aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(546), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(548), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(550), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(552), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(554), 1, anon_sym_COMMA, - ACTIONS(809), 1, + ACTIONS(556), 1, anon_sym_cl, - ACTIONS(1545), 1, + ACTIONS(979), 1, anon_sym_POUND, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, + ACTIONS(2832), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(2037), 1, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2150), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, + ACTIONS(540), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, + ACTIONS(562), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2417), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2419), 3, + ACTIONS(2830), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(525), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1330), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1909), 19, + STATE(1864), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -61342,7 +52887,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [64954] = 34, + [42390] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -61351,76 +52896,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, + ACTIONS(907), 1, aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(909), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(911), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(913), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(919), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(921), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(927), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(929), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(931), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(933), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(935), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(937), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(939), 1, anon_sym_COMMA, - ACTIONS(809), 1, + ACTIONS(941), 1, anon_sym_cl, - ACTIONS(1545), 1, + ACTIONS(1998), 1, anon_sym_POUND, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, + ACTIONS(2836), 1, + sym_self_referential_reader_macro, + STATE(1165), 1, sym_sym_lit, - STATE(2037), 1, + STATE(1176), 1, + sym__bare_set_lit, + STATE(2152), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, + ACTIONS(925), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(943), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, + ACTIONS(947), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(949), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2421), 3, + ACTIONS(2834), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1330), 3, + STATE(1175), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1910), 19, + STATE(1232), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -61440,85 +52987,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [65086] = 34, + [42525] = 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(522), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(546), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(548), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(550), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(552), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(554), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(556), 1, anon_sym_cl, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, + ACTIONS(979), 1, + anon_sym_POUND, + ACTIONS(2840), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(2052), 1, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2150), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(540), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(53), 2, + ACTIONS(562), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(55), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2423), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2425), 3, + ACTIONS(2838), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(542), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1609), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(416), 19, + STATE(1862), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -61538,7 +53087,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [65218] = 34, + [42660] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -61547,76 +53096,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(679), 1, + ACTIONS(274), 1, + anon_sym_POUND, + ACTIONS(278), 1, aux_sym_num_lit_token1, - ACTIONS(681), 1, + ACTIONS(280), 1, anon_sym_COLON, - ACTIONS(683), 1, + ACTIONS(282), 1, anon_sym_COLON_COLON, - ACTIONS(685), 1, + ACTIONS(284), 1, anon_sym_DQUOTE, - ACTIONS(691), 1, + ACTIONS(286), 1, aux_sym_sym_lit_token1, - ACTIONS(693), 1, + ACTIONS(288), 1, anon_sym_LPAREN, - ACTIONS(699), 1, + ACTIONS(292), 1, anon_sym_POUND_QMARK, - ACTIONS(701), 1, + ACTIONS(294), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(703), 1, + ACTIONS(296), 1, anon_sym_POUND_SQUOTE, - ACTIONS(705), 1, + ACTIONS(298), 1, anon_sym_SQUOTE, - ACTIONS(707), 1, + ACTIONS(300), 1, anon_sym_BQUOTE, - ACTIONS(709), 1, + ACTIONS(302), 1, anon_sym_COMMA_AT, - ACTIONS(711), 1, + ACTIONS(304), 1, anon_sym_COMMA, - ACTIONS(713), 1, + ACTIONS(899), 1, anon_sym_cl, - ACTIONS(2389), 1, - anon_sym_POUND, - STATE(1522), 1, + ACTIONS(1680), 1, + sym_self_referential_reader_macro, + STATE(1793), 1, sym__bare_set_lit, - STATE(1525), 1, + STATE(2119), 1, sym_sym_lit, - STATE(2032), 1, + STATE(2151), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(697), 2, + ACTIONS(290), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(715), 2, + ACTIONS(312), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(717), 2, + ACTIONS(316), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(719), 2, + ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2427), 2, + ACTIONS(2842), 2, sym__ws, sym_comment, - ACTIONS(2429), 3, + ACTIONS(1678), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(561), 3, + STATE(505), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1524), 3, + STATE(1792), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1496), 19, + STATE(1808), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -61636,7 +53187,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [65350] = 34, + [42795] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -61645,76 +53196,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(679), 1, + ACTIONS(274), 1, + anon_sym_POUND, + ACTIONS(278), 1, aux_sym_num_lit_token1, - ACTIONS(681), 1, + ACTIONS(280), 1, anon_sym_COLON, - ACTIONS(683), 1, + ACTIONS(282), 1, anon_sym_COLON_COLON, - ACTIONS(685), 1, + ACTIONS(284), 1, anon_sym_DQUOTE, - ACTIONS(691), 1, + ACTIONS(286), 1, aux_sym_sym_lit_token1, - ACTIONS(693), 1, + ACTIONS(288), 1, anon_sym_LPAREN, - ACTIONS(699), 1, + ACTIONS(292), 1, anon_sym_POUND_QMARK, - ACTIONS(701), 1, + ACTIONS(294), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(703), 1, + ACTIONS(296), 1, anon_sym_POUND_SQUOTE, - ACTIONS(705), 1, + ACTIONS(298), 1, anon_sym_SQUOTE, - ACTIONS(707), 1, + ACTIONS(300), 1, anon_sym_BQUOTE, - ACTIONS(709), 1, + ACTIONS(302), 1, anon_sym_COMMA_AT, - ACTIONS(711), 1, + ACTIONS(304), 1, anon_sym_COMMA, - ACTIONS(713), 1, + ACTIONS(899), 1, anon_sym_cl, - ACTIONS(2389), 1, - anon_sym_POUND, - STATE(1522), 1, + ACTIONS(1686), 1, + sym_self_referential_reader_macro, + STATE(1793), 1, sym__bare_set_lit, - STATE(1525), 1, + STATE(2119), 1, sym_sym_lit, - STATE(2032), 1, + STATE(2151), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(697), 2, + ACTIONS(290), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(715), 2, + ACTIONS(312), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(717), 2, + ACTIONS(316), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(719), 2, + ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2431), 2, + ACTIONS(2844), 2, sym__ws, sym_comment, - ACTIONS(2433), 3, + ACTIONS(1684), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(566), 3, + STATE(507), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1524), 3, + STATE(1792), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1495), 19, + STATE(1810), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -61734,7 +53287,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [65482] = 34, + [42930] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -61743,76 +53296,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(569), 1, - aux_sym_num_lit_token1, - ACTIONS(571), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(573), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(575), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(581), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(583), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(589), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(591), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(593), 1, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(595), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(597), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(599), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(601), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(603), 1, - anon_sym_cl, - ACTIONS(1387), 1, + ACTIONS(1442), 1, anon_sym_POUND, - STATE(1163), 1, + ACTIONS(2850), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(1186), 1, + STATE(1902), 1, sym__bare_set_lit, - STATE(2027), 1, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(587), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(605), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(607), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(609), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(2846), 2, sym__ws, sym_comment, - ACTIONS(2435), 3, + ACTIONS(2848), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1183), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(583), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1189), 19, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1979), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -61832,7 +53387,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [65614] = 34, + [43065] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -61841,76 +53396,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, - aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(592), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(594), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(596), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(602), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(624), 1, + anon_sym_cl, + ACTIONS(729), 1, + aux_sym_num_lit_token1, + ACTIONS(733), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(735), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(737), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(739), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(741), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(743), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(745), 1, anon_sym_COMMA, - ACTIONS(809), 1, - anon_sym_cl, - ACTIONS(1545), 1, + ACTIONS(1554), 1, anon_sym_POUND, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, - sym_sym_lit, - STATE(2037), 1, + ACTIONS(2358), 1, + sym_self_referential_reader_macro, + STATE(2146), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(811), 2, + STATE(2313), 1, + sym__bare_set_lit, + STATE(2401), 1, + sym_sym_lit, + ACTIONS(626), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(632), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(731), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(747), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(2852), 2, sym__ws, sym_comment, - ACTIONS(2437), 3, + ACTIONS(2356), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(532), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1911), 19, + STATE(2315), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2254), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -61930,85 +53487,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [65746] = 34, + [43200] = 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(679), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(681), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(683), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(685), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(691), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(693), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(699), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(701), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(703), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(705), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(707), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(709), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(711), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(713), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(2389), 1, - anon_sym_POUND, - STATE(1522), 1, + ACTIONS(1586), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(1525), 1, + STATE(1563), 1, sym_sym_lit, - STATE(2032), 1, + STATE(2153), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(697), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(715), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(717), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(719), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2439), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2441), 3, + ACTIONS(1584), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(568), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1524), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1393), 19, + STATE(1564), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1526), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -62028,85 +53587,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [65878] = 34, + [43335] = 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(536), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(592), 1, + anon_sym_COLON, + ACTIONS(594), 1, + anon_sym_COLON_COLON, + ACTIONS(596), 1, + anon_sym_DQUOTE, + ACTIONS(602), 1, + aux_sym_sym_lit_token1, + ACTIONS(624), 1, + anon_sym_cl, + ACTIONS(729), 1, + aux_sym_num_lit_token1, + ACTIONS(733), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(735), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(737), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(739), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(741), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(743), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(745), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, + ACTIONS(1554), 1, + anon_sym_POUND, + ACTIONS(2348), 1, + sym_self_referential_reader_macro, + STATE(2146), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, + STATE(2313), 1, + sym__bare_set_lit, + STATE(2401), 1, + sym_sym_lit, + ACTIONS(626), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, + ACTIONS(632), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2443), 2, + ACTIONS(731), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(747), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(2854), 2, sym__ws, sym_comment, - ACTIONS(2445), 3, + ACTIONS(2346), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(167), 3, + STATE(538), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1609), 3, + STATE(2315), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(397), 19, + STATE(2266), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -62126,7 +53687,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [66010] = 34, + [43470] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -62135,76 +53696,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(679), 1, - aux_sym_num_lit_token1, - ACTIONS(681), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(683), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(685), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(691), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(693), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(699), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(701), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(703), 1, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(705), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(707), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(709), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(711), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(713), 1, - anon_sym_cl, - ACTIONS(2389), 1, + ACTIONS(1442), 1, anon_sym_POUND, - STATE(1522), 1, - sym__bare_set_lit, - STATE(1525), 1, + ACTIONS(2858), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(2032), 1, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(697), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(715), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(717), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(719), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2447), 2, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2449), 3, + ACTIONS(2856), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(576), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1524), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1493), 19, + STATE(1980), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -62224,85 +53787,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [66142] = 34, + [43605] = 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(274), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(278), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(280), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(282), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(284), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(286), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(288), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(292), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(294), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(296), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(298), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(300), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(302), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(304), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(899), 1, anon_sym_cl, - STATE(1608), 1, + ACTIONS(1692), 1, + sym_self_referential_reader_macro, + STATE(1793), 1, sym__bare_set_lit, - STATE(1610), 1, + STATE(2119), 1, sym_sym_lit, - STATE(2052), 1, + STATE(2151), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(290), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(312), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(53), 2, + ACTIONS(316), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(55), 2, + ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(2860), 2, sym__ws, sym_comment, - ACTIONS(2451), 3, + ACTIONS(1690), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(508), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(383), 19, + STATE(1792), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1812), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -62322,7 +53887,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [66274] = 34, + [43740] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -62331,76 +53896,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(777), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(809), 1, + ACTIONS(556), 1, anon_sym_cl, - ACTIONS(873), 1, + ACTIONS(783), 1, aux_sym_num_lit_token1, - ACTIONS(877), 1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(879), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(881), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(883), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(885), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(1015), 1, + ACTIONS(1442), 1, anon_sym_POUND, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, + ACTIONS(2866), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(2048), 1, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(811), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(815), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(875), 2, + ACTIONS(785), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(887), 2, + ACTIONS(797), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2453), 2, + ACTIONS(2862), 2, sym__ws, sym_comment, - ACTIONS(2455), 3, + ACTIONS(2864), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(634), 3, + STATE(588), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1330), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1372), 19, + STATE(1981), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -62420,7 +53987,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [66406] = 34, + [43875] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -62429,76 +53996,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, + ACTIONS(274), 1, + anon_sym_POUND, + ACTIONS(278), 1, aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(280), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(282), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(284), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(286), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(288), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(292), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(294), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(296), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(298), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(300), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(302), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(304), 1, anon_sym_COMMA, - ACTIONS(809), 1, + ACTIONS(899), 1, anon_sym_cl, - ACTIONS(1545), 1, - anon_sym_POUND, - STATE(1384), 1, + ACTIONS(1698), 1, + sym_self_referential_reader_macro, + STATE(1793), 1, sym__bare_set_lit, - STATE(1817), 1, + STATE(2119), 1, sym_sym_lit, - STATE(2037), 1, + STATE(2151), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, + ACTIONS(290), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(312), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, + ACTIONS(316), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2457), 2, + ACTIONS(2868), 2, sym__ws, sym_comment, - ACTIONS(2459), 3, + ACTIONS(1696), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(498), 3, + STATE(509), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1330), 3, + STATE(1792), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1352), 19, + STATE(1814), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -62518,7 +54087,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [66538] = 34, + [44010] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -62527,76 +54096,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, - aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(592), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(594), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(596), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(602), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(624), 1, + anon_sym_cl, + ACTIONS(729), 1, + aux_sym_num_lit_token1, + ACTIONS(733), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(735), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(737), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(739), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(741), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(743), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(745), 1, anon_sym_COMMA, - ACTIONS(809), 1, - anon_sym_cl, - ACTIONS(1545), 1, + ACTIONS(1554), 1, anon_sym_POUND, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, - sym_sym_lit, - STATE(2037), 1, + ACTIONS(2338), 1, + sym_self_referential_reader_macro, + STATE(2146), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(811), 2, + STATE(2313), 1, + sym__bare_set_lit, + STATE(2401), 1, + sym_sym_lit, + ACTIONS(626), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(632), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2461), 2, + ACTIONS(731), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(747), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(2870), 2, sym__ws, sym_comment, - ACTIONS(2463), 3, + ACTIONS(2336), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(502), 3, + STATE(539), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1330), 3, + STATE(2315), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1353), 19, + STATE(2268), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -62616,7 +54187,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [66670] = 34, + [44145] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -62625,76 +54196,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, - aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(809), 1, - anon_sym_cl, - ACTIONS(1545), 1, + ACTIONS(1442), 1, anon_sym_POUND, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, + ACTIONS(2874), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(2037), 1, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2465), 2, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2467), 3, + ACTIONS(2872), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(509), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1330), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1354), 19, + STATE(1977), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -62714,7 +54287,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [66802] = 34, + [44280] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -62753,17 +54326,19 @@ static uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - STATE(1608), 1, + ACTIONS(2878), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(1610), 1, + STATE(1563), 1, sym_sym_lit, - STATE(2052), 1, + STATE(2153), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -62771,28 +54346,28 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(53), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(55), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2469), 3, + ACTIONS(2876), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1609), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(457), 19, + STATE(291), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -62812,7 +54387,107 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [66934] = 34, + [44415] = 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(524), 1, + anon_sym_COLON, + ACTIONS(526), 1, + anon_sym_COLON_COLON, + ACTIONS(528), 1, + anon_sym_DQUOTE, + ACTIONS(534), 1, + aux_sym_sym_lit_token1, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(542), 1, + anon_sym_POUND_QMARK, + ACTIONS(544), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(789), 1, + anon_sym_SQUOTE, + ACTIONS(791), 1, + anon_sym_BQUOTE, + ACTIONS(793), 1, + anon_sym_COMMA_AT, + ACTIONS(795), 1, + anon_sym_COMMA, + ACTIONS(1442), 1, + anon_sym_POUND, + ACTIONS(2884), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, + sym_sym_lit, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, + aux_sym_list_lit_repeat1, + STATE(2202), 1, + sym_old_meta_lit, + STATE(2206), 1, + sym_meta_lit, + STATE(2237), 1, + sym__metadata_lit, + ACTIONS(558), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(564), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(2880), 2, + sym__ws, + sym_comment, + ACTIONS(2882), 3, + anon_sym_DOT, + sym_nil_lit, + sym_fancy_literal, + STATE(593), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1983), 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, + [44550] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -62851,17 +54526,19 @@ static uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - STATE(1608), 1, + ACTIONS(2888), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(1610), 1, + STATE(1563), 1, sym_sym_lit, - STATE(2052), 1, + STATE(2153), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -62869,28 +54546,28 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(53), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(55), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2471), 3, + ACTIONS(2886), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1609), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(463), 19, + STATE(273), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -62910,7 +54587,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [67066] = 34, + [44685] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -62919,76 +54596,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, + ACTIONS(61), 1, + anon_sym_POUND, + ACTIONS(65), 1, aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(67), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(69), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(71), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(73), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(77), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(79), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(81), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(87), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(89), 1, anon_sym_COMMA, - ACTIONS(809), 1, + ACTIONS(775), 1, + anon_sym_LPAREN, + ACTIONS(779), 1, anon_sym_cl, - ACTIONS(1545), 1, - anon_sym_POUND, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, + ACTIONS(2894), 1, + sym_self_referential_reader_macro, + STATE(862), 1, sym_sym_lit, - STATE(2037), 1, + STATE(870), 1, + sym__bare_set_lit, + STATE(2156), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, + ACTIONS(75), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(93), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, + ACTIONS(97), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(99), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2473), 2, + ACTIONS(2890), 2, sym__ws, sym_comment, - ACTIONS(2475), 3, + ACTIONS(2892), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(518), 3, + STATE(608), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1330), 3, + STATE(863), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1356), 19, + STATE(911), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -63008,7 +54687,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [67198] = 34, + [44820] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -63017,76 +54696,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, + ACTIONS(274), 1, + anon_sym_POUND, + ACTIONS(278), 1, aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(280), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(282), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(284), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(286), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(288), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(292), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(294), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(296), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(298), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(300), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(302), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(304), 1, anon_sym_COMMA, - ACTIONS(809), 1, + ACTIONS(899), 1, anon_sym_cl, - ACTIONS(1545), 1, - anon_sym_POUND, - STATE(1384), 1, + ACTIONS(1704), 1, + sym_self_referential_reader_macro, + STATE(1793), 1, sym__bare_set_lit, - STATE(1817), 1, + STATE(2119), 1, sym_sym_lit, - STATE(2037), 1, + STATE(2151), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, + ACTIONS(290), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(312), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, + ACTIONS(316), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(2896), 2, sym__ws, sym_comment, - ACTIONS(2477), 3, + ACTIONS(1702), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(512), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1912), 19, + STATE(1792), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1816), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -63106,7 +54787,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [67330] = 34, + [44955] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -63115,76 +54796,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(777), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(809), 1, + ACTIONS(556), 1, anon_sym_cl, - ACTIONS(873), 1, + ACTIONS(783), 1, aux_sym_num_lit_token1, - ACTIONS(877), 1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(879), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(881), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(883), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(885), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(1015), 1, + ACTIONS(1442), 1, anon_sym_POUND, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, + ACTIONS(2900), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(2048), 1, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(811), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(815), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(875), 2, + ACTIONS(785), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(887), 2, + ACTIONS(797), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2479), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2481), 3, + ACTIONS(2898), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(652), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1330), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1371), 19, + STATE(1984), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -63204,85 +54887,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [67462] = 34, + [45090] = 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(775), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(809), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(1545), 1, - anon_sym_POUND, - STATE(1384), 1, + ACTIONS(1590), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(1817), 1, + STATE(1563), 1, sym_sym_lit, - STATE(2037), 1, + STATE(2153), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2483), 3, + ACTIONS(1588), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1330), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1358), 19, + STATE(1527), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -63302,7 +54987,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [67594] = 34, + [45225] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -63311,76 +54996,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(821), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(823), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(825), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(827), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(845), 1, - anon_sym_cl, - ACTIONS(853), 1, - aux_sym_num_lit_token1, - ACTIONS(857), 1, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(859), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(861), 1, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(863), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(865), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(867), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(869), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(1365), 1, + ACTIONS(1442), 1, anon_sym_POUND, - STATE(2051), 1, + ACTIONS(2906), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, + sym_sym_lit, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2333), 1, - sym__bare_set_lit, - STATE(2404), 1, - sym_sym_lit, - ACTIONS(653), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(657), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(855), 2, + ACTIONS(785), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(871), 2, + ACTIONS(797), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2485), 2, + ACTIONS(2902), 2, sym__ws, sym_comment, - ACTIONS(2329), 3, + ACTIONS(2904), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(318), 3, + STATE(600), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2332), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2326), 19, + STATE(1985), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -63400,85 +55087,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [67726] = 34, + [45360] = 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(61), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(65), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(67), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(69), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(71), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(73), 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(77), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(79), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(81), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(87), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(89), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(775), 1, + anon_sym_LPAREN, + ACTIONS(779), 1, anon_sym_cl, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, + ACTIONS(2912), 1, + sym_self_referential_reader_macro, + STATE(862), 1, sym_sym_lit, - STATE(2052), 1, + STATE(870), 1, + sym__bare_set_lit, + STATE(2156), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(75), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(93), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(53), 2, + ACTIONS(97), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(55), 2, + ACTIONS(99), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(2908), 2, sym__ws, sym_comment, - ACTIONS(2487), 3, + ACTIONS(2910), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(655), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(185), 19, + STATE(863), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(912), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -63498,7 +55187,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [67858] = 34, + [45495] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -63507,76 +55196,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(679), 1, + ACTIONS(274), 1, + anon_sym_POUND, + ACTIONS(278), 1, aux_sym_num_lit_token1, - ACTIONS(681), 1, + ACTIONS(280), 1, anon_sym_COLON, - ACTIONS(683), 1, + ACTIONS(282), 1, anon_sym_COLON_COLON, - ACTIONS(685), 1, + ACTIONS(284), 1, anon_sym_DQUOTE, - ACTIONS(691), 1, + ACTIONS(286), 1, aux_sym_sym_lit_token1, - ACTIONS(693), 1, + ACTIONS(288), 1, anon_sym_LPAREN, - ACTIONS(699), 1, + ACTIONS(292), 1, anon_sym_POUND_QMARK, - ACTIONS(701), 1, + ACTIONS(294), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(703), 1, + ACTIONS(296), 1, anon_sym_POUND_SQUOTE, - ACTIONS(705), 1, + ACTIONS(298), 1, anon_sym_SQUOTE, - ACTIONS(707), 1, + ACTIONS(300), 1, anon_sym_BQUOTE, - ACTIONS(709), 1, + ACTIONS(302), 1, anon_sym_COMMA_AT, - ACTIONS(711), 1, + ACTIONS(304), 1, anon_sym_COMMA, - ACTIONS(713), 1, + ACTIONS(899), 1, anon_sym_cl, - ACTIONS(2389), 1, - anon_sym_POUND, - STATE(1522), 1, + ACTIONS(2916), 1, + sym_self_referential_reader_macro, + STATE(1793), 1, sym__bare_set_lit, - STATE(1525), 1, + STATE(2119), 1, sym_sym_lit, - STATE(2032), 1, + STATE(2151), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(697), 2, + ACTIONS(290), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(715), 2, + ACTIONS(312), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(717), 2, + ACTIONS(316), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(719), 2, + ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2489), 3, + ACTIONS(2914), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1524), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1487), 19, + STATE(1792), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2168), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -63596,7 +55287,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [67990] = 34, + [45630] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -63605,76 +55296,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, - aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(809), 1, - anon_sym_cl, - ACTIONS(1545), 1, + ACTIONS(1442), 1, anon_sym_POUND, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, + ACTIONS(2922), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(2037), 1, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(2918), 2, sym__ws, sym_comment, - ACTIONS(2491), 3, + ACTIONS(2920), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(605), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1359), 19, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1986), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -63694,7 +55387,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [68122] = 34, + [45765] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -63703,76 +55396,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(679), 1, + ACTIONS(274), 1, + anon_sym_POUND, + ACTIONS(278), 1, aux_sym_num_lit_token1, - ACTIONS(681), 1, + ACTIONS(280), 1, anon_sym_COLON, - ACTIONS(683), 1, + ACTIONS(282), 1, anon_sym_COLON_COLON, - ACTIONS(685), 1, + ACTIONS(284), 1, anon_sym_DQUOTE, - ACTIONS(691), 1, + ACTIONS(286), 1, aux_sym_sym_lit_token1, - ACTIONS(693), 1, + ACTIONS(288), 1, anon_sym_LPAREN, - ACTIONS(699), 1, + ACTIONS(292), 1, anon_sym_POUND_QMARK, - ACTIONS(701), 1, + ACTIONS(294), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(703), 1, + ACTIONS(296), 1, anon_sym_POUND_SQUOTE, - ACTIONS(705), 1, + ACTIONS(298), 1, anon_sym_SQUOTE, - ACTIONS(707), 1, + ACTIONS(300), 1, anon_sym_BQUOTE, - ACTIONS(709), 1, + ACTIONS(302), 1, anon_sym_COMMA_AT, - ACTIONS(711), 1, + ACTIONS(304), 1, anon_sym_COMMA, - ACTIONS(713), 1, + ACTIONS(899), 1, anon_sym_cl, - ACTIONS(2389), 1, - anon_sym_POUND, - STATE(1522), 1, + ACTIONS(1738), 1, + sym_self_referential_reader_macro, + STATE(1793), 1, sym__bare_set_lit, - STATE(1525), 1, + STATE(2119), 1, sym_sym_lit, - STATE(2032), 1, + STATE(2151), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(697), 2, + ACTIONS(290), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(715), 2, + ACTIONS(312), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(717), 2, + ACTIONS(316), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(719), 2, + ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2493), 3, + ACTIONS(1736), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1524), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1413), 19, + STATE(1792), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1806), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -63792,7 +55487,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [68254] = 34, + [45900] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -63801,76 +55496,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, - aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(809), 1, - anon_sym_cl, - ACTIONS(1545), 1, + ACTIONS(1442), 1, anon_sym_POUND, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, + ACTIONS(2928), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(2037), 1, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(2924), 2, sym__ws, sym_comment, - ACTIONS(2495), 3, + ACTIONS(2926), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(610), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1360), 19, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1975), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -63890,7 +55587,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [68386] = 34, + [46035] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -63899,76 +55596,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(777), 1, + ACTIONS(274), 1, + anon_sym_POUND, + ACTIONS(278), 1, + aux_sym_num_lit_token1, + ACTIONS(280), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(282), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(284), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(286), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(288), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(292), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(294), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(809), 1, - anon_sym_cl, - ACTIONS(873), 1, - aux_sym_num_lit_token1, - ACTIONS(877), 1, + ACTIONS(296), 1, anon_sym_POUND_SQUOTE, - ACTIONS(879), 1, + ACTIONS(298), 1, anon_sym_SQUOTE, - ACTIONS(881), 1, + ACTIONS(300), 1, anon_sym_BQUOTE, - ACTIONS(883), 1, + ACTIONS(302), 1, anon_sym_COMMA_AT, - ACTIONS(885), 1, + ACTIONS(304), 1, anon_sym_COMMA, - ACTIONS(1015), 1, - anon_sym_POUND, - STATE(1384), 1, + ACTIONS(899), 1, + anon_sym_cl, + ACTIONS(1746), 1, + sym_self_referential_reader_macro, + STATE(1793), 1, sym__bare_set_lit, - STATE(1817), 1, + STATE(2119), 1, sym_sym_lit, - STATE(2048), 1, + STATE(2151), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(811), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(815), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(875), 2, + ACTIONS(290), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(887), 2, + ACTIONS(312), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(316), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2497), 2, + ACTIONS(318), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2459), 3, + ACTIONS(1744), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(744), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1330), 3, + STATE(1792), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1352), 19, + STATE(1804), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -63988,7 +55687,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [68518] = 34, + [46170] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -63997,76 +55696,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(569), 1, + ACTIONS(274), 1, + anon_sym_POUND, + ACTIONS(278), 1, aux_sym_num_lit_token1, - ACTIONS(571), 1, + ACTIONS(280), 1, anon_sym_COLON, - ACTIONS(573), 1, + ACTIONS(282), 1, anon_sym_COLON_COLON, - ACTIONS(575), 1, + ACTIONS(284), 1, anon_sym_DQUOTE, - ACTIONS(581), 1, + ACTIONS(286), 1, aux_sym_sym_lit_token1, - ACTIONS(583), 1, + ACTIONS(288), 1, anon_sym_LPAREN, - ACTIONS(589), 1, + ACTIONS(292), 1, anon_sym_POUND_QMARK, - ACTIONS(591), 1, + ACTIONS(294), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(593), 1, + ACTIONS(296), 1, anon_sym_POUND_SQUOTE, - ACTIONS(595), 1, + ACTIONS(298), 1, anon_sym_SQUOTE, - ACTIONS(597), 1, + ACTIONS(300), 1, anon_sym_BQUOTE, - ACTIONS(599), 1, + ACTIONS(302), 1, anon_sym_COMMA_AT, - ACTIONS(601), 1, + ACTIONS(304), 1, anon_sym_COMMA, - ACTIONS(603), 1, + ACTIONS(899), 1, anon_sym_cl, - ACTIONS(1387), 1, - anon_sym_POUND, - STATE(1163), 1, - sym_sym_lit, - STATE(1186), 1, + ACTIONS(1754), 1, + sym_self_referential_reader_macro, + STATE(1793), 1, sym__bare_set_lit, - STATE(2027), 1, + STATE(2119), 1, + sym_sym_lit, + STATE(2151), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(587), 2, + ACTIONS(290), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(605), 2, + ACTIONS(312), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(607), 2, + ACTIONS(316), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(609), 2, + ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2499), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2501), 3, + ACTIONS(1752), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(178), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1183), 3, + STATE(1792), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1215), 19, + STATE(1803), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -64086,7 +55787,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [68650] = 34, + [46305] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -64095,76 +55796,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(679), 1, + ACTIONS(274), 1, + anon_sym_POUND, + ACTIONS(278), 1, aux_sym_num_lit_token1, - ACTIONS(681), 1, + ACTIONS(280), 1, anon_sym_COLON, - ACTIONS(683), 1, + ACTIONS(282), 1, anon_sym_COLON_COLON, - ACTIONS(685), 1, + ACTIONS(284), 1, anon_sym_DQUOTE, - ACTIONS(691), 1, + ACTIONS(286), 1, aux_sym_sym_lit_token1, - ACTIONS(693), 1, + ACTIONS(288), 1, anon_sym_LPAREN, - ACTIONS(699), 1, + ACTIONS(292), 1, anon_sym_POUND_QMARK, - ACTIONS(701), 1, + ACTIONS(294), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(703), 1, + ACTIONS(296), 1, anon_sym_POUND_SQUOTE, - ACTIONS(705), 1, + ACTIONS(298), 1, anon_sym_SQUOTE, - ACTIONS(707), 1, + ACTIONS(300), 1, anon_sym_BQUOTE, - ACTIONS(709), 1, + ACTIONS(302), 1, anon_sym_COMMA_AT, - ACTIONS(711), 1, + ACTIONS(304), 1, anon_sym_COMMA, - ACTIONS(713), 1, + ACTIONS(899), 1, anon_sym_cl, - ACTIONS(2389), 1, - anon_sym_POUND, - STATE(1522), 1, + ACTIONS(1762), 1, + sym_self_referential_reader_macro, + STATE(1793), 1, sym__bare_set_lit, - STATE(1525), 1, + STATE(2119), 1, sym_sym_lit, - STATE(2032), 1, + STATE(2151), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(697), 2, + ACTIONS(290), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(715), 2, + ACTIONS(312), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(717), 2, + ACTIONS(316), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(719), 2, + ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2503), 3, + ACTIONS(1760), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1524), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1494), 19, + STATE(1792), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1802), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -64184,7 +55887,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [68782] = 34, + [46440] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -64193,76 +55896,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, - aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(809), 1, - anon_sym_cl, - ACTIONS(1545), 1, + ACTIONS(1442), 1, anon_sym_POUND, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, + ACTIONS(2932), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(2037), 1, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2505), 3, + ACTIONS(2930), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1361), 19, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1997), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -64282,85 +55987,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [68914] = 34, + [46575] = 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(59), 1, + ACTIONS(11), 1, anon_sym_POUND, - ACTIONS(63), 1, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(65), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(67), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(69), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(71), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(75), 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(77), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(79), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(81), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(83), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(85), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(87), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(541), 1, - anon_sym_LPAREN, - ACTIONS(545), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - STATE(877), 1, - sym_sym_lit, - STATE(938), 1, + ACTIONS(1594), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(2065), 1, + STATE(1563), 1, + sym_sym_lit, + STATE(2153), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(73), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(91), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(93), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(95), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2507), 3, + ACTIONS(1592), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(939), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(840), 19, + STATE(1528), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -64380,7 +56087,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [69046] = 34, + [46710] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -64389,76 +56096,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, + ACTIONS(274), 1, + anon_sym_POUND, + ACTIONS(278), 1, aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(280), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(282), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(284), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(286), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(288), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(292), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(294), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(296), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(298), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(300), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(302), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(304), 1, anon_sym_COMMA, - ACTIONS(809), 1, + ACTIONS(899), 1, anon_sym_cl, - ACTIONS(1545), 1, - anon_sym_POUND, - STATE(1384), 1, + ACTIONS(1770), 1, + sym_self_referential_reader_macro, + STATE(1793), 1, sym__bare_set_lit, - STATE(1817), 1, + STATE(2119), 1, sym_sym_lit, - STATE(2037), 1, + STATE(2151), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, + ACTIONS(290), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(312), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, + ACTIONS(316), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2509), 3, + ACTIONS(1768), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1913), 19, + STATE(1792), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1801), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -64478,7 +56187,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [69178] = 34, + [46845] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -64487,76 +56196,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, - aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(809), 1, - anon_sym_cl, - ACTIONS(1545), 1, + ACTIONS(1442), 1, anon_sym_POUND, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, + ACTIONS(2936), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(2037), 1, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2511), 3, + ACTIONS(2934), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1362), 19, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1998), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -64576,85 +56287,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [69310] = 34, + [46980] = 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(679), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(681), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(683), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(685), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(691), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(693), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(699), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(701), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(703), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(705), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(707), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(709), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(711), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(713), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(2389), 1, - anon_sym_POUND, - STATE(1522), 1, + ACTIONS(2942), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(1525), 1, + STATE(1563), 1, sym_sym_lit, - STATE(2032), 1, + STATE(2153), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(697), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(715), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(717), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(719), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(2938), 2, sym__ws, sym_comment, - ACTIONS(2513), 3, + ACTIONS(2940), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1524), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(494), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1394), 19, + STATE(1562), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(266), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -64674,85 +56387,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [69442] = 34, + [47115] = 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(524), 1, + anon_sym_COLON, + ACTIONS(526), 1, + anon_sym_COLON_COLON, + ACTIONS(528), 1, + anon_sym_DQUOTE, + ACTIONS(534), 1, + aux_sym_sym_lit_token1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, + ACTIONS(1442), 1, + anon_sym_POUND, + ACTIONS(2948), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(2052), 1, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2515), 2, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(2944), 2, sym__ws, sym_comment, - ACTIONS(2517), 3, + ACTIONS(2946), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(547), 3, + STATE(617), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1609), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(494), 19, + STATE(1992), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -64772,7 +56487,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [69574] = 34, + [47250] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -64781,76 +56496,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(679), 1, + ACTIONS(274), 1, + anon_sym_POUND, + ACTIONS(278), 1, aux_sym_num_lit_token1, - ACTIONS(681), 1, + ACTIONS(280), 1, anon_sym_COLON, - ACTIONS(683), 1, + ACTIONS(282), 1, anon_sym_COLON_COLON, - ACTIONS(685), 1, + ACTIONS(284), 1, anon_sym_DQUOTE, - ACTIONS(691), 1, + ACTIONS(286), 1, aux_sym_sym_lit_token1, - ACTIONS(693), 1, + ACTIONS(288), 1, anon_sym_LPAREN, - ACTIONS(699), 1, + ACTIONS(292), 1, anon_sym_POUND_QMARK, - ACTIONS(701), 1, + ACTIONS(294), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(703), 1, + ACTIONS(296), 1, anon_sym_POUND_SQUOTE, - ACTIONS(705), 1, + ACTIONS(298), 1, anon_sym_SQUOTE, - ACTIONS(707), 1, + ACTIONS(300), 1, anon_sym_BQUOTE, - ACTIONS(709), 1, + ACTIONS(302), 1, anon_sym_COMMA_AT, - ACTIONS(711), 1, + ACTIONS(304), 1, anon_sym_COMMA, - ACTIONS(713), 1, + ACTIONS(899), 1, anon_sym_cl, - ACTIONS(2389), 1, - anon_sym_POUND, - STATE(1522), 1, + ACTIONS(1788), 1, + sym_self_referential_reader_macro, + STATE(1793), 1, sym__bare_set_lit, - STATE(1525), 1, + STATE(2119), 1, sym_sym_lit, - STATE(2032), 1, + STATE(2151), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(697), 2, + ACTIONS(290), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(715), 2, + ACTIONS(312), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(717), 2, + ACTIONS(316), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(719), 2, + ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(2950), 2, sym__ws, sym_comment, - ACTIONS(2519), 3, + ACTIONS(1786), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1524), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(531), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1396), 19, + STATE(1792), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1795), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -64870,7 +56587,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [69706] = 34, + [47385] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -64879,76 +56596,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, + ACTIONS(590), 1, aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(592), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(594), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(596), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(602), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(604), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(610), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(612), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(614), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(616), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(618), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(620), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(622), 1, anon_sym_COMMA, - ACTIONS(809), 1, + ACTIONS(624), 1, anon_sym_cl, - ACTIONS(1545), 1, + ACTIONS(1480), 1, anon_sym_POUND, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, - sym_sym_lit, - STATE(2037), 1, + ACTIONS(2954), 1, + sym_self_referential_reader_macro, + STATE(2155), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, + STATE(2313), 1, + sym__bare_set_lit, + STATE(2401), 1, + sym_sym_lit, + ACTIONS(608), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(626), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, + ACTIONS(630), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(632), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2521), 3, + ACTIONS(2952), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1891), 19, + STATE(2315), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2397), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -64968,85 +56687,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [69838] = 34, + [47520] = 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(536), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(592), 1, + anon_sym_COLON, + ACTIONS(594), 1, + anon_sym_COLON_COLON, + ACTIONS(596), 1, + anon_sym_DQUOTE, + ACTIONS(602), 1, + aux_sym_sym_lit_token1, + ACTIONS(624), 1, + anon_sym_cl, + ACTIONS(729), 1, + aux_sym_num_lit_token1, + ACTIONS(733), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(735), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(737), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(739), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(741), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(743), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(745), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, + ACTIONS(1554), 1, + anon_sym_POUND, + ACTIONS(2328), 1, + sym_self_referential_reader_macro, + STATE(2146), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, + STATE(2313), 1, + sym__bare_set_lit, + STATE(2401), 1, + sym_sym_lit, + ACTIONS(626), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, + ACTIONS(632), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2523), 2, + ACTIONS(731), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(747), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(2956), 2, sym__ws, sym_comment, - ACTIONS(2525), 3, + ACTIONS(2326), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(548), 3, + STATE(541), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1609), 3, + STATE(2315), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(496), 19, + STATE(2269), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -65066,7 +56787,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [69970] = 34, + [47655] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -65075,76 +56796,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, + ACTIONS(274), 1, + anon_sym_POUND, + ACTIONS(278), 1, aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(280), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(282), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(284), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(286), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(288), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(292), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(294), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(296), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(298), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(300), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(302), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(304), 1, anon_sym_COMMA, - ACTIONS(809), 1, + ACTIONS(899), 1, anon_sym_cl, - ACTIONS(1545), 1, - anon_sym_POUND, - STATE(1384), 1, + ACTIONS(1794), 1, + sym_self_referential_reader_macro, + STATE(1793), 1, sym__bare_set_lit, - STATE(1817), 1, + STATE(2119), 1, sym_sym_lit, - STATE(2037), 1, + STATE(2151), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, + ACTIONS(290), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(312), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, + ACTIONS(316), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2527), 2, + ACTIONS(2958), 2, sym__ws, sym_comment, - ACTIONS(2529), 3, + ACTIONS(1792), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(654), 3, + STATE(540), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1330), 3, + STATE(1792), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1902), 19, + STATE(1788), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -65164,85 +56887,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [70102] = 34, + [47790] = 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(274), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(278), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(280), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(282), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(284), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(286), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(288), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(292), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(294), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(296), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(298), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(300), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(302), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(304), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(899), 1, anon_sym_cl, - STATE(1608), 1, + ACTIONS(1804), 1, + sym_self_referential_reader_macro, + STATE(1793), 1, sym__bare_set_lit, - STATE(1610), 1, + STATE(2119), 1, sym_sym_lit, - STATE(2052), 1, + STATE(2151), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(290), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(312), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(53), 2, + ACTIONS(316), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(55), 2, + ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(2960), 2, sym__ws, sym_comment, - ACTIONS(2531), 3, + ACTIONS(1802), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(542), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(517), 19, + STATE(1792), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1786), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -65262,85 +56987,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [70234] = 34, + [47925] = 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(274), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(278), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(280), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(282), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(284), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(286), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(288), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(292), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(294), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(296), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(298), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(300), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(302), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(304), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(899), 1, anon_sym_cl, - STATE(1608), 1, + ACTIONS(1810), 1, + sym_self_referential_reader_macro, + STATE(1793), 1, sym__bare_set_lit, - STATE(1610), 1, + STATE(2119), 1, sym_sym_lit, - STATE(2052), 1, + STATE(2151), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(290), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(312), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(53), 2, + ACTIONS(316), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(55), 2, + ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2533), 2, + ACTIONS(2962), 2, sym__ws, sym_comment, - ACTIONS(2535), 3, + ACTIONS(1808), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(666), 3, + STATE(546), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1609), 3, + STATE(1792), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(189), 19, + STATE(1784), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -65360,7 +57087,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [70366] = 34, + [48060] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -65369,76 +57096,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, + ACTIONS(805), 1, aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(807), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(809), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(811), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(817), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(819), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(825), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(827), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(829), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(831), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(833), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(835), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(837), 1, anon_sym_COMMA, - ACTIONS(809), 1, + ACTIONS(839), 1, anon_sym_cl, - ACTIONS(1545), 1, + ACTIONS(1714), 1, anon_sym_POUND, - STATE(1384), 1, + ACTIONS(2968), 1, + sym_self_referential_reader_macro, + STATE(1781), 1, sym__bare_set_lit, - STATE(1817), 1, + STATE(1783), 1, sym_sym_lit, - STATE(2037), 1, + STATE(2121), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, + ACTIONS(823), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(841), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, + ACTIONS(845), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(847), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2537), 2, + ACTIONS(2964), 2, sym__ws, sym_comment, - ACTIONS(2539), 3, + ACTIONS(2966), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(659), 3, + STATE(434), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1330), 3, + STATE(1782), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1901), 19, + STATE(1746), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -65458,85 +57187,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [70498] = 34, + [48195] = 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(805), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(807), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(809), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(811), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(817), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(819), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(825), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(827), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(829), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(831), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(833), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(835), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(837), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(839), 1, anon_sym_cl, - STATE(1608), 1, + ACTIONS(1714), 1, + anon_sym_POUND, + ACTIONS(2974), 1, + sym_self_referential_reader_macro, + STATE(1781), 1, sym__bare_set_lit, - STATE(1610), 1, + STATE(1783), 1, sym_sym_lit, - STATE(2052), 1, + STATE(2121), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(823), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(841), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(53), 2, + ACTIONS(845), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(55), 2, + ACTIONS(847), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(2970), 2, sym__ws, sym_comment, - ACTIONS(2541), 3, + ACTIONS(2972), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(441), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1645), 19, + STATE(1782), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1748), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -65556,7 +57287,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [70630] = 34, + [48330] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -65565,76 +57296,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(679), 1, + ACTIONS(805), 1, aux_sym_num_lit_token1, - ACTIONS(681), 1, + ACTIONS(807), 1, anon_sym_COLON, - ACTIONS(683), 1, + ACTIONS(809), 1, anon_sym_COLON_COLON, - ACTIONS(685), 1, + ACTIONS(811), 1, anon_sym_DQUOTE, - ACTIONS(691), 1, + ACTIONS(817), 1, aux_sym_sym_lit_token1, - ACTIONS(693), 1, + ACTIONS(819), 1, anon_sym_LPAREN, - ACTIONS(699), 1, + ACTIONS(825), 1, anon_sym_POUND_QMARK, - ACTIONS(701), 1, + ACTIONS(827), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(703), 1, + ACTIONS(829), 1, anon_sym_POUND_SQUOTE, - ACTIONS(705), 1, + ACTIONS(831), 1, anon_sym_SQUOTE, - ACTIONS(707), 1, + ACTIONS(833), 1, anon_sym_BQUOTE, - ACTIONS(709), 1, + ACTIONS(835), 1, anon_sym_COMMA_AT, - ACTIONS(711), 1, + ACTIONS(837), 1, anon_sym_COMMA, - ACTIONS(713), 1, + ACTIONS(839), 1, anon_sym_cl, - ACTIONS(2389), 1, + ACTIONS(1714), 1, anon_sym_POUND, - STATE(1522), 1, + ACTIONS(2980), 1, + sym_self_referential_reader_macro, + STATE(1781), 1, sym__bare_set_lit, - STATE(1525), 1, + STATE(1783), 1, sym_sym_lit, - STATE(2032), 1, + STATE(2121), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(697), 2, + ACTIONS(823), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(715), 2, + ACTIONS(841), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(717), 2, + ACTIONS(845), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(719), 2, + ACTIONS(847), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(2976), 2, sym__ws, sym_comment, - ACTIONS(2543), 3, + ACTIONS(2978), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1524), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(443), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1516), 19, + STATE(1782), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1750), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -65654,7 +57387,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [70762] = 34, + [48465] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -65663,76 +57396,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, + ACTIONS(805), 1, aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(807), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(809), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(811), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(817), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(819), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(825), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(827), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(829), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(831), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(833), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(835), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(837), 1, anon_sym_COMMA, - ACTIONS(809), 1, + ACTIONS(839), 1, anon_sym_cl, - ACTIONS(1545), 1, + ACTIONS(1714), 1, anon_sym_POUND, - STATE(1384), 1, + ACTIONS(2986), 1, + sym_self_referential_reader_macro, + STATE(1781), 1, sym__bare_set_lit, - STATE(1817), 1, + STATE(1783), 1, sym_sym_lit, - STATE(2037), 1, + STATE(2121), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, + ACTIONS(823), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(841), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, + ACTIONS(845), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(847), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2545), 2, + ACTIONS(2982), 2, sym__ws, sym_comment, - ACTIONS(2547), 3, + ACTIONS(2984), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(665), 3, + STATE(459), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1330), 3, + STATE(1782), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1900), 19, + STATE(1752), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -65752,7 +57487,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [70894] = 34, + [48600] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -65761,76 +57496,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(679), 1, + ACTIONS(805), 1, aux_sym_num_lit_token1, - ACTIONS(681), 1, + ACTIONS(807), 1, anon_sym_COLON, - ACTIONS(683), 1, + ACTIONS(809), 1, anon_sym_COLON_COLON, - ACTIONS(685), 1, + ACTIONS(811), 1, anon_sym_DQUOTE, - ACTIONS(691), 1, + ACTIONS(817), 1, aux_sym_sym_lit_token1, - ACTIONS(693), 1, + ACTIONS(819), 1, anon_sym_LPAREN, - ACTIONS(699), 1, + ACTIONS(825), 1, anon_sym_POUND_QMARK, - ACTIONS(701), 1, + ACTIONS(827), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(703), 1, + ACTIONS(829), 1, anon_sym_POUND_SQUOTE, - ACTIONS(705), 1, + ACTIONS(831), 1, anon_sym_SQUOTE, - ACTIONS(707), 1, + ACTIONS(833), 1, anon_sym_BQUOTE, - ACTIONS(709), 1, + ACTIONS(835), 1, anon_sym_COMMA_AT, - ACTIONS(711), 1, + ACTIONS(837), 1, anon_sym_COMMA, - ACTIONS(713), 1, + ACTIONS(839), 1, anon_sym_cl, - ACTIONS(2389), 1, + ACTIONS(1714), 1, anon_sym_POUND, - STATE(1522), 1, + ACTIONS(2992), 1, + sym_self_referential_reader_macro, + STATE(1781), 1, sym__bare_set_lit, - STATE(1525), 1, + STATE(1783), 1, sym_sym_lit, - STATE(2032), 1, + STATE(2121), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(697), 2, + ACTIONS(823), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(715), 2, + ACTIONS(841), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(717), 2, + ACTIONS(845), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(719), 2, + ACTIONS(847), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2549), 2, + ACTIONS(2988), 2, sym__ws, sym_comment, - ACTIONS(2551), 3, + ACTIONS(2990), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(591), 3, + STATE(471), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1524), 3, + STATE(1782), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1399), 19, + STATE(1754), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -65850,85 +57587,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [71026] = 34, + [48735] = 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(777), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(809), 1, - anon_sym_cl, - ACTIONS(873), 1, - aux_sym_num_lit_token1, - ACTIONS(877), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(879), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(881), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(883), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(885), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(1015), 1, - anon_sym_POUND, - STATE(1384), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(2998), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(1817), 1, + STATE(1563), 1, sym_sym_lit, - STATE(2048), 1, + STATE(2153), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(811), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(815), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(875), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(887), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1353), 2, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(2994), 2, sym__ws, sym_comment, - ACTIONS(2511), 3, + ACTIONS(2996), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(496), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1362), 19, + STATE(1562), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(260), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -65948,7 +57687,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [71158] = 34, + [48870] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -65957,76 +57696,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, + ACTIONS(805), 1, aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(807), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(809), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(811), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(817), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(819), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(825), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(827), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(829), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(831), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(833), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(835), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(837), 1, anon_sym_COMMA, - ACTIONS(809), 1, + ACTIONS(839), 1, anon_sym_cl, - ACTIONS(1545), 1, + ACTIONS(1714), 1, anon_sym_POUND, - STATE(1384), 1, + ACTIONS(3002), 1, + sym_self_referential_reader_macro, + STATE(1781), 1, sym__bare_set_lit, - STATE(1817), 1, + STATE(1783), 1, sym_sym_lit, - STATE(2037), 1, + STATE(2121), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, + ACTIONS(823), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(841), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, + ACTIONS(845), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(847), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2553), 3, + ACTIONS(3000), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1914), 19, + STATE(1782), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1730), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -66046,7 +57787,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [71290] = 34, + [49005] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -66055,76 +57796,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(679), 1, - aux_sym_num_lit_token1, - ACTIONS(681), 1, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(592), 1, anon_sym_COLON, - ACTIONS(683), 1, + ACTIONS(594), 1, anon_sym_COLON_COLON, - ACTIONS(685), 1, + ACTIONS(596), 1, anon_sym_DQUOTE, - ACTIONS(691), 1, + ACTIONS(602), 1, aux_sym_sym_lit_token1, - ACTIONS(693), 1, - anon_sym_LPAREN, - ACTIONS(699), 1, + ACTIONS(624), 1, + anon_sym_cl, + ACTIONS(729), 1, + aux_sym_num_lit_token1, + ACTIONS(733), 1, anon_sym_POUND_QMARK, - ACTIONS(701), 1, + ACTIONS(735), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(703), 1, + ACTIONS(737), 1, anon_sym_POUND_SQUOTE, - ACTIONS(705), 1, + ACTIONS(739), 1, anon_sym_SQUOTE, - ACTIONS(707), 1, + ACTIONS(741), 1, anon_sym_BQUOTE, - ACTIONS(709), 1, + ACTIONS(743), 1, anon_sym_COMMA_AT, - ACTIONS(711), 1, + ACTIONS(745), 1, anon_sym_COMMA, - ACTIONS(713), 1, - anon_sym_cl, - ACTIONS(2389), 1, + ACTIONS(1554), 1, anon_sym_POUND, - STATE(1522), 1, - sym__bare_set_lit, - STATE(1525), 1, - sym_sym_lit, - STATE(2032), 1, + ACTIONS(2224), 1, + sym_self_referential_reader_macro, + STATE(2146), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(697), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(715), 2, + STATE(2313), 1, + sym__bare_set_lit, + STATE(2401), 1, + sym_sym_lit, + ACTIONS(626), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(717), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(719), 2, + ACTIONS(632), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2555), 2, + ACTIONS(731), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(747), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2557), 3, + ACTIONS(2222), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(604), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1524), 3, + STATE(2315), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1405), 19, + STATE(2293), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -66144,85 +57887,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [71422] = 34, + [49140] = 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(679), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(681), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(683), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(685), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(691), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(693), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(699), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(701), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(703), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(705), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(707), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(709), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(711), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(713), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(2389), 1, - anon_sym_POUND, - STATE(1522), 1, + ACTIONS(3006), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(1525), 1, + STATE(1563), 1, sym_sym_lit, - STATE(2032), 1, + STATE(2153), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(697), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(715), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(717), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(719), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2559), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2561), 3, + ACTIONS(3004), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(608), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1524), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1406), 19, + STATE(1564), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(252), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -66242,7 +57987,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [71554] = 34, + [49275] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -66251,76 +57996,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, + ACTIONS(274), 1, + anon_sym_POUND, + ACTIONS(278), 1, aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(280), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(282), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(284), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(286), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(288), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(292), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(294), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(296), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(298), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(300), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(302), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(304), 1, anon_sym_COMMA, - ACTIONS(809), 1, + ACTIONS(899), 1, anon_sym_cl, - ACTIONS(1545), 1, - anon_sym_POUND, - STATE(1384), 1, + ACTIONS(1824), 1, + sym_self_referential_reader_macro, + STATE(1793), 1, sym__bare_set_lit, - STATE(1817), 1, + STATE(2119), 1, sym_sym_lit, - STATE(2037), 1, + STATE(2151), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, + ACTIONS(290), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(312), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, + ACTIONS(316), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2563), 3, + ACTIONS(1822), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1899), 19, + STATE(1792), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1749), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -66340,7 +58087,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [71686] = 34, + [49410] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -66349,76 +58096,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, - aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(592), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(594), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(596), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(602), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(624), 1, + anon_sym_cl, + ACTIONS(729), 1, + aux_sym_num_lit_token1, + ACTIONS(733), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(735), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(737), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(739), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(741), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(743), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(745), 1, anon_sym_COMMA, - ACTIONS(809), 1, - anon_sym_cl, - ACTIONS(1545), 1, + ACTIONS(1554), 1, anon_sym_POUND, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, - sym_sym_lit, - STATE(2037), 1, + ACTIONS(2220), 1, + sym_self_referential_reader_macro, + STATE(2146), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(811), 2, + STATE(2313), 1, + sym__bare_set_lit, + STATE(2401), 1, + sym_sym_lit, + ACTIONS(626), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(632), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2565), 2, + ACTIONS(731), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(747), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2567), 3, + ACTIONS(2218), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(674), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1330), 3, + STATE(2315), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1898), 19, + STATE(2292), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -66438,7 +58187,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [71818] = 34, + [49545] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -66447,76 +58196,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(679), 1, + ACTIONS(190), 1, + anon_sym_POUND, + ACTIONS(194), 1, aux_sym_num_lit_token1, - ACTIONS(681), 1, + ACTIONS(196), 1, anon_sym_COLON, - ACTIONS(683), 1, + ACTIONS(198), 1, anon_sym_COLON_COLON, - ACTIONS(685), 1, + ACTIONS(200), 1, anon_sym_DQUOTE, - ACTIONS(691), 1, + ACTIONS(202), 1, aux_sym_sym_lit_token1, - ACTIONS(693), 1, - anon_sym_LPAREN, - ACTIONS(699), 1, + ACTIONS(217), 1, anon_sym_POUND_QMARK, - ACTIONS(701), 1, + ACTIONS(219), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(703), 1, + ACTIONS(221), 1, anon_sym_POUND_SQUOTE, - ACTIONS(705), 1, + ACTIONS(223), 1, anon_sym_SQUOTE, - ACTIONS(707), 1, + ACTIONS(225), 1, anon_sym_BQUOTE, - ACTIONS(709), 1, + ACTIONS(227), 1, anon_sym_COMMA_AT, - ACTIONS(711), 1, + ACTIONS(229), 1, anon_sym_COMMA, - ACTIONS(713), 1, + ACTIONS(576), 1, + anon_sym_LPAREN, + ACTIONS(580), 1, anon_sym_cl, - ACTIONS(2389), 1, - anon_sym_POUND, - STATE(1522), 1, + ACTIONS(3010), 1, + sym_self_referential_reader_macro, + STATE(1077), 1, sym__bare_set_lit, - STATE(1525), 1, + STATE(1079), 1, sym_sym_lit, - STATE(2032), 1, + STATE(2137), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(697), 2, + ACTIONS(215), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(715), 2, + ACTIONS(236), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(717), 2, + ACTIONS(240), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(719), 2, + ACTIONS(242), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2569), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2571), 3, + ACTIONS(3008), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(609), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1524), 3, + STATE(1078), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1407), 19, + STATE(1564), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(973), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -66536,85 +58287,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [71950] = 34, + [49680] = 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(190), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(194), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(196), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(198), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(200), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(202), 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(217), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(219), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(221), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(223), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(225), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(227), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(229), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(576), 1, + anon_sym_LPAREN, + ACTIONS(580), 1, anon_sym_cl, - STATE(1608), 1, + ACTIONS(3014), 1, + sym_self_referential_reader_macro, + STATE(1077), 1, sym__bare_set_lit, - STATE(1610), 1, + STATE(1079), 1, sym_sym_lit, - STATE(2052), 1, + STATE(2137), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(215), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(236), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(53), 2, + ACTIONS(240), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(55), 2, + ACTIONS(242), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2573), 3, + ACTIONS(3012), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1609), 3, + STATE(1078), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1648), 19, + STATE(1053), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -66634,7 +58387,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [72082] = 34, + [49815] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -66643,76 +58396,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, + ACTIONS(190), 1, + anon_sym_POUND, + ACTIONS(194), 1, aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(196), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(198), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(200), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(202), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(217), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(219), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(221), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(223), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(225), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(227), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(229), 1, anon_sym_COMMA, - ACTIONS(809), 1, + ACTIONS(576), 1, + anon_sym_LPAREN, + ACTIONS(580), 1, anon_sym_cl, - ACTIONS(1545), 1, - anon_sym_POUND, - STATE(1384), 1, + ACTIONS(3018), 1, + sym_self_referential_reader_macro, + STATE(1077), 1, sym__bare_set_lit, - STATE(1817), 1, + STATE(1079), 1, sym_sym_lit, - STATE(2037), 1, + STATE(2137), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, + ACTIONS(215), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(236), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, + ACTIONS(240), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(242), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2575), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2577), 3, + ACTIONS(3016), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(533), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1330), 3, + STATE(1078), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1915), 19, + STATE(1564), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(976), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -66732,85 +58487,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [72214] = 34, + [49950] = 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(775), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(809), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(1545), 1, - anon_sym_POUND, - STATE(1384), 1, + ACTIONS(3022), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(1817), 1, + STATE(1563), 1, sym_sym_lit, - STATE(2037), 1, + STATE(2153), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2579), 3, + ACTIONS(3020), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1330), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1885), 19, + STATE(478), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -66830,7 +58587,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [72346] = 34, + [50085] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -66839,76 +58596,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, + ACTIONS(274), 1, + anon_sym_POUND, + ACTIONS(278), 1, aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(280), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(282), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(284), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(286), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(288), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(292), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(294), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(296), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(298), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(300), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(302), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(304), 1, anon_sym_COMMA, - ACTIONS(809), 1, + ACTIONS(899), 1, anon_sym_cl, - ACTIONS(1545), 1, - anon_sym_POUND, - STATE(1384), 1, + ACTIONS(1830), 1, + sym_self_referential_reader_macro, + STATE(1793), 1, sym__bare_set_lit, - STATE(1817), 1, + STATE(2119), 1, sym_sym_lit, - STATE(2037), 1, + STATE(2151), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, + ACTIONS(290), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(312), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, + ACTIONS(316), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2581), 2, + ACTIONS(3024), 2, sym__ws, sym_comment, - ACTIONS(2583), 3, + ACTIONS(1828), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(678), 3, + STATE(553), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1330), 3, + STATE(1792), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1896), 19, + STATE(1747), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -66928,7 +58687,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [72478] = 34, + [50220] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -66937,76 +58696,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, - aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(592), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(594), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(596), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(602), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(624), 1, + anon_sym_cl, + ACTIONS(729), 1, + aux_sym_num_lit_token1, + ACTIONS(733), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(735), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(737), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(739), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(741), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(743), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(745), 1, anon_sym_COMMA, - ACTIONS(809), 1, - anon_sym_cl, - ACTIONS(1545), 1, + ACTIONS(1554), 1, anon_sym_POUND, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, - sym_sym_lit, - STATE(2037), 1, + ACTIONS(2194), 1, + sym_self_referential_reader_macro, + STATE(2146), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(811), 2, + STATE(2313), 1, + sym__bare_set_lit, + STATE(2401), 1, + sym_sym_lit, + ACTIONS(626), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(632), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(731), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(747), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2585), 3, + ACTIONS(2192), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1917), 19, + STATE(2315), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2288), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -67026,7 +58787,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [72610] = 34, + [50355] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -67035,76 +58796,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(679), 1, - aux_sym_num_lit_token1, - ACTIONS(681), 1, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(592), 1, anon_sym_COLON, - ACTIONS(683), 1, + ACTIONS(594), 1, anon_sym_COLON_COLON, - ACTIONS(685), 1, + ACTIONS(596), 1, anon_sym_DQUOTE, - ACTIONS(691), 1, + ACTIONS(602), 1, aux_sym_sym_lit_token1, - ACTIONS(693), 1, - anon_sym_LPAREN, - ACTIONS(699), 1, + ACTIONS(624), 1, + anon_sym_cl, + ACTIONS(729), 1, + aux_sym_num_lit_token1, + ACTIONS(733), 1, anon_sym_POUND_QMARK, - ACTIONS(701), 1, + ACTIONS(735), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(703), 1, + ACTIONS(737), 1, anon_sym_POUND_SQUOTE, - ACTIONS(705), 1, + ACTIONS(739), 1, anon_sym_SQUOTE, - ACTIONS(707), 1, + ACTIONS(741), 1, anon_sym_BQUOTE, - ACTIONS(709), 1, + ACTIONS(743), 1, anon_sym_COMMA_AT, - ACTIONS(711), 1, + ACTIONS(745), 1, anon_sym_COMMA, - ACTIONS(713), 1, - anon_sym_cl, - ACTIONS(2389), 1, + ACTIONS(1554), 1, anon_sym_POUND, - STATE(1522), 1, - sym__bare_set_lit, - STATE(1525), 1, - sym_sym_lit, - STATE(2032), 1, + ACTIONS(2174), 1, + sym_self_referential_reader_macro, + STATE(2146), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(697), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(715), 2, + STATE(2313), 1, + sym__bare_set_lit, + STATE(2401), 1, + sym_sym_lit, + ACTIONS(626), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(717), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(719), 2, + ACTIONS(632), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(731), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(747), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2587), 3, + ACTIONS(2172), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1524), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1531), 19, + STATE(2315), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2287), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -67124,7 +58887,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [72742] = 34, + [50490] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -67133,76 +58896,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(679), 1, + ACTIONS(274), 1, + anon_sym_POUND, + ACTIONS(278), 1, aux_sym_num_lit_token1, - ACTIONS(681), 1, + ACTIONS(280), 1, anon_sym_COLON, - ACTIONS(683), 1, + ACTIONS(282), 1, anon_sym_COLON_COLON, - ACTIONS(685), 1, + ACTIONS(284), 1, anon_sym_DQUOTE, - ACTIONS(691), 1, + ACTIONS(286), 1, aux_sym_sym_lit_token1, - ACTIONS(693), 1, + ACTIONS(288), 1, anon_sym_LPAREN, - ACTIONS(699), 1, + ACTIONS(292), 1, anon_sym_POUND_QMARK, - ACTIONS(701), 1, + ACTIONS(294), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(703), 1, + ACTIONS(296), 1, anon_sym_POUND_SQUOTE, - ACTIONS(705), 1, + ACTIONS(298), 1, anon_sym_SQUOTE, - ACTIONS(707), 1, + ACTIONS(300), 1, anon_sym_BQUOTE, - ACTIONS(709), 1, + ACTIONS(302), 1, anon_sym_COMMA_AT, - ACTIONS(711), 1, + ACTIONS(304), 1, anon_sym_COMMA, - ACTIONS(713), 1, + ACTIONS(899), 1, anon_sym_cl, - ACTIONS(2389), 1, - anon_sym_POUND, - STATE(1522), 1, + ACTIONS(1834), 1, + sym_self_referential_reader_macro, + STATE(1793), 1, sym__bare_set_lit, - STATE(1525), 1, + STATE(2119), 1, sym_sym_lit, - STATE(2032), 1, + STATE(2151), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(697), 2, + ACTIONS(290), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(715), 2, + ACTIONS(312), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(717), 2, + ACTIONS(316), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(719), 2, + ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2589), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2591), 3, + ACTIONS(1832), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(810), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1524), 3, + STATE(1792), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1517), 19, + STATE(1741), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -67222,7 +58987,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [72874] = 34, + [50625] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -67231,76 +58996,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, - aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(592), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(594), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(596), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(602), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(624), 1, + anon_sym_cl, + ACTIONS(729), 1, + aux_sym_num_lit_token1, + ACTIONS(733), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(735), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(737), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(739), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(741), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(743), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(745), 1, anon_sym_COMMA, - ACTIONS(809), 1, - anon_sym_cl, - ACTIONS(1545), 1, + ACTIONS(1554), 1, anon_sym_POUND, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, - sym_sym_lit, - STATE(2037), 1, + ACTIONS(2166), 1, + sym_self_referential_reader_macro, + STATE(2146), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(811), 2, + STATE(2313), 1, + sym__bare_set_lit, + STATE(2401), 1, + sym_sym_lit, + ACTIONS(626), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(632), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(731), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(747), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2593), 3, + ACTIONS(2164), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1895), 19, + STATE(2315), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2283), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -67320,7 +59087,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [73006] = 34, + [50760] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -67329,76 +59096,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, + ACTIONS(274), 1, + anon_sym_POUND, + ACTIONS(278), 1, aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(280), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(282), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(284), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(286), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(288), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(292), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(294), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(296), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(298), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(300), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(302), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(304), 1, anon_sym_COMMA, - ACTIONS(809), 1, + ACTIONS(899), 1, anon_sym_cl, - ACTIONS(1545), 1, - anon_sym_POUND, - STATE(1384), 1, + ACTIONS(1838), 1, + sym_self_referential_reader_macro, + STATE(1793), 1, sym__bare_set_lit, - STATE(1817), 1, + STATE(2119), 1, sym_sym_lit, - STATE(2037), 1, + STATE(2151), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, + ACTIONS(290), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(312), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, + ACTIONS(316), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2595), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2597), 3, + ACTIONS(1836), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(538), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1330), 3, + STATE(1792), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1918), 19, + STATE(1740), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -67418,85 +59187,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [73138] = 34, + [50895] = 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(775), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(809), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(1545), 1, - anon_sym_POUND, - STATE(1384), 1, + ACTIONS(3030), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(1817), 1, + STATE(1563), 1, sym_sym_lit, - STATE(2037), 1, + STATE(2153), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2599), 2, + ACTIONS(3026), 2, sym__ws, sym_comment, - ACTIONS(2601), 3, + ACTIONS(3028), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(683), 3, + STATE(530), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1330), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1894), 19, + STATE(242), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -67516,7 +59287,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [73270] = 34, + [51030] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -67525,76 +59296,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, - aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(592), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(594), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(596), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(602), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(624), 1, + anon_sym_cl, + ACTIONS(729), 1, + aux_sym_num_lit_token1, + ACTIONS(733), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(735), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(737), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(739), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(741), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(743), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(745), 1, anon_sym_COMMA, - ACTIONS(809), 1, - anon_sym_cl, - ACTIONS(1545), 1, + ACTIONS(1554), 1, anon_sym_POUND, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, - sym_sym_lit, - STATE(2037), 1, + ACTIONS(2160), 1, + sym_self_referential_reader_macro, + STATE(2146), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(811), 2, + STATE(2313), 1, + sym__bare_set_lit, + STATE(2401), 1, + sym_sym_lit, + ACTIONS(626), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(632), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2603), 2, + ACTIONS(731), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(747), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(3032), 2, sym__ws, sym_comment, - ACTIONS(2605), 3, + ACTIONS(2158), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(685), 3, + STATE(604), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1330), 3, + STATE(2315), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1893), 19, + STATE(2279), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -67614,7 +59387,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [73402] = 34, + [51165] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -67623,76 +59396,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(821), 1, + ACTIONS(274), 1, + anon_sym_POUND, + ACTIONS(278), 1, + aux_sym_num_lit_token1, + ACTIONS(280), 1, anon_sym_COLON, - ACTIONS(823), 1, + ACTIONS(282), 1, anon_sym_COLON_COLON, - ACTIONS(825), 1, + ACTIONS(284), 1, anon_sym_DQUOTE, - ACTIONS(827), 1, + ACTIONS(286), 1, aux_sym_sym_lit_token1, - ACTIONS(845), 1, - anon_sym_cl, - ACTIONS(853), 1, - aux_sym_num_lit_token1, - ACTIONS(857), 1, + ACTIONS(288), 1, + anon_sym_LPAREN, + ACTIONS(292), 1, anon_sym_POUND_QMARK, - ACTIONS(859), 1, + ACTIONS(294), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(861), 1, + ACTIONS(296), 1, anon_sym_POUND_SQUOTE, - ACTIONS(863), 1, + ACTIONS(298), 1, anon_sym_SQUOTE, - ACTIONS(865), 1, + ACTIONS(300), 1, anon_sym_BQUOTE, - ACTIONS(867), 1, + ACTIONS(302), 1, anon_sym_COMMA_AT, - ACTIONS(869), 1, + ACTIONS(304), 1, anon_sym_COMMA, - ACTIONS(1365), 1, - anon_sym_POUND, - STATE(2051), 1, + ACTIONS(899), 1, + anon_sym_cl, + ACTIONS(3038), 1, + sym_self_referential_reader_macro, + STATE(1793), 1, + sym__bare_set_lit, + STATE(2119), 1, + sym_sym_lit, + STATE(2151), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2333), 1, - sym__bare_set_lit, - STATE(2404), 1, - sym_sym_lit, - ACTIONS(653), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(657), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(855), 2, + ACTIONS(290), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(871), 2, + ACTIONS(312), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(316), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1353), 2, + ACTIONS(318), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(3034), 2, sym__ws, sym_comment, - ACTIONS(1879), 3, + ACTIONS(3036), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1657), 3, + STATE(503), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2332), 3, + STATE(1792), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1841), 19, + STATE(2169), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -67712,85 +59487,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [73534] = 34, + [51300] = 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(274), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(278), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(280), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(282), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(284), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(286), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(288), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(292), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(294), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(296), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(298), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(300), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(302), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(304), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(899), 1, anon_sym_cl, - STATE(1608), 1, + ACTIONS(1844), 1, + sym_self_referential_reader_macro, + STATE(1793), 1, sym__bare_set_lit, - STATE(1610), 1, + STATE(2119), 1, sym_sym_lit, - STATE(2052), 1, + STATE(2151), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(290), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(312), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(53), 2, + ACTIONS(316), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(55), 2, + ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2607), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2609), 3, + ACTIONS(1842), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(572), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1609), 3, + STATE(1792), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(549), 19, + STATE(1739), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -67810,7 +59587,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [73666] = 34, + [51435] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -67819,76 +59596,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, - aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(809), 1, - anon_sym_cl, - ACTIONS(1545), 1, + ACTIONS(1442), 1, anon_sym_POUND, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, + ACTIONS(2444), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(2037), 1, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(3040), 2, sym__ws, sym_comment, - ACTIONS(2611), 3, + ACTIONS(2442), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(228), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1919), 19, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1837), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -67908,7 +59687,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [73798] = 34, + [51570] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -67917,76 +59696,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, + ACTIONS(274), 1, + anon_sym_POUND, + ACTIONS(278), 1, aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(280), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(282), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(284), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(286), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(288), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(292), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(294), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(296), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(298), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(300), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(302), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(304), 1, anon_sym_COMMA, - ACTIONS(809), 1, + ACTIONS(899), 1, anon_sym_cl, - ACTIONS(1545), 1, - anon_sym_POUND, - STATE(1384), 1, + ACTIONS(1852), 1, + sym_self_referential_reader_macro, + STATE(1793), 1, sym__bare_set_lit, - STATE(1817), 1, + STATE(2119), 1, sym_sym_lit, - STATE(2037), 1, + STATE(2151), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, + ACTIONS(290), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(312), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, + ACTIONS(316), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(3042), 2, sym__ws, sym_comment, - ACTIONS(2613), 3, + ACTIONS(1850), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(554), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1892), 19, + STATE(1792), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1737), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -68006,7 +59787,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [73930] = 34, + [51705] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -68015,76 +59796,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(777), 1, + ACTIONS(190), 1, + anon_sym_POUND, + ACTIONS(194), 1, + aux_sym_num_lit_token1, + ACTIONS(196), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(198), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(200), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(202), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(217), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(219), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(809), 1, - anon_sym_cl, - ACTIONS(873), 1, - aux_sym_num_lit_token1, - ACTIONS(877), 1, + ACTIONS(221), 1, anon_sym_POUND_SQUOTE, - ACTIONS(879), 1, + ACTIONS(223), 1, anon_sym_SQUOTE, - ACTIONS(881), 1, + ACTIONS(225), 1, anon_sym_BQUOTE, - ACTIONS(883), 1, + ACTIONS(227), 1, anon_sym_COMMA_AT, - ACTIONS(885), 1, + ACTIONS(229), 1, anon_sym_COMMA, - ACTIONS(1015), 1, - anon_sym_POUND, - STATE(1384), 1, + ACTIONS(576), 1, + anon_sym_LPAREN, + ACTIONS(580), 1, + anon_sym_cl, + ACTIONS(3048), 1, + sym_self_referential_reader_macro, + STATE(1077), 1, sym__bare_set_lit, - STATE(1817), 1, + STATE(1079), 1, sym_sym_lit, - STATE(2048), 1, + STATE(2137), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(811), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(815), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(875), 2, + ACTIONS(215), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(887), 2, + ACTIONS(236), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(240), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1353), 2, + ACTIONS(242), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(3044), 2, sym__ws, sym_comment, - ACTIONS(2505), 3, + ACTIONS(3046), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(533), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1361), 19, + STATE(1078), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(986), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -68104,7 +59887,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [74062] = 34, + [51840] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -68113,76 +59896,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, + ACTIONS(190), 1, + anon_sym_POUND, + ACTIONS(194), 1, aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(196), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(198), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(200), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(202), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(217), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(219), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(221), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(223), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(225), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(227), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(229), 1, anon_sym_COMMA, - ACTIONS(809), 1, + ACTIONS(576), 1, + anon_sym_LPAREN, + ACTIONS(580), 1, anon_sym_cl, - ACTIONS(1545), 1, - anon_sym_POUND, - STATE(1384), 1, + ACTIONS(3052), 1, + sym_self_referential_reader_macro, + STATE(1077), 1, sym__bare_set_lit, - STATE(1817), 1, + STATE(1079), 1, sym_sym_lit, - STATE(2037), 1, + STATE(2137), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, + ACTIONS(215), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(236), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, + ACTIONS(240), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(242), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2615), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2617), 3, + ACTIONS(3050), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(690), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1330), 3, + STATE(1078), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1903), 19, + STATE(1564), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(987), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -68202,85 +59987,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [74194] = 34, + [51975] = 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(274), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(278), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(280), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(282), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(284), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(286), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(288), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(292), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(294), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(296), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(298), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(300), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(302), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(304), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(899), 1, anon_sym_cl, - STATE(1608), 1, + ACTIONS(1868), 1, + sym_self_referential_reader_macro, + STATE(1793), 1, sym__bare_set_lit, - STATE(1610), 1, + STATE(2119), 1, sym_sym_lit, - STATE(2052), 1, + STATE(2151), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(290), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(312), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(53), 2, + ACTIONS(316), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(55), 2, + ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(3054), 2, sym__ws, sym_comment, - ACTIONS(2619), 3, + ACTIONS(1866), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(558), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1653), 19, + STATE(1792), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1735), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -68300,7 +60087,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [74326] = 34, + [52110] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -68309,76 +60096,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(679), 1, + ACTIONS(190), 1, + anon_sym_POUND, + ACTIONS(194), 1, aux_sym_num_lit_token1, - ACTIONS(681), 1, + ACTIONS(196), 1, anon_sym_COLON, - ACTIONS(683), 1, + ACTIONS(198), 1, anon_sym_COLON_COLON, - ACTIONS(685), 1, + ACTIONS(200), 1, anon_sym_DQUOTE, - ACTIONS(691), 1, + ACTIONS(202), 1, aux_sym_sym_lit_token1, - ACTIONS(693), 1, - anon_sym_LPAREN, - ACTIONS(699), 1, + ACTIONS(217), 1, anon_sym_POUND_QMARK, - ACTIONS(701), 1, + ACTIONS(219), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(703), 1, + ACTIONS(221), 1, anon_sym_POUND_SQUOTE, - ACTIONS(705), 1, + ACTIONS(223), 1, anon_sym_SQUOTE, - ACTIONS(707), 1, + ACTIONS(225), 1, anon_sym_BQUOTE, - ACTIONS(709), 1, + ACTIONS(227), 1, anon_sym_COMMA_AT, - ACTIONS(711), 1, + ACTIONS(229), 1, anon_sym_COMMA, - ACTIONS(713), 1, + ACTIONS(576), 1, + anon_sym_LPAREN, + ACTIONS(580), 1, anon_sym_cl, - ACTIONS(2389), 1, - anon_sym_POUND, - STATE(1522), 1, + ACTIONS(3060), 1, + sym_self_referential_reader_macro, + STATE(1077), 1, sym__bare_set_lit, - STATE(1525), 1, + STATE(1079), 1, sym_sym_lit, - STATE(2032), 1, + STATE(2137), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(697), 2, + ACTIONS(215), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(715), 2, + ACTIONS(236), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(717), 2, + ACTIONS(240), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(719), 2, + ACTIONS(242), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(3056), 2, sym__ws, sym_comment, - ACTIONS(2621), 3, + ACTIONS(3058), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1524), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(535), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1506), 19, + STATE(1078), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(988), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -68398,7 +60187,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [74458] = 34, + [52245] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -68407,76 +60196,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, + ACTIONS(274), 1, + anon_sym_POUND, + ACTIONS(278), 1, aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(280), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(282), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(284), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(286), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(288), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(292), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(294), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(296), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(298), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(300), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(302), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(304), 1, anon_sym_COMMA, - ACTIONS(809), 1, + ACTIONS(899), 1, anon_sym_cl, - ACTIONS(1545), 1, - anon_sym_POUND, - STATE(1384), 1, + ACTIONS(1888), 1, + sym_self_referential_reader_macro, + STATE(1793), 1, sym__bare_set_lit, - STATE(1817), 1, + STATE(2119), 1, sym_sym_lit, - STATE(2037), 1, + STATE(2151), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, + ACTIONS(290), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(312), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, + ACTIONS(316), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2623), 3, + ACTIONS(1886), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1977), 19, + STATE(1792), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1734), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -68496,7 +60287,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [74590] = 34, + [52380] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -68505,76 +60296,178 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(821), 1, + ACTIONS(274), 1, + anon_sym_POUND, + ACTIONS(278), 1, + aux_sym_num_lit_token1, + ACTIONS(280), 1, anon_sym_COLON, - ACTIONS(823), 1, + ACTIONS(282), 1, anon_sym_COLON_COLON, - ACTIONS(825), 1, + ACTIONS(284), 1, anon_sym_DQUOTE, - ACTIONS(827), 1, + ACTIONS(286), 1, aux_sym_sym_lit_token1, - ACTIONS(845), 1, - anon_sym_cl, - ACTIONS(853), 1, - aux_sym_num_lit_token1, - ACTIONS(857), 1, + ACTIONS(288), 1, + anon_sym_LPAREN, + ACTIONS(292), 1, anon_sym_POUND_QMARK, - ACTIONS(859), 1, + ACTIONS(294), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(861), 1, + ACTIONS(296), 1, anon_sym_POUND_SQUOTE, - ACTIONS(863), 1, + ACTIONS(298), 1, anon_sym_SQUOTE, - ACTIONS(865), 1, + ACTIONS(300), 1, anon_sym_BQUOTE, - ACTIONS(867), 1, + ACTIONS(302), 1, anon_sym_COMMA_AT, - ACTIONS(869), 1, + ACTIONS(304), 1, anon_sym_COMMA, - ACTIONS(1365), 1, - anon_sym_POUND, - STATE(2051), 1, + ACTIONS(899), 1, + anon_sym_cl, + ACTIONS(1898), 1, + sym_self_referential_reader_macro, + STATE(1793), 1, + sym__bare_set_lit, + STATE(2119), 1, + sym_sym_lit, + STATE(2151), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2333), 1, - sym__bare_set_lit, - STATE(2404), 1, - sym_sym_lit, - ACTIONS(653), 2, + ACTIONS(290), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(312), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(657), 2, + ACTIONS(316), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(855), 2, + ACTIONS(1440), 2, + sym__ws, + sym_comment, + ACTIONS(1896), 3, + anon_sym_DOT, + sym_nil_lit, + sym_fancy_literal, + STATE(1564), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1792), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1729), 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, + [52515] = 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(190), 1, + anon_sym_POUND, + ACTIONS(194), 1, + aux_sym_num_lit_token1, + ACTIONS(196), 1, + anon_sym_COLON, + ACTIONS(198), 1, + anon_sym_COLON_COLON, + ACTIONS(200), 1, + anon_sym_DQUOTE, + ACTIONS(202), 1, + aux_sym_sym_lit_token1, + ACTIONS(217), 1, + anon_sym_POUND_QMARK, + ACTIONS(219), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(221), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(223), 1, + anon_sym_SQUOTE, + ACTIONS(225), 1, + anon_sym_BQUOTE, + ACTIONS(227), 1, + anon_sym_COMMA_AT, + ACTIONS(229), 1, + anon_sym_COMMA, + ACTIONS(576), 1, + anon_sym_LPAREN, + ACTIONS(580), 1, + anon_sym_cl, + ACTIONS(3064), 1, + sym_self_referential_reader_macro, + STATE(1077), 1, + sym__bare_set_lit, + STATE(1079), 1, + sym_sym_lit, + STATE(2137), 1, + aux_sym_list_lit_repeat1, + STATE(2202), 1, + sym_old_meta_lit, + STATE(2206), 1, + sym_meta_lit, + STATE(2237), 1, + sym__metadata_lit, + ACTIONS(215), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(871), 2, + ACTIONS(236), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(240), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2625), 2, + ACTIONS(242), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2365), 3, + ACTIONS(3062), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(597), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2332), 3, + STATE(1078), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1836), 19, + STATE(1564), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(989), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -68594,7 +60487,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [74722] = 34, + [52650] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -68603,76 +60496,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, + ACTIONS(590), 1, aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(592), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(594), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(596), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(602), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(604), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(610), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(612), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(614), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(616), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(618), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(620), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(622), 1, anon_sym_COMMA, - ACTIONS(809), 1, + ACTIONS(624), 1, anon_sym_cl, - ACTIONS(1545), 1, + ACTIONS(1480), 1, anon_sym_POUND, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, - sym_sym_lit, - STATE(2037), 1, + ACTIONS(3070), 1, + sym_self_referential_reader_macro, + STATE(2155), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, + STATE(2313), 1, + sym__bare_set_lit, + STATE(2401), 1, + sym_sym_lit, + ACTIONS(608), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(626), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, + ACTIONS(630), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(632), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2627), 2, + ACTIONS(3066), 2, sym__ws, sym_comment, - ACTIONS(2629), 3, + ACTIONS(3068), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(695), 3, + STATE(174), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1330), 3, + STATE(2315), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1953), 19, + STATE(2108), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -68692,7 +60587,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [74854] = 34, + [52785] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -68701,76 +60596,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(679), 1, + ACTIONS(274), 1, + anon_sym_POUND, + ACTIONS(278), 1, aux_sym_num_lit_token1, - ACTIONS(681), 1, + ACTIONS(280), 1, anon_sym_COLON, - ACTIONS(683), 1, + ACTIONS(282), 1, anon_sym_COLON_COLON, - ACTIONS(685), 1, + ACTIONS(284), 1, anon_sym_DQUOTE, - ACTIONS(691), 1, + ACTIONS(286), 1, aux_sym_sym_lit_token1, - ACTIONS(693), 1, + ACTIONS(288), 1, anon_sym_LPAREN, - ACTIONS(699), 1, + ACTIONS(292), 1, anon_sym_POUND_QMARK, - ACTIONS(701), 1, + ACTIONS(294), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(703), 1, + ACTIONS(296), 1, anon_sym_POUND_SQUOTE, - ACTIONS(705), 1, + ACTIONS(298), 1, anon_sym_SQUOTE, - ACTIONS(707), 1, + ACTIONS(300), 1, anon_sym_BQUOTE, - ACTIONS(709), 1, + ACTIONS(302), 1, anon_sym_COMMA_AT, - ACTIONS(711), 1, + ACTIONS(304), 1, anon_sym_COMMA, - ACTIONS(713), 1, + ACTIONS(899), 1, anon_sym_cl, - ACTIONS(2389), 1, - anon_sym_POUND, - STATE(1522), 1, + ACTIONS(1904), 1, + sym_self_referential_reader_macro, + STATE(1793), 1, sym__bare_set_lit, - STATE(1525), 1, + STATE(2119), 1, sym_sym_lit, - STATE(2032), 1, + STATE(2151), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(697), 2, + ACTIONS(290), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(715), 2, + ACTIONS(312), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(717), 2, + ACTIONS(316), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(719), 2, + ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(3072), 2, sym__ws, sym_comment, - ACTIONS(2631), 3, + ACTIONS(1902), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1524), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(560), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1504), 19, + STATE(1792), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1715), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -68790,7 +60687,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [74986] = 34, + [52920] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -68799,76 +60696,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(679), 1, + ACTIONS(274), 1, + anon_sym_POUND, + ACTIONS(278), 1, aux_sym_num_lit_token1, - ACTIONS(681), 1, + ACTIONS(280), 1, anon_sym_COLON, - ACTIONS(683), 1, + ACTIONS(282), 1, anon_sym_COLON_COLON, - ACTIONS(685), 1, + ACTIONS(284), 1, anon_sym_DQUOTE, - ACTIONS(691), 1, + ACTIONS(286), 1, aux_sym_sym_lit_token1, - ACTIONS(693), 1, + ACTIONS(288), 1, anon_sym_LPAREN, - ACTIONS(699), 1, + ACTIONS(292), 1, anon_sym_POUND_QMARK, - ACTIONS(701), 1, + ACTIONS(294), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(703), 1, + ACTIONS(296), 1, anon_sym_POUND_SQUOTE, - ACTIONS(705), 1, + ACTIONS(298), 1, anon_sym_SQUOTE, - ACTIONS(707), 1, + ACTIONS(300), 1, anon_sym_BQUOTE, - ACTIONS(709), 1, + ACTIONS(302), 1, anon_sym_COMMA_AT, - ACTIONS(711), 1, + ACTIONS(304), 1, anon_sym_COMMA, - ACTIONS(713), 1, + ACTIONS(899), 1, anon_sym_cl, - ACTIONS(2389), 1, - anon_sym_POUND, - STATE(1522), 1, + ACTIONS(1984), 1, + sym_self_referential_reader_macro, + STATE(1793), 1, sym__bare_set_lit, - STATE(1525), 1, + STATE(2119), 1, sym_sym_lit, - STATE(2032), 1, + STATE(2151), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(697), 2, + ACTIONS(290), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(715), 2, + ACTIONS(312), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(717), 2, + ACTIONS(316), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(719), 2, + ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2633), 3, + ACTIONS(1982), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1524), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1490), 19, + STATE(1792), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1713), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -68888,7 +60787,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [75118] = 34, + [53055] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -68897,76 +60796,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, + ACTIONS(274), 1, + anon_sym_POUND, + ACTIONS(278), 1, aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(280), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(282), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(284), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(286), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(288), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(292), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(294), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(296), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(298), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(300), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(302), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(304), 1, anon_sym_COMMA, - ACTIONS(809), 1, + ACTIONS(899), 1, anon_sym_cl, - ACTIONS(1545), 1, - anon_sym_POUND, - STATE(1384), 1, + ACTIONS(1994), 1, + sym_self_referential_reader_macro, + STATE(1793), 1, sym__bare_set_lit, - STATE(1817), 1, + STATE(2119), 1, sym_sym_lit, - STATE(2037), 1, + STATE(2151), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, + ACTIONS(290), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(312), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, + ACTIONS(316), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(3074), 2, sym__ws, sym_comment, - ACTIONS(2635), 3, + ACTIONS(1992), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1889), 19, + STATE(1792), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1710), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -68986,7 +60887,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [75250] = 34, + [53190] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -68995,76 +60896,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, + ACTIONS(274), 1, + anon_sym_POUND, + ACTIONS(278), 1, aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(280), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(282), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(284), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(286), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(288), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(292), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(294), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(296), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(298), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(300), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(302), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(304), 1, anon_sym_COMMA, - ACTIONS(809), 1, + ACTIONS(899), 1, anon_sym_cl, - ACTIONS(1545), 1, - anon_sym_POUND, - STATE(1384), 1, + ACTIONS(2006), 1, + sym_self_referential_reader_macro, + STATE(1793), 1, sym__bare_set_lit, - STATE(1817), 1, + STATE(2119), 1, sym_sym_lit, - STATE(2037), 1, + STATE(2151), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, + ACTIONS(290), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(312), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, + ACTIONS(316), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2637), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2639), 3, + ACTIONS(2004), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(700), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1330), 3, + STATE(1792), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1888), 19, + STATE(1700), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -69084,7 +60987,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [75382] = 34, + [53325] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -69093,76 +60996,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, + ACTIONS(190), 1, + anon_sym_POUND, + ACTIONS(194), 1, aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(196), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(198), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(200), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(202), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(217), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(219), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(221), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(223), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(225), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(227), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(229), 1, anon_sym_COMMA, - ACTIONS(809), 1, + ACTIONS(576), 1, + anon_sym_LPAREN, + ACTIONS(580), 1, anon_sym_cl, - ACTIONS(1545), 1, - anon_sym_POUND, - STATE(1384), 1, + ACTIONS(3078), 1, + sym_self_referential_reader_macro, + STATE(1077), 1, sym__bare_set_lit, - STATE(1817), 1, + STATE(1079), 1, sym_sym_lit, - STATE(2037), 1, + STATE(2137), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, + ACTIONS(215), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(236), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, + ACTIONS(240), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(242), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2641), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2481), 3, + ACTIONS(3076), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(552), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1330), 3, + STATE(1078), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1371), 19, + STATE(1564), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(991), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -69182,7 +61087,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [75514] = 34, + [53460] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -69191,76 +61096,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, - aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(592), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(594), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(596), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(602), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(624), 1, + anon_sym_cl, + ACTIONS(729), 1, + aux_sym_num_lit_token1, + ACTIONS(733), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(735), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(737), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(739), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(741), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(743), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(745), 1, anon_sym_COMMA, - ACTIONS(809), 1, - anon_sym_cl, - ACTIONS(1545), 1, + ACTIONS(1554), 1, anon_sym_POUND, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, - sym_sym_lit, - STATE(2037), 1, + ACTIONS(2154), 1, + sym_self_referential_reader_macro, + STATE(2146), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(811), 2, + STATE(2313), 1, + sym__bare_set_lit, + STATE(2401), 1, + sym_sym_lit, + ACTIONS(626), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(632), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2643), 2, + ACTIONS(731), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(747), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(3080), 2, sym__ws, sym_comment, - ACTIONS(2645), 3, + ACTIONS(2152), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(702), 3, + STATE(612), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1330), 3, + STATE(2315), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1887), 19, + STATE(2274), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -69280,7 +61187,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [75646] = 34, + [53595] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -69289,76 +61196,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, + ACTIONS(61), 1, + anon_sym_POUND, + ACTIONS(65), 1, aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(67), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(69), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(71), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(73), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(77), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(79), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(81), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(87), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(89), 1, anon_sym_COMMA, - ACTIONS(809), 1, + ACTIONS(775), 1, + anon_sym_LPAREN, + ACTIONS(779), 1, anon_sym_cl, - ACTIONS(1545), 1, - anon_sym_POUND, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, + ACTIONS(3084), 1, + sym_self_referential_reader_macro, + STATE(862), 1, sym_sym_lit, - STATE(2037), 1, + STATE(870), 1, + sym__bare_set_lit, + STATE(2156), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, + ACTIONS(75), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(93), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, + ACTIONS(97), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(99), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2647), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2455), 3, + ACTIONS(3082), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(556), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1330), 3, + STATE(863), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1372), 19, + STATE(1564), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(844), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -69378,7 +61287,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [75778] = 34, + [53730] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -69387,76 +61296,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(777), 1, + ACTIONS(274), 1, + anon_sym_POUND, + ACTIONS(278), 1, + aux_sym_num_lit_token1, + ACTIONS(280), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(282), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(284), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(286), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(288), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(292), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(294), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(809), 1, - anon_sym_cl, - ACTIONS(873), 1, - aux_sym_num_lit_token1, - ACTIONS(877), 1, + ACTIONS(296), 1, anon_sym_POUND_SQUOTE, - ACTIONS(879), 1, + ACTIONS(298), 1, anon_sym_SQUOTE, - ACTIONS(881), 1, + ACTIONS(300), 1, anon_sym_BQUOTE, - ACTIONS(883), 1, + ACTIONS(302), 1, anon_sym_COMMA_AT, - ACTIONS(885), 1, + ACTIONS(304), 1, anon_sym_COMMA, - ACTIONS(1015), 1, - anon_sym_POUND, - STATE(1384), 1, + ACTIONS(899), 1, + anon_sym_cl, + ACTIONS(2014), 1, + sym_self_referential_reader_macro, + STATE(1793), 1, sym__bare_set_lit, - STATE(1817), 1, + STATE(2119), 1, sym_sym_lit, - STATE(2048), 1, + STATE(2151), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(811), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(815), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(875), 2, + ACTIONS(290), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(887), 2, + ACTIONS(312), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(316), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1353), 2, + ACTIONS(318), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2495), 3, + ACTIONS(2012), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1360), 19, + STATE(1792), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1699), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -69476,7 +61387,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [75910] = 34, + [53865] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -69485,76 +61396,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, + ACTIONS(907), 1, aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(909), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(911), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(913), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(919), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(921), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(927), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(929), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(931), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(933), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(935), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(937), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(939), 1, anon_sym_COMMA, - ACTIONS(809), 1, + ACTIONS(941), 1, anon_sym_cl, - ACTIONS(1545), 1, + ACTIONS(1998), 1, anon_sym_POUND, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, + ACTIONS(3090), 1, + sym_self_referential_reader_macro, + STATE(1165), 1, sym_sym_lit, - STATE(2037), 1, + STATE(1176), 1, + sym__bare_set_lit, + STATE(2152), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, + ACTIONS(925), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(943), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, + ACTIONS(947), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(949), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2649), 2, + ACTIONS(3086), 2, sym__ws, sym_comment, - ACTIONS(2239), 3, + ACTIONS(3088), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(558), 3, + STATE(586), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1330), 3, + STATE(1175), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1373), 19, + STATE(1219), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -69574,7 +61487,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [76042] = 34, + [54000] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -69583,76 +61496,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, - aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(592), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(594), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(596), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(602), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(624), 1, + anon_sym_cl, + ACTIONS(729), 1, + aux_sym_num_lit_token1, + ACTIONS(733), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(735), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(737), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(739), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(741), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(743), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(745), 1, anon_sym_COMMA, - ACTIONS(809), 1, - anon_sym_cl, - ACTIONS(1545), 1, + ACTIONS(1554), 1, anon_sym_POUND, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, - sym_sym_lit, - STATE(2037), 1, + ACTIONS(2148), 1, + sym_self_referential_reader_macro, + STATE(2146), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(811), 2, + STATE(2313), 1, + sym__bare_set_lit, + STATE(2401), 1, + sym_sym_lit, + ACTIONS(626), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(632), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(731), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(747), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(3092), 2, sym__ws, sym_comment, - ACTIONS(2651), 3, + ACTIONS(2146), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(614), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1886), 19, + STATE(2315), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2270), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -69672,7 +61587,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [76174] = 34, + [54135] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -69681,76 +61596,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, + ACTIONS(907), 1, aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(909), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(911), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(913), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(919), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(921), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(927), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(929), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(931), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(933), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(935), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(937), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(939), 1, anon_sym_COMMA, - ACTIONS(809), 1, + ACTIONS(941), 1, anon_sym_cl, - ACTIONS(1545), 1, + ACTIONS(1998), 1, anon_sym_POUND, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, + ACTIONS(3098), 1, + sym_self_referential_reader_macro, + STATE(1165), 1, sym_sym_lit, - STATE(2037), 1, + STATE(1176), 1, + sym__bare_set_lit, + STATE(2152), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, + ACTIONS(925), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(943), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, + ACTIONS(947), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(949), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2653), 2, + ACTIONS(3094), 2, sym__ws, sym_comment, - ACTIONS(2221), 3, + ACTIONS(3096), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(562), 3, + STATE(615), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1330), 3, + STATE(1175), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1374), 19, + STATE(1221), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -69770,7 +61687,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [76306] = 34, + [54270] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -69779,76 +61696,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, - aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(592), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(594), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(596), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(602), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(624), 1, + anon_sym_cl, + ACTIONS(729), 1, + aux_sym_num_lit_token1, + ACTIONS(733), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(735), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(737), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(739), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(741), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(743), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(745), 1, anon_sym_COMMA, - ACTIONS(809), 1, - anon_sym_cl, - ACTIONS(1545), 1, + ACTIONS(1554), 1, anon_sym_POUND, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, - sym_sym_lit, - STATE(2037), 1, + ACTIONS(2136), 1, + sym_self_referential_reader_macro, + STATE(2146), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(811), 2, + STATE(2313), 1, + sym__bare_set_lit, + STATE(2401), 1, + sym_sym_lit, + ACTIONS(626), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(632), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2655), 2, + ACTIONS(731), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(747), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(3100), 2, sym__ws, sym_comment, - ACTIONS(2213), 3, + ACTIONS(2134), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(565), 3, + STATE(627), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1330), 3, + STATE(2315), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1375), 19, + STATE(2265), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -69868,7 +61787,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [76438] = 34, + [54405] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -69877,76 +61796,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(569), 1, - aux_sym_num_lit_token1, - ACTIONS(571), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(573), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(575), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(581), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(583), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(589), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(591), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(593), 1, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(595), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(597), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(599), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(601), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(603), 1, - anon_sym_cl, - ACTIONS(1387), 1, + ACTIONS(1442), 1, anon_sym_POUND, - STATE(1163), 1, + ACTIONS(3104), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(1186), 1, + STATE(1902), 1, sym__bare_set_lit, - STATE(2027), 1, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(587), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(605), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(607), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(609), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2657), 2, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2659), 3, + ACTIONS(3102), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(673), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1183), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1181), 19, + STATE(2004), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -69966,85 +61887,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [76570] = 34, + [54540] = 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(775), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(809), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(1545), 1, - anon_sym_POUND, - STATE(1384), 1, + ACTIONS(3108), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(1817), 1, + STATE(1563), 1, sym_sym_lit, - STATE(2037), 1, + STATE(2153), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2661), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2663), 3, + ACTIONS(3106), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(550), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1330), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1921), 19, + STATE(1564), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(171), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -70064,7 +61987,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [76702] = 34, + [54675] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -70073,76 +61996,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(619), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(621), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(623), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(629), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(631), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(873), 1, - aux_sym_num_lit_token1, - ACTIONS(893), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(895), 1, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(897), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(899), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(901), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(903), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(905), 1, - anon_sym_cl, - ACTIONS(2113), 1, + ACTIONS(1442), 1, anon_sym_POUND, - STATE(1384), 1, + ACTIONS(3114), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, + sym_sym_lit, + STATE(1902), 1, sym__bare_set_lit, - STATE(2050), 1, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2223), 1, - sym_sym_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(811), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(815), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(875), 2, + ACTIONS(785), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(907), 2, + ACTIONS(797), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1353), 2, + ACTIONS(3110), 2, sym__ws, sym_comment, - ACTIONS(2151), 3, + ACTIONS(3112), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(654), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1326), 19, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1958), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -70162,85 +62087,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [76834] = 34, + [54810] = 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(619), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(621), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(623), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(629), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(631), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(873), 1, - aux_sym_num_lit_token1, - ACTIONS(893), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(895), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(897), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(899), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(901), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(903), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(905), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(2113), 1, - anon_sym_POUND, - STATE(1384), 1, + ACTIONS(3118), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(2050), 1, + STATE(1563), 1, + sym_sym_lit, + STATE(2153), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2223), 1, - sym_sym_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(811), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(815), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(875), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(907), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1353), 2, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2161), 3, + ACTIONS(3116), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1330), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1331), 19, + STATE(173), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -70260,7 +62187,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [76966] = 34, + [54945] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -70269,76 +62196,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(619), 1, + ACTIONS(907), 1, + aux_sym_num_lit_token1, + ACTIONS(909), 1, anon_sym_COLON, - ACTIONS(621), 1, + ACTIONS(911), 1, anon_sym_COLON_COLON, - ACTIONS(623), 1, + ACTIONS(913), 1, anon_sym_DQUOTE, - ACTIONS(629), 1, + ACTIONS(919), 1, aux_sym_sym_lit_token1, - ACTIONS(631), 1, + ACTIONS(921), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(927), 1, anon_sym_POUND_QMARK, - ACTIONS(873), 1, - aux_sym_num_lit_token1, - ACTIONS(893), 1, + ACTIONS(929), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(895), 1, + ACTIONS(931), 1, anon_sym_POUND_SQUOTE, - ACTIONS(897), 1, + ACTIONS(933), 1, anon_sym_SQUOTE, - ACTIONS(899), 1, + ACTIONS(935), 1, anon_sym_BQUOTE, - ACTIONS(901), 1, + ACTIONS(937), 1, anon_sym_COMMA_AT, - ACTIONS(903), 1, + ACTIONS(939), 1, anon_sym_COMMA, - ACTIONS(905), 1, + ACTIONS(941), 1, anon_sym_cl, - ACTIONS(2113), 1, + ACTIONS(1998), 1, anon_sym_POUND, - STATE(1384), 1, + ACTIONS(3124), 1, + sym_self_referential_reader_macro, + STATE(1165), 1, + sym_sym_lit, + STATE(1176), 1, sym__bare_set_lit, - STATE(2050), 1, + STATE(2152), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2223), 1, - sym_sym_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(811), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(815), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(875), 2, + ACTIONS(925), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(907), 2, + ACTIONS(943), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(947), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2665), 2, + ACTIONS(949), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(3120), 2, sym__ws, sym_comment, - ACTIONS(2201), 3, + ACTIONS(3122), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(622), 3, + STATE(625), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1330), 3, + STATE(1175), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1335), 19, + STATE(1225), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -70358,7 +62287,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [77098] = 34, + [55080] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -70367,76 +62296,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(619), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(621), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(623), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(629), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(631), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(873), 1, - aux_sym_num_lit_token1, - ACTIONS(893), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(895), 1, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(897), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(899), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(901), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(903), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(905), 1, - anon_sym_cl, - ACTIONS(2113), 1, + ACTIONS(1442), 1, anon_sym_POUND, - STATE(1384), 1, + ACTIONS(3130), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, + sym_sym_lit, + STATE(1902), 1, sym__bare_set_lit, - STATE(2050), 1, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2223), 1, - sym_sym_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(811), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(815), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(875), 2, + ACTIONS(785), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(907), 2, + ACTIONS(797), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1353), 2, + ACTIONS(3126), 2, sym__ws, sym_comment, - ACTIONS(2203), 3, + ACTIONS(3128), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(659), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1336), 19, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2006), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -70456,85 +62387,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [77230] = 34, + [55215] = 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(619), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(621), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(623), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(629), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(631), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(873), 1, - aux_sym_num_lit_token1, - ACTIONS(893), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(895), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(897), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(899), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(901), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(903), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(905), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(2113), 1, - anon_sym_POUND, - STATE(1384), 1, + ACTIONS(3136), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(2050), 1, + STATE(1563), 1, + sym_sym_lit, + STATE(2153), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2223), 1, - sym_sym_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(811), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(815), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(875), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(907), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2667), 2, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(3132), 2, sym__ws, sym_comment, - ACTIONS(2217), 3, + ACTIONS(3134), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(623), 3, + STATE(594), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1330), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1337), 19, + STATE(516), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -70554,7 +62487,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [77362] = 34, + [55350] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -70563,76 +62496,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(619), 1, + ACTIONS(61), 1, + anon_sym_POUND, + ACTIONS(65), 1, + aux_sym_num_lit_token1, + ACTIONS(67), 1, anon_sym_COLON, - ACTIONS(621), 1, + ACTIONS(69), 1, anon_sym_COLON_COLON, - ACTIONS(623), 1, + ACTIONS(71), 1, anon_sym_DQUOTE, - ACTIONS(629), 1, + ACTIONS(73), 1, aux_sym_sym_lit_token1, - ACTIONS(631), 1, - anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(77), 1, anon_sym_POUND_QMARK, - ACTIONS(873), 1, - aux_sym_num_lit_token1, - ACTIONS(893), 1, + ACTIONS(79), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(895), 1, + ACTIONS(81), 1, anon_sym_POUND_SQUOTE, - ACTIONS(897), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(899), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(901), 1, + ACTIONS(87), 1, anon_sym_COMMA_AT, - ACTIONS(903), 1, + ACTIONS(89), 1, anon_sym_COMMA, - ACTIONS(905), 1, + ACTIONS(775), 1, + anon_sym_LPAREN, + ACTIONS(779), 1, anon_sym_cl, - ACTIONS(2113), 1, - anon_sym_POUND, - STATE(1384), 1, + ACTIONS(3140), 1, + sym_self_referential_reader_macro, + STATE(862), 1, + sym_sym_lit, + STATE(870), 1, sym__bare_set_lit, - STATE(2050), 1, + STATE(2156), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2223), 1, - sym_sym_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(811), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(815), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(875), 2, + ACTIONS(75), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(907), 2, + ACTIONS(93), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(97), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1353), 2, + ACTIONS(99), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2223), 3, + ACTIONS(3138), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1330), 3, + STATE(863), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1338), 19, + STATE(843), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -70652,7 +62587,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [77494] = 34, + [55485] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -70661,76 +62596,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(619), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(621), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(623), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(629), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(631), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(873), 1, - aux_sym_num_lit_token1, - ACTIONS(893), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(895), 1, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(897), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(899), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(901), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(903), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(905), 1, - anon_sym_cl, - ACTIONS(2113), 1, + ACTIONS(1442), 1, anon_sym_POUND, - STATE(1384), 1, + ACTIONS(3146), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, + sym_sym_lit, + STATE(1902), 1, sym__bare_set_lit, - STATE(2050), 1, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2223), 1, - sym_sym_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(811), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(815), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(875), 2, + ACTIONS(785), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(907), 2, + ACTIONS(797), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1353), 2, + ACTIONS(3142), 2, sym__ws, sym_comment, - ACTIONS(2257), 3, + ACTIONS(3144), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(665), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1340), 19, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2007), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -70750,7 +62687,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [77626] = 34, + [55620] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -70759,76 +62696,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(619), 1, + ACTIONS(907), 1, + aux_sym_num_lit_token1, + ACTIONS(909), 1, anon_sym_COLON, - ACTIONS(621), 1, + ACTIONS(911), 1, anon_sym_COLON_COLON, - ACTIONS(623), 1, + ACTIONS(913), 1, anon_sym_DQUOTE, - ACTIONS(629), 1, + ACTIONS(919), 1, aux_sym_sym_lit_token1, - ACTIONS(631), 1, + ACTIONS(921), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(927), 1, anon_sym_POUND_QMARK, - ACTIONS(873), 1, - aux_sym_num_lit_token1, - ACTIONS(893), 1, + ACTIONS(929), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(895), 1, + ACTIONS(931), 1, anon_sym_POUND_SQUOTE, - ACTIONS(897), 1, + ACTIONS(933), 1, anon_sym_SQUOTE, - ACTIONS(899), 1, + ACTIONS(935), 1, anon_sym_BQUOTE, - ACTIONS(901), 1, + ACTIONS(937), 1, anon_sym_COMMA_AT, - ACTIONS(903), 1, + ACTIONS(939), 1, anon_sym_COMMA, - ACTIONS(905), 1, + ACTIONS(941), 1, anon_sym_cl, - ACTIONS(2113), 1, + ACTIONS(1998), 1, anon_sym_POUND, - STATE(1384), 1, + ACTIONS(3152), 1, + sym_self_referential_reader_macro, + STATE(1165), 1, + sym_sym_lit, + STATE(1176), 1, sym__bare_set_lit, - STATE(2050), 1, + STATE(2152), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2223), 1, - sym_sym_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(811), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(815), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(875), 2, + ACTIONS(925), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(907), 2, + ACTIONS(943), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(947), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2669), 2, + ACTIONS(949), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(3148), 2, sym__ws, sym_comment, - ACTIONS(2309), 3, + ACTIONS(3150), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(625), 3, + STATE(640), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1330), 3, + STATE(1175), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1342), 19, + STATE(1230), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -70848,7 +62787,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [77758] = 34, + [55755] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -70857,76 +62796,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(619), 1, + ACTIONS(61), 1, + anon_sym_POUND, + ACTIONS(65), 1, + aux_sym_num_lit_token1, + ACTIONS(67), 1, anon_sym_COLON, - ACTIONS(621), 1, + ACTIONS(69), 1, anon_sym_COLON_COLON, - ACTIONS(623), 1, + ACTIONS(71), 1, anon_sym_DQUOTE, - ACTIONS(629), 1, + ACTIONS(73), 1, aux_sym_sym_lit_token1, - ACTIONS(631), 1, - anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(77), 1, anon_sym_POUND_QMARK, - ACTIONS(873), 1, - aux_sym_num_lit_token1, - ACTIONS(893), 1, + ACTIONS(79), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(895), 1, + ACTIONS(81), 1, anon_sym_POUND_SQUOTE, - ACTIONS(897), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(899), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(901), 1, + ACTIONS(87), 1, anon_sym_COMMA_AT, - ACTIONS(903), 1, + ACTIONS(89), 1, anon_sym_COMMA, - ACTIONS(905), 1, + ACTIONS(775), 1, + anon_sym_LPAREN, + ACTIONS(779), 1, anon_sym_cl, - ACTIONS(2113), 1, - anon_sym_POUND, - STATE(1384), 1, + ACTIONS(3156), 1, + sym_self_referential_reader_macro, + STATE(862), 1, + sym_sym_lit, + STATE(870), 1, sym__bare_set_lit, - STATE(2050), 1, + STATE(2156), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2223), 1, - sym_sym_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(811), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(815), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(875), 2, + ACTIONS(75), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(907), 2, + ACTIONS(93), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(97), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2671), 2, + ACTIONS(99), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2317), 3, + ACTIONS(3154), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(627), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1330), 3, + STATE(863), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1343), 19, + STATE(1564), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(840), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -70946,7 +62887,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [77890] = 34, + [55890] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -70955,76 +62896,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(619), 1, + ACTIONS(590), 1, + aux_sym_num_lit_token1, + ACTIONS(857), 1, anon_sym_COLON, - ACTIONS(621), 1, + ACTIONS(859), 1, anon_sym_COLON_COLON, - ACTIONS(623), 1, + ACTIONS(861), 1, anon_sym_DQUOTE, - ACTIONS(629), 1, + ACTIONS(867), 1, aux_sym_sym_lit_token1, - ACTIONS(631), 1, + ACTIONS(869), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(875), 1, anon_sym_POUND_QMARK, - ACTIONS(873), 1, - aux_sym_num_lit_token1, - ACTIONS(893), 1, + ACTIONS(955), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(895), 1, + ACTIONS(957), 1, anon_sym_POUND_SQUOTE, - ACTIONS(897), 1, + ACTIONS(959), 1, anon_sym_SQUOTE, - ACTIONS(899), 1, + ACTIONS(961), 1, anon_sym_BQUOTE, - ACTIONS(901), 1, + ACTIONS(963), 1, anon_sym_COMMA_AT, - ACTIONS(903), 1, + ACTIONS(965), 1, anon_sym_COMMA, - ACTIONS(905), 1, + ACTIONS(967), 1, anon_sym_cl, - ACTIONS(2113), 1, + ACTIONS(1774), 1, + sym_self_referential_reader_macro, + ACTIONS(3158), 1, anon_sym_POUND, - STATE(1384), 1, - sym__bare_set_lit, - STATE(2050), 1, + STATE(2133), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2223), 1, - sym_sym_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(811), 2, + STATE(2313), 1, + sym__bare_set_lit, + STATE(2351), 1, + sym_sym_lit, + ACTIONS(608), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(626), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(815), 2, + ACTIONS(632), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(875), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(907), 2, + ACTIONS(969), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1353), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2323), 3, + ACTIONS(1772), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1344), 19, + STATE(2315), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2259), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -71044,85 +62987,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [78022] = 34, + [56025] = 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(907), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(909), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(911), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(913), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(919), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(921), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(927), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(929), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(931), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(933), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(935), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(937), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(939), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(941), 1, anon_sym_cl, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, + ACTIONS(1998), 1, + anon_sym_POUND, + ACTIONS(3164), 1, + sym_self_referential_reader_macro, + STATE(1165), 1, sym_sym_lit, - STATE(2052), 1, + STATE(1176), 1, + sym__bare_set_lit, + STATE(2152), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(925), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(943), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(53), 2, + ACTIONS(947), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(55), 2, + ACTIONS(949), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(3160), 2, sym__ws, sym_comment, - ACTIONS(2673), 3, + ACTIONS(3162), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(641), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1654), 19, + STATE(1175), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1231), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -71142,7 +63087,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [78154] = 34, + [56160] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -71151,76 +63096,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(619), 1, + ACTIONS(190), 1, + anon_sym_POUND, + ACTIONS(194), 1, + aux_sym_num_lit_token1, + ACTIONS(196), 1, anon_sym_COLON, - ACTIONS(621), 1, + ACTIONS(198), 1, anon_sym_COLON_COLON, - ACTIONS(623), 1, + ACTIONS(200), 1, anon_sym_DQUOTE, - ACTIONS(629), 1, + ACTIONS(202), 1, aux_sym_sym_lit_token1, - ACTIONS(631), 1, - anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(217), 1, anon_sym_POUND_QMARK, - ACTIONS(873), 1, - aux_sym_num_lit_token1, - ACTIONS(893), 1, + ACTIONS(219), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(895), 1, + ACTIONS(221), 1, anon_sym_POUND_SQUOTE, - ACTIONS(897), 1, + ACTIONS(223), 1, anon_sym_SQUOTE, - ACTIONS(899), 1, + ACTIONS(225), 1, anon_sym_BQUOTE, - ACTIONS(901), 1, + ACTIONS(227), 1, anon_sym_COMMA_AT, - ACTIONS(903), 1, + ACTIONS(229), 1, anon_sym_COMMA, - ACTIONS(905), 1, + ACTIONS(576), 1, + anon_sym_LPAREN, + ACTIONS(580), 1, anon_sym_cl, - ACTIONS(2113), 1, - anon_sym_POUND, - STATE(1384), 1, + ACTIONS(3170), 1, + sym_self_referential_reader_macro, + STATE(1077), 1, sym__bare_set_lit, - STATE(2050), 1, + STATE(1079), 1, + sym_sym_lit, + STATE(2137), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2223), 1, - sym_sym_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(811), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(815), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(875), 2, + ACTIONS(215), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(907), 2, + ACTIONS(236), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(240), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1353), 2, + ACTIONS(242), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(3166), 2, sym__ws, sym_comment, - ACTIONS(2335), 3, + ACTIONS(3168), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(550), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1345), 19, + STATE(1078), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1005), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -71240,7 +63187,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [78286] = 34, + [56295] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -71249,76 +63196,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(777), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(809), 1, + ACTIONS(556), 1, anon_sym_cl, - ACTIONS(873), 1, + ACTIONS(783), 1, aux_sym_num_lit_token1, - ACTIONS(877), 1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(879), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(881), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(883), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(885), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(1015), 1, + ACTIONS(1442), 1, anon_sym_POUND, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, + ACTIONS(3174), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(2048), 1, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(811), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(815), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(875), 2, + ACTIONS(785), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(887), 2, + ACTIONS(797), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1353), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2491), 3, + ACTIONS(3172), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1359), 19, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2008), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -71338,85 +63287,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [78418] = 34, + [56430] = 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(524), 1, + anon_sym_COLON, + ACTIONS(526), 1, + anon_sym_COLON_COLON, + ACTIONS(528), 1, + anon_sym_DQUOTE, + ACTIONS(534), 1, + aux_sym_sym_lit_token1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, + ACTIONS(1442), 1, + anon_sym_POUND, + ACTIONS(3180), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(2052), 1, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(3176), 2, sym__ws, sym_comment, - ACTIONS(2675), 3, + ACTIONS(3178), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(674), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1604), 19, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2009), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -71436,7 +63387,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [78550] = 34, + [56565] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -71445,76 +63396,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(619), 1, + ACTIONS(190), 1, + anon_sym_POUND, + ACTIONS(194), 1, + aux_sym_num_lit_token1, + ACTIONS(196), 1, anon_sym_COLON, - ACTIONS(621), 1, + ACTIONS(198), 1, anon_sym_COLON_COLON, - ACTIONS(623), 1, + ACTIONS(200), 1, anon_sym_DQUOTE, - ACTIONS(629), 1, + ACTIONS(202), 1, aux_sym_sym_lit_token1, - ACTIONS(631), 1, - anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(217), 1, anon_sym_POUND_QMARK, - ACTIONS(873), 1, - aux_sym_num_lit_token1, - ACTIONS(893), 1, + ACTIONS(219), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(895), 1, + ACTIONS(221), 1, anon_sym_POUND_SQUOTE, - ACTIONS(897), 1, + ACTIONS(223), 1, anon_sym_SQUOTE, - ACTIONS(899), 1, + ACTIONS(225), 1, anon_sym_BQUOTE, - ACTIONS(901), 1, + ACTIONS(227), 1, anon_sym_COMMA_AT, - ACTIONS(903), 1, + ACTIONS(229), 1, anon_sym_COMMA, - ACTIONS(905), 1, + ACTIONS(576), 1, + anon_sym_LPAREN, + ACTIONS(580), 1, anon_sym_cl, - ACTIONS(2113), 1, - anon_sym_POUND, - STATE(1384), 1, + ACTIONS(3186), 1, + sym_self_referential_reader_macro, + STATE(1077), 1, sym__bare_set_lit, - STATE(2050), 1, + STATE(1079), 1, + sym_sym_lit, + STATE(2137), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2223), 1, - sym_sym_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(811), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(815), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(875), 2, + ACTIONS(215), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(907), 2, + ACTIONS(236), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(240), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1353), 2, + ACTIONS(242), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(3182), 2, sym__ws, sym_comment, - ACTIONS(2359), 3, + ACTIONS(3184), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(555), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1346), 19, + STATE(1078), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1006), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -71534,7 +63487,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [78682] = 34, + [56700] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -71543,76 +63496,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(619), 1, + ACTIONS(907), 1, + aux_sym_num_lit_token1, + ACTIONS(909), 1, anon_sym_COLON, - ACTIONS(621), 1, + ACTIONS(911), 1, anon_sym_COLON_COLON, - ACTIONS(623), 1, + ACTIONS(913), 1, anon_sym_DQUOTE, - ACTIONS(629), 1, + ACTIONS(919), 1, aux_sym_sym_lit_token1, - ACTIONS(631), 1, + ACTIONS(921), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(927), 1, anon_sym_POUND_QMARK, - ACTIONS(873), 1, - aux_sym_num_lit_token1, - ACTIONS(893), 1, + ACTIONS(929), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(895), 1, + ACTIONS(931), 1, anon_sym_POUND_SQUOTE, - ACTIONS(897), 1, + ACTIONS(933), 1, anon_sym_SQUOTE, - ACTIONS(899), 1, + ACTIONS(935), 1, anon_sym_BQUOTE, - ACTIONS(901), 1, + ACTIONS(937), 1, anon_sym_COMMA_AT, - ACTIONS(903), 1, + ACTIONS(939), 1, anon_sym_COMMA, - ACTIONS(905), 1, + ACTIONS(941), 1, anon_sym_cl, - ACTIONS(2113), 1, + ACTIONS(1998), 1, anon_sym_POUND, - STATE(1384), 1, + ACTIONS(3190), 1, + sym_self_referential_reader_macro, + STATE(1165), 1, + sym_sym_lit, + STATE(1176), 1, sym__bare_set_lit, - STATE(2050), 1, + STATE(2152), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2223), 1, - sym_sym_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(811), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(815), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(875), 2, + ACTIONS(925), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(907), 2, + ACTIONS(943), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(947), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2677), 2, + ACTIONS(949), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2381), 3, + ACTIONS(3188), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(628), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1330), 3, + STATE(1175), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1348), 19, + STATE(1564), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1206), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -71632,7 +63587,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [78814] = 34, + [56835] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -71641,76 +63596,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(619), 1, + ACTIONS(190), 1, + anon_sym_POUND, + ACTIONS(194), 1, + aux_sym_num_lit_token1, + ACTIONS(196), 1, anon_sym_COLON, - ACTIONS(621), 1, + ACTIONS(198), 1, anon_sym_COLON_COLON, - ACTIONS(623), 1, + ACTIONS(200), 1, anon_sym_DQUOTE, - ACTIONS(629), 1, + ACTIONS(202), 1, aux_sym_sym_lit_token1, - ACTIONS(631), 1, - anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(217), 1, anon_sym_POUND_QMARK, - ACTIONS(873), 1, - aux_sym_num_lit_token1, - ACTIONS(893), 1, + ACTIONS(219), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(895), 1, + ACTIONS(221), 1, anon_sym_POUND_SQUOTE, - ACTIONS(897), 1, + ACTIONS(223), 1, anon_sym_SQUOTE, - ACTIONS(899), 1, + ACTIONS(225), 1, anon_sym_BQUOTE, - ACTIONS(901), 1, + ACTIONS(227), 1, anon_sym_COMMA_AT, - ACTIONS(903), 1, + ACTIONS(229), 1, anon_sym_COMMA, - ACTIONS(905), 1, + ACTIONS(576), 1, + anon_sym_LPAREN, + ACTIONS(580), 1, anon_sym_cl, - ACTIONS(2113), 1, - anon_sym_POUND, - STATE(1384), 1, + ACTIONS(3194), 1, + sym_self_referential_reader_macro, + STATE(1077), 1, sym__bare_set_lit, - STATE(2050), 1, + STATE(1079), 1, + sym_sym_lit, + STATE(2137), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2223), 1, - sym_sym_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(811), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(815), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(875), 2, + ACTIONS(215), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(907), 2, + ACTIONS(236), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(240), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1353), 2, + ACTIONS(242), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2383), 3, + ACTIONS(3192), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1330), 3, + STATE(1078), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1349), 19, + STATE(1007), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -71730,7 +63687,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [78946] = 34, + [56970] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -71739,76 +63696,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, - aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(809), 1, - anon_sym_cl, - ACTIONS(1545), 1, + ACTIONS(1442), 1, anon_sym_POUND, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, + ACTIONS(3198), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(2037), 1, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2679), 3, + ACTIONS(3196), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1924), 19, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2010), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -71828,7 +63787,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [79078] = 34, + [57105] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -71837,76 +63796,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(619), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(621), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(623), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(629), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(631), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(873), 1, - aux_sym_num_lit_token1, - ACTIONS(893), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(895), 1, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(897), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(899), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(901), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(903), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(905), 1, - anon_sym_cl, - ACTIONS(2113), 1, + ACTIONS(1442), 1, anon_sym_POUND, - STATE(1384), 1, + ACTIONS(3204), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, + sym_sym_lit, + STATE(1902), 1, sym__bare_set_lit, - STATE(2050), 1, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2223), 1, - sym_sym_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(811), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(815), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(875), 2, + ACTIONS(785), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(907), 2, + ACTIONS(797), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2681), 2, + ACTIONS(3200), 2, sym__ws, sym_comment, - ACTIONS(2459), 3, + ACTIONS(3202), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(631), 3, + STATE(678), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1330), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1352), 19, + STATE(2011), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -71926,7 +63887,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [79210] = 34, + [57240] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -71935,76 +63896,178 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(619), 1, + ACTIONS(190), 1, + anon_sym_POUND, + ACTIONS(194), 1, + aux_sym_num_lit_token1, + ACTIONS(196), 1, anon_sym_COLON, - ACTIONS(621), 1, + ACTIONS(198), 1, anon_sym_COLON_COLON, - ACTIONS(623), 1, + ACTIONS(200), 1, anon_sym_DQUOTE, - ACTIONS(629), 1, + ACTIONS(202), 1, aux_sym_sym_lit_token1, - ACTIONS(631), 1, - anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(217), 1, anon_sym_POUND_QMARK, - ACTIONS(873), 1, - aux_sym_num_lit_token1, - ACTIONS(893), 1, + ACTIONS(219), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(895), 1, + ACTIONS(221), 1, anon_sym_POUND_SQUOTE, - ACTIONS(897), 1, + ACTIONS(223), 1, anon_sym_SQUOTE, - ACTIONS(899), 1, + ACTIONS(225), 1, anon_sym_BQUOTE, - ACTIONS(901), 1, + ACTIONS(227), 1, anon_sym_COMMA_AT, - ACTIONS(903), 1, + ACTIONS(229), 1, anon_sym_COMMA, - ACTIONS(905), 1, + ACTIONS(576), 1, + anon_sym_LPAREN, + ACTIONS(580), 1, anon_sym_cl, - ACTIONS(2113), 1, - anon_sym_POUND, - STATE(1384), 1, + ACTIONS(3208), 1, + sym_self_referential_reader_macro, + STATE(1077), 1, sym__bare_set_lit, - STATE(2050), 1, + STATE(1079), 1, + sym_sym_lit, + STATE(2137), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2223), 1, - sym_sym_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(811), 2, + ACTIONS(215), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(236), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(815), 2, + ACTIONS(240), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(242), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(875), 2, + ACTIONS(1440), 2, + sym__ws, + sym_comment, + ACTIONS(3206), 3, + anon_sym_DOT, + sym_nil_lit, + sym_fancy_literal, + STATE(1078), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1564), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1009), 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, + [57375] = 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(590), 1, + aux_sym_num_lit_token1, + ACTIONS(857), 1, + anon_sym_COLON, + ACTIONS(859), 1, + anon_sym_COLON_COLON, + ACTIONS(861), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, + aux_sym_sym_lit_token1, + ACTIONS(869), 1, + anon_sym_LPAREN, + ACTIONS(875), 1, + anon_sym_POUND_QMARK, + ACTIONS(955), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(957), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(959), 1, + anon_sym_SQUOTE, + ACTIONS(961), 1, + anon_sym_BQUOTE, + ACTIONS(963), 1, + anon_sym_COMMA_AT, + ACTIONS(965), 1, + anon_sym_COMMA, + ACTIONS(967), 1, + anon_sym_cl, + ACTIONS(1664), 1, + sym_self_referential_reader_macro, + ACTIONS(3158), 1, + anon_sym_POUND, + STATE(2133), 1, + aux_sym_list_lit_repeat1, + STATE(2202), 1, + sym_old_meta_lit, + STATE(2206), 1, + sym_meta_lit, + STATE(2237), 1, + sym__metadata_lit, + STATE(2313), 1, + sym__bare_set_lit, + STATE(2351), 1, + sym_sym_lit, + ACTIONS(608), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(907), 2, + ACTIONS(626), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(632), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(969), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2683), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2463), 3, + ACTIONS(1662), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(633), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1330), 3, + STATE(2315), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1353), 19, + STATE(2258), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -72024,7 +64087,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [79342] = 34, + [57510] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -72033,76 +64096,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(619), 1, + ACTIONS(190), 1, + anon_sym_POUND, + ACTIONS(194), 1, + aux_sym_num_lit_token1, + ACTIONS(196), 1, anon_sym_COLON, - ACTIONS(621), 1, + ACTIONS(198), 1, anon_sym_COLON_COLON, - ACTIONS(623), 1, + ACTIONS(200), 1, anon_sym_DQUOTE, - ACTIONS(629), 1, + ACTIONS(202), 1, aux_sym_sym_lit_token1, - ACTIONS(631), 1, - anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(217), 1, anon_sym_POUND_QMARK, - ACTIONS(873), 1, - aux_sym_num_lit_token1, - ACTIONS(893), 1, + ACTIONS(219), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(895), 1, + ACTIONS(221), 1, anon_sym_POUND_SQUOTE, - ACTIONS(897), 1, + ACTIONS(223), 1, anon_sym_SQUOTE, - ACTIONS(899), 1, + ACTIONS(225), 1, anon_sym_BQUOTE, - ACTIONS(901), 1, + ACTIONS(227), 1, anon_sym_COMMA_AT, - ACTIONS(903), 1, + ACTIONS(229), 1, anon_sym_COMMA, - ACTIONS(905), 1, + ACTIONS(576), 1, + anon_sym_LPAREN, + ACTIONS(580), 1, anon_sym_cl, - ACTIONS(2113), 1, - anon_sym_POUND, - STATE(1384), 1, + ACTIONS(3212), 1, + sym_self_referential_reader_macro, + STATE(1077), 1, sym__bare_set_lit, - STATE(2050), 1, + STATE(1079), 1, + sym_sym_lit, + STATE(2137), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2223), 1, - sym_sym_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(811), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(815), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(875), 2, + ACTIONS(215), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(907), 2, + ACTIONS(236), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(240), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2685), 2, + ACTIONS(242), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2467), 3, + ACTIONS(3210), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(636), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1330), 3, + STATE(1078), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1354), 19, + STATE(1564), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1010), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -72122,7 +64187,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [79474] = 34, + [57645] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -72131,76 +64196,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(619), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(621), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(623), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(629), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(631), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(873), 1, - aux_sym_num_lit_token1, - ACTIONS(893), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(895), 1, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(897), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(899), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(901), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(903), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(905), 1, - anon_sym_cl, - ACTIONS(2113), 1, + ACTIONS(1442), 1, anon_sym_POUND, - STATE(1384), 1, + ACTIONS(3216), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, + sym_sym_lit, + STATE(1902), 1, sym__bare_set_lit, - STATE(2050), 1, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2223), 1, - sym_sym_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(811), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(815), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(875), 2, + ACTIONS(785), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(907), 2, + ACTIONS(797), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2687), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2475), 3, + ACTIONS(3214), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(638), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1330), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1356), 19, + STATE(2012), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -72220,7 +64287,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [79606] = 34, + [57780] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -72259,17 +64326,19 @@ static uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - STATE(1608), 1, + ACTIONS(3220), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(1610), 1, + STATE(1563), 1, sym_sym_lit, - STATE(2052), 1, + STATE(2153), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -72277,28 +64346,28 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(53), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(55), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2689), 3, + ACTIONS(3218), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1609), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(624), 19, + STATE(537), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -72318,85 +64387,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [79738] = 34, + [57915] = 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(524), 1, + anon_sym_COLON, + ACTIONS(526), 1, + anon_sym_COLON_COLON, + ACTIONS(528), 1, + anon_sym_DQUOTE, + ACTIONS(534), 1, + aux_sym_sym_lit_token1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, + ACTIONS(1442), 1, + anon_sym_POUND, + ACTIONS(3226), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(2052), 1, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(3222), 2, sym__ws, sym_comment, - ACTIONS(2691), 3, + ACTIONS(3224), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(683), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(626), 19, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2013), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -72416,7 +64487,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [79870] = 34, + [58050] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -72425,76 +64496,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(569), 1, - aux_sym_num_lit_token1, - ACTIONS(571), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(573), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(575), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(581), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(583), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(589), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(591), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(593), 1, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(595), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(597), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(599), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(601), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(603), 1, - anon_sym_cl, - ACTIONS(1387), 1, + ACTIONS(1442), 1, anon_sym_POUND, - STATE(1163), 1, + ACTIONS(3232), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(1186), 1, + STATE(1902), 1, sym__bare_set_lit, - STATE(2027), 1, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(587), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(605), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(607), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(609), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(3228), 2, sym__ws, sym_comment, - ACTIONS(2693), 3, + ACTIONS(3230), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1183), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(685), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1169), 19, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2014), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -72514,7 +64587,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [80002] = 34, + [58185] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -72523,76 +64596,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(619), 1, + ACTIONS(190), 1, + anon_sym_POUND, + ACTIONS(194), 1, + aux_sym_num_lit_token1, + ACTIONS(196), 1, anon_sym_COLON, - ACTIONS(621), 1, + ACTIONS(198), 1, anon_sym_COLON_COLON, - ACTIONS(623), 1, + ACTIONS(200), 1, anon_sym_DQUOTE, - ACTIONS(629), 1, + ACTIONS(202), 1, aux_sym_sym_lit_token1, - ACTIONS(631), 1, - anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(217), 1, anon_sym_POUND_QMARK, - ACTIONS(873), 1, - aux_sym_num_lit_token1, - ACTIONS(893), 1, + ACTIONS(219), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(895), 1, + ACTIONS(221), 1, anon_sym_POUND_SQUOTE, - ACTIONS(897), 1, + ACTIONS(223), 1, anon_sym_SQUOTE, - ACTIONS(899), 1, + ACTIONS(225), 1, anon_sym_BQUOTE, - ACTIONS(901), 1, + ACTIONS(227), 1, anon_sym_COMMA_AT, - ACTIONS(903), 1, + ACTIONS(229), 1, anon_sym_COMMA, - ACTIONS(905), 1, + ACTIONS(576), 1, + anon_sym_LPAREN, + ACTIONS(580), 1, anon_sym_cl, - ACTIONS(2113), 1, - anon_sym_POUND, - STATE(1384), 1, + ACTIONS(3238), 1, + sym_self_referential_reader_macro, + STATE(1077), 1, sym__bare_set_lit, - STATE(2050), 1, + STATE(1079), 1, + sym_sym_lit, + STATE(2137), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2223), 1, - sym_sym_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(811), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(815), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(875), 2, + ACTIONS(215), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(907), 2, + ACTIONS(236), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(240), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1353), 2, + ACTIONS(242), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(3234), 2, sym__ws, sym_comment, - ACTIONS(2483), 3, + ACTIONS(3236), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(561), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1358), 19, + STATE(1078), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1016), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -72612,85 +64687,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [80134] = 34, + [58320] = 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(619), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(621), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(623), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(629), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(631), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(873), 1, - aux_sym_num_lit_token1, - ACTIONS(893), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(895), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(897), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(899), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(901), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(903), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(905), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(2113), 1, - anon_sym_POUND, - STATE(1384), 1, + ACTIONS(3244), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(2050), 1, + STATE(1563), 1, + sym_sym_lit, + STATE(2153), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2223), 1, - sym_sym_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(811), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(815), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(875), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(907), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1353), 2, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(3240), 2, sym__ws, sym_comment, - ACTIONS(2491), 3, + ACTIONS(3242), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(570), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1359), 19, + STATE(1562), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(177), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -72710,7 +64787,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [80266] = 34, + [58455] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -72719,76 +64796,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(619), 1, + ACTIONS(190), 1, + anon_sym_POUND, + ACTIONS(194), 1, + aux_sym_num_lit_token1, + ACTIONS(196), 1, anon_sym_COLON, - ACTIONS(621), 1, + ACTIONS(198), 1, anon_sym_COLON_COLON, - ACTIONS(623), 1, + ACTIONS(200), 1, anon_sym_DQUOTE, - ACTIONS(629), 1, + ACTIONS(202), 1, aux_sym_sym_lit_token1, - ACTIONS(631), 1, - anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(217), 1, anon_sym_POUND_QMARK, - ACTIONS(873), 1, - aux_sym_num_lit_token1, - ACTIONS(893), 1, + ACTIONS(219), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(895), 1, + ACTIONS(221), 1, anon_sym_POUND_SQUOTE, - ACTIONS(897), 1, + ACTIONS(223), 1, anon_sym_SQUOTE, - ACTIONS(899), 1, + ACTIONS(225), 1, anon_sym_BQUOTE, - ACTIONS(901), 1, + ACTIONS(227), 1, anon_sym_COMMA_AT, - ACTIONS(903), 1, + ACTIONS(229), 1, anon_sym_COMMA, - ACTIONS(905), 1, + ACTIONS(576), 1, + anon_sym_LPAREN, + ACTIONS(580), 1, anon_sym_cl, - ACTIONS(2113), 1, - anon_sym_POUND, - STATE(1384), 1, + ACTIONS(3248), 1, + sym_self_referential_reader_macro, + STATE(1077), 1, sym__bare_set_lit, - STATE(2050), 1, + STATE(1079), 1, + sym_sym_lit, + STATE(2137), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2223), 1, - sym_sym_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(811), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(815), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(875), 2, + ACTIONS(215), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(907), 2, + ACTIONS(236), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(240), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1353), 2, + ACTIONS(242), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2495), 3, + ACTIONS(3246), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1330), 3, + STATE(1078), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1360), 19, + STATE(1017), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -72808,7 +64887,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [80398] = 34, + [58590] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -72817,76 +64896,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, - aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(809), 1, - anon_sym_cl, - ACTIONS(1545), 1, + ACTIONS(1442), 1, anon_sym_POUND, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, + ACTIONS(3252), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(2037), 1, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2695), 2, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2697), 3, + ACTIONS(3250), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(718), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1330), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1884), 19, + STATE(2015), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -72906,85 +64987,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [80530] = 34, + [58725] = 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(619), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(621), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(623), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(629), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(631), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(873), 1, - aux_sym_num_lit_token1, - ACTIONS(893), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(895), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(897), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(899), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(901), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(903), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(905), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(2113), 1, - anon_sym_POUND, - STATE(1384), 1, + ACTIONS(3258), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(2050), 1, + STATE(1563), 1, + sym_sym_lit, + STATE(2153), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2223), 1, - sym_sym_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(811), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(815), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(875), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(907), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1353), 2, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(3254), 2, sym__ws, sym_comment, - ACTIONS(2505), 3, + ACTIONS(3256), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(572), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1361), 19, + STATE(1562), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(178), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -73004,7 +65087,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [80662] = 34, + [58860] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -73013,76 +65096,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(777), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(809), 1, + ACTIONS(556), 1, anon_sym_cl, - ACTIONS(873), 1, + ACTIONS(783), 1, aux_sym_num_lit_token1, - ACTIONS(877), 1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(879), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(881), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(883), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(885), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(1015), 1, + ACTIONS(1442), 1, anon_sym_POUND, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, + ACTIONS(3264), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(2048), 1, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(811), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(815), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(875), 2, + ACTIONS(785), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(887), 2, + ACTIONS(797), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1353), 2, + ACTIONS(3260), 2, sym__ws, sym_comment, - ACTIONS(2483), 3, + ACTIONS(3262), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(690), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1358), 19, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2016), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -73102,85 +65187,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [80794] = 34, + [58995] = 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(619), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(621), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(623), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(629), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(631), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(873), 1, - aux_sym_num_lit_token1, - ACTIONS(893), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(895), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(897), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(899), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(901), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(903), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(905), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(2113), 1, - anon_sym_POUND, - STATE(1384), 1, + ACTIONS(3268), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(2050), 1, + STATE(1563), 1, + sym_sym_lit, + STATE(2153), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2223), 1, - sym_sym_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(811), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(815), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(875), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(907), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1353), 2, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2511), 3, + ACTIONS(3266), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1330), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1362), 19, + STATE(182), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -73200,7 +65287,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [80926] = 34, + [59130] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -73209,76 +65296,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, - aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(592), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(594), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(596), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(602), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(624), 1, + anon_sym_cl, + ACTIONS(729), 1, + aux_sym_num_lit_token1, + ACTIONS(733), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(735), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(737), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(739), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(741), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(743), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(745), 1, anon_sym_COMMA, - ACTIONS(809), 1, - anon_sym_cl, - ACTIONS(1545), 1, + ACTIONS(1554), 1, anon_sym_POUND, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, - sym_sym_lit, - STATE(2037), 1, + ACTIONS(2122), 1, + sym_self_referential_reader_macro, + STATE(2146), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(811), 2, + STATE(2313), 1, + sym__bare_set_lit, + STATE(2401), 1, + sym_sym_lit, + ACTIONS(626), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(632), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(731), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(747), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2699), 3, + ACTIONS(2120), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1883), 19, + STATE(2315), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2256), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -73298,7 +65387,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [81058] = 34, + [59265] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -73307,76 +65396,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(777), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(809), 1, + ACTIONS(556), 1, anon_sym_cl, - ACTIONS(873), 1, + ACTIONS(783), 1, aux_sym_num_lit_token1, - ACTIONS(877), 1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(879), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(881), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(883), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(885), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(1015), 1, + ACTIONS(1442), 1, anon_sym_POUND, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, + ACTIONS(3272), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(2048), 1, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(811), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(815), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(875), 2, + ACTIONS(785), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(887), 2, + ACTIONS(797), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2701), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2475), 3, + ACTIONS(3270), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(725), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1330), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1356), 19, + STATE(2023), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -73396,85 +65487,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [81190] = 34, + [59400] = 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(775), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(809), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(1545), 1, - anon_sym_POUND, - STATE(1384), 1, + ACTIONS(3278), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(1817), 1, + STATE(1563), 1, sym_sym_lit, - STATE(2037), 1, + STATE(2153), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2703), 2, + ACTIONS(3274), 2, sym__ws, sym_comment, - ACTIONS(2705), 3, + ACTIONS(3276), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(723), 3, + STATE(634), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1330), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1897), 19, + STATE(548), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -73494,7 +65587,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [81322] = 34, + [59535] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -73503,76 +65596,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(777), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(809), 1, + ACTIONS(556), 1, anon_sym_cl, - ACTIONS(873), 1, + ACTIONS(783), 1, aux_sym_num_lit_token1, - ACTIONS(877), 1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(879), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(881), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(883), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(885), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(1015), 1, + ACTIONS(1442), 1, anon_sym_POUND, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, + ACTIONS(3284), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(2048), 1, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(811), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(815), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(875), 2, + ACTIONS(785), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(887), 2, + ACTIONS(797), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2707), 2, + ACTIONS(3280), 2, sym__ws, sym_comment, - ACTIONS(2467), 3, + ACTIONS(3282), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(733), 3, + STATE(695), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1330), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1354), 19, + STATE(2025), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -73592,7 +65687,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [81454] = 34, + [59670] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -73601,76 +65696,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, + ACTIONS(61), 1, + anon_sym_POUND, + ACTIONS(65), 1, aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(67), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(69), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(71), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(73), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(77), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(79), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(81), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(87), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(89), 1, anon_sym_COMMA, - ACTIONS(809), 1, + ACTIONS(775), 1, + anon_sym_LPAREN, + ACTIONS(779), 1, anon_sym_cl, - ACTIONS(1545), 1, - anon_sym_POUND, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, + ACTIONS(3288), 1, + sym_self_referential_reader_macro, + STATE(862), 1, sym_sym_lit, - STATE(2037), 1, + STATE(870), 1, + sym__bare_set_lit, + STATE(2156), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, + ACTIONS(75), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(93), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, + ACTIONS(97), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(99), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(1879), 3, + ACTIONS(3286), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1330), 3, + STATE(863), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1841), 19, + STATE(839), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -73690,7 +65787,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [81586] = 34, + [59805] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -73699,76 +65796,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, - aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(592), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(594), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(596), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(602), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(624), 1, + anon_sym_cl, + ACTIONS(729), 1, + aux_sym_num_lit_token1, + ACTIONS(733), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(735), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(737), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(739), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(741), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(743), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(745), 1, anon_sym_COMMA, - ACTIONS(809), 1, - anon_sym_cl, - ACTIONS(1545), 1, + ACTIONS(1554), 1, anon_sym_POUND, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, - sym_sym_lit, - STATE(2037), 1, + ACTIONS(2118), 1, + sym_self_referential_reader_macro, + STATE(2146), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(811), 2, + STATE(2313), 1, + sym__bare_set_lit, + STATE(2401), 1, + sym_sym_lit, + ACTIONS(626), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(632), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(731), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(747), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(3290), 2, sym__ws, sym_comment, - ACTIONS(2709), 3, + ACTIONS(2116), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(240), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1881), 19, + STATE(2315), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2255), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -73788,7 +65887,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [81718] = 34, + [59940] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -73797,76 +65896,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(619), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(621), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(623), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(629), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(631), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(873), 1, - aux_sym_num_lit_token1, - ACTIONS(893), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(895), 1, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(897), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(899), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(901), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(903), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(905), 1, - anon_sym_cl, - ACTIONS(2113), 1, + ACTIONS(1442), 1, anon_sym_POUND, - STATE(1384), 1, + ACTIONS(3294), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, + sym_sym_lit, + STATE(1902), 1, sym__bare_set_lit, - STATE(2050), 1, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2223), 1, - sym_sym_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(811), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(815), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(875), 2, + ACTIONS(785), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(907), 2, + ACTIONS(797), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2711), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2481), 3, + ACTIONS(3292), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(647), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1330), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1371), 19, + STATE(2026), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -73886,7 +65987,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [81850] = 34, + [60075] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -73895,76 +65996,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, - aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(809), 1, - anon_sym_cl, - ACTIONS(1545), 1, + ACTIONS(1442), 1, anon_sym_POUND, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, + ACTIONS(3300), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(2037), 1, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2713), 2, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(3296), 2, sym__ws, sym_comment, - ACTIONS(2715), 3, + ACTIONS(3298), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(728), 3, + STATE(700), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1330), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1880), 19, + STATE(2027), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -73984,7 +66087,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [81982] = 34, + [60210] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -73993,76 +66096,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(619), 1, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(592), 1, anon_sym_COLON, - ACTIONS(621), 1, + ACTIONS(594), 1, anon_sym_COLON_COLON, - ACTIONS(623), 1, + ACTIONS(596), 1, anon_sym_DQUOTE, - ACTIONS(629), 1, + ACTIONS(602), 1, aux_sym_sym_lit_token1, - ACTIONS(631), 1, - anon_sym_LPAREN, - ACTIONS(637), 1, - anon_sym_POUND_QMARK, - ACTIONS(873), 1, + ACTIONS(624), 1, + anon_sym_cl, + ACTIONS(729), 1, aux_sym_num_lit_token1, - ACTIONS(893), 1, + ACTIONS(733), 1, + anon_sym_POUND_QMARK, + ACTIONS(735), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(895), 1, + ACTIONS(737), 1, anon_sym_POUND_SQUOTE, - ACTIONS(897), 1, + ACTIONS(739), 1, anon_sym_SQUOTE, - ACTIONS(899), 1, + ACTIONS(741), 1, anon_sym_BQUOTE, - ACTIONS(901), 1, + ACTIONS(743), 1, anon_sym_COMMA_AT, - ACTIONS(903), 1, + ACTIONS(745), 1, anon_sym_COMMA, - ACTIONS(905), 1, - anon_sym_cl, - ACTIONS(2113), 1, + ACTIONS(1554), 1, anon_sym_POUND, - STATE(1384), 1, - sym__bare_set_lit, - STATE(2050), 1, + ACTIONS(2094), 1, + sym_self_referential_reader_macro, + STATE(2146), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2223), 1, - sym_sym_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(811), 2, + STATE(2313), 1, + sym__bare_set_lit, + STATE(2401), 1, + sym_sym_lit, + ACTIONS(626), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(815), 2, + ACTIONS(632), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(875), 2, + ACTIONS(731), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(907), 2, + ACTIONS(747), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2717), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2455), 3, + ACTIONS(2092), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(648), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1330), 3, + STATE(2315), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1372), 19, + STATE(2252), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -74082,7 +66187,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [82114] = 34, + [60345] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -74091,76 +66196,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(619), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(621), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(623), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(629), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(631), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(873), 1, - aux_sym_num_lit_token1, - ACTIONS(893), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(895), 1, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(897), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(899), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(901), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(903), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(905), 1, - anon_sym_cl, - ACTIONS(2113), 1, + ACTIONS(1442), 1, anon_sym_POUND, - STATE(1384), 1, + ACTIONS(3306), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, + sym_sym_lit, + STATE(1902), 1, sym__bare_set_lit, - STATE(2050), 1, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2223), 1, - sym_sym_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(811), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(815), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(875), 2, + ACTIONS(785), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(907), 2, + ACTIONS(797), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2719), 2, + ACTIONS(3302), 2, sym__ws, sym_comment, - ACTIONS(2239), 3, + ACTIONS(3304), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(649), 3, + STATE(702), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1330), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1373), 19, + STATE(2028), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -74180,7 +66287,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [82246] = 34, + [60480] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -74189,76 +66296,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(619), 1, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(592), 1, anon_sym_COLON, - ACTIONS(621), 1, + ACTIONS(594), 1, anon_sym_COLON_COLON, - ACTIONS(623), 1, + ACTIONS(596), 1, anon_sym_DQUOTE, - ACTIONS(629), 1, + ACTIONS(602), 1, aux_sym_sym_lit_token1, - ACTIONS(631), 1, - anon_sym_LPAREN, - ACTIONS(637), 1, - anon_sym_POUND_QMARK, - ACTIONS(873), 1, + ACTIONS(624), 1, + anon_sym_cl, + ACTIONS(729), 1, aux_sym_num_lit_token1, - ACTIONS(893), 1, + ACTIONS(733), 1, + anon_sym_POUND_QMARK, + ACTIONS(735), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(895), 1, + ACTIONS(737), 1, anon_sym_POUND_SQUOTE, - ACTIONS(897), 1, + ACTIONS(739), 1, anon_sym_SQUOTE, - ACTIONS(899), 1, + ACTIONS(741), 1, anon_sym_BQUOTE, - ACTIONS(901), 1, + ACTIONS(743), 1, anon_sym_COMMA_AT, - ACTIONS(903), 1, + ACTIONS(745), 1, anon_sym_COMMA, - ACTIONS(905), 1, - anon_sym_cl, - ACTIONS(2113), 1, + ACTIONS(1554), 1, anon_sym_POUND, - STATE(1384), 1, - sym__bare_set_lit, - STATE(2050), 1, + ACTIONS(2080), 1, + sym_self_referential_reader_macro, + STATE(2146), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2223), 1, - sym_sym_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(811), 2, + STATE(2313), 1, + sym__bare_set_lit, + STATE(2401), 1, + sym_sym_lit, + ACTIONS(626), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(815), 2, + ACTIONS(632), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(875), 2, + ACTIONS(731), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(907), 2, + ACTIONS(747), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2721), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2221), 3, + ACTIONS(2078), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(651), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1330), 3, + STATE(2315), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1374), 19, + STATE(2251), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -74278,7 +66387,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [82378] = 34, + [60615] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -74287,76 +66396,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, + ACTIONS(907), 1, aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(909), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(911), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(913), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(919), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(921), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(927), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(929), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(931), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(933), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(935), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(937), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(939), 1, anon_sym_COMMA, - ACTIONS(809), 1, + ACTIONS(941), 1, anon_sym_cl, - ACTIONS(1545), 1, + ACTIONS(1998), 1, anon_sym_POUND, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, + ACTIONS(3310), 1, + sym_self_referential_reader_macro, + STATE(1165), 1, sym_sym_lit, - STATE(2037), 1, + STATE(1176), 1, + sym__bare_set_lit, + STATE(2152), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, + ACTIONS(925), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(943), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, + ACTIONS(947), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(949), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2723), 3, + ACTIONS(3308), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1330), 3, + STATE(1175), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1878), 19, + STATE(1207), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -74376,85 +66487,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [82510] = 34, + [60750] = 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(190), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(194), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(196), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(198), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(200), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(202), 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(217), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(219), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(221), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(223), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(225), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(227), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(229), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(576), 1, + anon_sym_LPAREN, + ACTIONS(580), 1, anon_sym_cl, - STATE(1608), 1, + ACTIONS(3316), 1, + sym_self_referential_reader_macro, + STATE(1077), 1, sym__bare_set_lit, - STATE(1610), 1, + STATE(1079), 1, sym_sym_lit, - STATE(2052), 1, + STATE(2137), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(215), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(236), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(53), 2, + ACTIONS(240), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(55), 2, + ACTIONS(242), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(3312), 2, sym__ws, sym_comment, - ACTIONS(2725), 3, + ACTIONS(3314), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(587), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(218), 19, + STATE(1078), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1028), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -74474,7 +66587,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [82642] = 34, + [60885] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -74483,76 +66596,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, - aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(809), 1, - anon_sym_cl, - ACTIONS(1545), 1, + ACTIONS(1442), 1, anon_sym_POUND, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, + ACTIONS(3320), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(2037), 1, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2727), 2, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2729), 3, + ACTIONS(3318), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(735), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1330), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1877), 19, + STATE(2029), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -74572,85 +66687,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [82774] = 34, + [61020] = 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(190), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(194), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(196), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(198), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(200), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(202), 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(217), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(219), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(221), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(223), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(225), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(227), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(229), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(576), 1, + anon_sym_LPAREN, + ACTIONS(580), 1, anon_sym_cl, - STATE(1608), 1, + ACTIONS(3326), 1, + sym_self_referential_reader_macro, + STATE(1077), 1, sym__bare_set_lit, - STATE(1610), 1, + STATE(1079), 1, sym_sym_lit, - STATE(2052), 1, + STATE(2137), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(215), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(236), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(53), 2, + ACTIONS(240), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(55), 2, + ACTIONS(242), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2731), 2, + ACTIONS(3322), 2, sym__ws, sym_comment, - ACTIONS(2733), 3, + ACTIONS(3324), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(644), 3, + STATE(590), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1609), 3, + STATE(1078), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(629), 19, + STATE(1029), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -74670,85 +66787,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [82906] = 34, + [61155] = 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(190), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(194), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(196), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(198), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(200), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(202), 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(217), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(219), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(221), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(223), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(225), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(227), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(229), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(576), 1, + anon_sym_LPAREN, + ACTIONS(580), 1, anon_sym_cl, - STATE(1608), 1, + ACTIONS(3332), 1, + sym_self_referential_reader_macro, + STATE(1077), 1, sym__bare_set_lit, - STATE(1610), 1, + STATE(1079), 1, sym_sym_lit, - STATE(2052), 1, + STATE(2137), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(215), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(236), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(53), 2, + ACTIONS(240), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(55), 2, + ACTIONS(242), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2735), 2, + ACTIONS(3328), 2, sym__ws, sym_comment, - ACTIONS(2737), 3, + ACTIONS(3330), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(645), 3, + STATE(592), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1609), 3, + STATE(1078), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(630), 19, + STATE(1030), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -74768,7 +66887,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [83038] = 34, + [61290] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -74777,76 +66896,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, + ACTIONS(190), 1, + anon_sym_POUND, + ACTIONS(194), 1, aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(196), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(198), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(200), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(202), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(217), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(219), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(221), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(223), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(225), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(227), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(229), 1, anon_sym_COMMA, - ACTIONS(809), 1, + ACTIONS(576), 1, + anon_sym_LPAREN, + ACTIONS(580), 1, anon_sym_cl, - ACTIONS(1545), 1, - anon_sym_POUND, - STATE(1384), 1, + ACTIONS(3338), 1, + sym_self_referential_reader_macro, + STATE(1077), 1, sym__bare_set_lit, - STATE(1817), 1, + STATE(1079), 1, sym_sym_lit, - STATE(2037), 1, + STATE(2137), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, + ACTIONS(215), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(236), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, + ACTIONS(240), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(242), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2739), 2, + ACTIONS(3334), 2, sym__ws, sym_comment, - ACTIONS(2741), 3, + ACTIONS(3336), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(740), 3, + STATE(599), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1330), 3, + STATE(1078), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1876), 19, + STATE(1033), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -74866,85 +66987,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [83170] = 34, + [61425] = 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(190), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(194), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(196), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(198), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(200), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(202), 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(217), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(219), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(221), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(223), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(225), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(227), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(229), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(576), 1, + anon_sym_LPAREN, + ACTIONS(580), 1, anon_sym_cl, - STATE(1608), 1, + ACTIONS(3342), 1, + sym_self_referential_reader_macro, + STATE(1077), 1, sym__bare_set_lit, - STATE(1610), 1, + STATE(1079), 1, sym_sym_lit, - STATE(2052), 1, + STATE(2137), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(215), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(236), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(53), 2, + ACTIONS(240), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(55), 2, + ACTIONS(242), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2743), 3, + ACTIONS(3340), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1609), 3, + STATE(1078), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(637), 19, + STATE(1035), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -74964,7 +67087,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [83302] = 34, + [61560] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -74973,76 +67096,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(619), 1, + ACTIONS(190), 1, + anon_sym_POUND, + ACTIONS(194), 1, + aux_sym_num_lit_token1, + ACTIONS(196), 1, anon_sym_COLON, - ACTIONS(621), 1, + ACTIONS(198), 1, anon_sym_COLON_COLON, - ACTIONS(623), 1, + ACTIONS(200), 1, anon_sym_DQUOTE, - ACTIONS(629), 1, + ACTIONS(202), 1, aux_sym_sym_lit_token1, - ACTIONS(631), 1, - anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(217), 1, anon_sym_POUND_QMARK, - ACTIONS(873), 1, - aux_sym_num_lit_token1, - ACTIONS(893), 1, + ACTIONS(219), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(895), 1, + ACTIONS(221), 1, anon_sym_POUND_SQUOTE, - ACTIONS(897), 1, + ACTIONS(223), 1, anon_sym_SQUOTE, - ACTIONS(899), 1, + ACTIONS(225), 1, anon_sym_BQUOTE, - ACTIONS(901), 1, + ACTIONS(227), 1, anon_sym_COMMA_AT, - ACTIONS(903), 1, + ACTIONS(229), 1, anon_sym_COMMA, - ACTIONS(905), 1, + ACTIONS(576), 1, + anon_sym_LPAREN, + ACTIONS(580), 1, anon_sym_cl, - ACTIONS(2113), 1, - anon_sym_POUND, - STATE(1384), 1, + ACTIONS(3346), 1, + sym_self_referential_reader_macro, + STATE(1077), 1, sym__bare_set_lit, - STATE(2050), 1, + STATE(1079), 1, + sym_sym_lit, + STATE(2137), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2223), 1, - sym_sym_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(811), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(815), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(875), 2, + ACTIONS(215), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(907), 2, + ACTIONS(236), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(240), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2745), 2, + ACTIONS(242), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2213), 3, + ACTIONS(3344), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(653), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1330), 3, + STATE(1078), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1375), 19, + STATE(1564), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1036), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -75062,7 +67187,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [83434] = 34, + [61695] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -75071,76 +67196,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(569), 1, + ACTIONS(190), 1, + anon_sym_POUND, + ACTIONS(194), 1, aux_sym_num_lit_token1, - ACTIONS(571), 1, + ACTIONS(196), 1, anon_sym_COLON, - ACTIONS(573), 1, + ACTIONS(198), 1, anon_sym_COLON_COLON, - ACTIONS(575), 1, + ACTIONS(200), 1, anon_sym_DQUOTE, - ACTIONS(581), 1, + ACTIONS(202), 1, aux_sym_sym_lit_token1, - ACTIONS(583), 1, - anon_sym_LPAREN, - ACTIONS(589), 1, + ACTIONS(217), 1, anon_sym_POUND_QMARK, - ACTIONS(591), 1, + ACTIONS(219), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(593), 1, + ACTIONS(221), 1, anon_sym_POUND_SQUOTE, - ACTIONS(595), 1, + ACTIONS(223), 1, anon_sym_SQUOTE, - ACTIONS(597), 1, + ACTIONS(225), 1, anon_sym_BQUOTE, - ACTIONS(599), 1, + ACTIONS(227), 1, anon_sym_COMMA_AT, - ACTIONS(601), 1, + ACTIONS(229), 1, anon_sym_COMMA, - ACTIONS(603), 1, + ACTIONS(576), 1, + anon_sym_LPAREN, + ACTIONS(580), 1, anon_sym_cl, - ACTIONS(1387), 1, - anon_sym_POUND, - STATE(1163), 1, - sym_sym_lit, - STATE(1186), 1, + ACTIONS(3350), 1, + sym_self_referential_reader_macro, + STATE(1077), 1, sym__bare_set_lit, - STATE(2027), 1, + STATE(1079), 1, + sym_sym_lit, + STATE(2137), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(587), 2, + ACTIONS(215), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(605), 2, + ACTIONS(236), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(607), 2, + ACTIONS(240), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(609), 2, + ACTIONS(242), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2747), 3, + ACTIONS(3348), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1183), 3, + STATE(1078), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1178), 19, + STATE(1037), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -75160,7 +67287,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [83566] = 34, + [61830] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -75169,76 +67296,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, + ACTIONS(190), 1, + anon_sym_POUND, + ACTIONS(194), 1, aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(196), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(198), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(200), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(202), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(217), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(219), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(221), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(223), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(225), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(227), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(229), 1, anon_sym_COMMA, - ACTIONS(809), 1, + ACTIONS(576), 1, + anon_sym_LPAREN, + ACTIONS(580), 1, anon_sym_cl, - ACTIONS(1545), 1, - anon_sym_POUND, - STATE(1384), 1, + ACTIONS(3354), 1, + sym_self_referential_reader_macro, + STATE(1077), 1, sym__bare_set_lit, - STATE(1817), 1, + STATE(1079), 1, sym_sym_lit, - STATE(2037), 1, + STATE(2137), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, + ACTIONS(215), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(236), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, + ACTIONS(240), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(242), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2749), 3, + ACTIONS(3352), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1330), 3, + STATE(1078), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1875), 19, + STATE(1038), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -75258,7 +67387,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [83698] = 34, + [61965] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -75267,76 +67396,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, + ACTIONS(907), 1, aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(909), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(911), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(913), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(919), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(921), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(927), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(929), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(931), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(933), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(935), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(937), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(939), 1, anon_sym_COMMA, - ACTIONS(809), 1, + ACTIONS(941), 1, anon_sym_cl, - ACTIONS(1545), 1, + ACTIONS(1998), 1, anon_sym_POUND, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, + ACTIONS(3358), 1, + sym_self_referential_reader_macro, + STATE(1165), 1, sym_sym_lit, - STATE(2037), 1, + STATE(1176), 1, + sym__bare_set_lit, + STATE(2152), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, + ACTIONS(925), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(943), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, + ACTIONS(947), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(949), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2751), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2753), 3, + ACTIONS(3356), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(746), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1330), 3, + STATE(1175), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1874), 19, + STATE(1564), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1186), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -75356,85 +67487,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [83830] = 34, + [62100] = 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(435), 1, + ACTIONS(190), 1, + anon_sym_POUND, + ACTIONS(194), 1, aux_sym_num_lit_token1, - ACTIONS(445), 1, + ACTIONS(196), 1, + anon_sym_COLON, + ACTIONS(198), 1, + anon_sym_COLON_COLON, + ACTIONS(200), 1, + anon_sym_DQUOTE, + ACTIONS(202), 1, + aux_sym_sym_lit_token1, + ACTIONS(217), 1, + anon_sym_POUND_QMARK, + ACTIONS(219), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(221), 1, anon_sym_POUND_SQUOTE, - ACTIONS(447), 1, + ACTIONS(223), 1, anon_sym_SQUOTE, - ACTIONS(449), 1, + ACTIONS(225), 1, anon_sym_BQUOTE, - ACTIONS(451), 1, + ACTIONS(227), 1, anon_sym_COMMA_AT, - ACTIONS(453), 1, + ACTIONS(229), 1, anon_sym_COMMA, - ACTIONS(2083), 1, - anon_sym_POUND, - STATE(1608), 1, + ACTIONS(576), 1, + anon_sym_LPAREN, + ACTIONS(580), 1, + anon_sym_cl, + ACTIONS(3362), 1, + sym_self_referential_reader_macro, + STATE(1077), 1, sym__bare_set_lit, - STATE(1610), 1, + STATE(1079), 1, sym_sym_lit, - STATE(2042), 1, + STATE(2137), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(443), 2, + ACTIONS(215), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(455), 2, + ACTIONS(236), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(240), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1353), 2, + ACTIONS(242), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(1913), 3, + ACTIONS(3360), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1609), 3, + STATE(1078), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1576), 19, + STATE(1039), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -75454,85 +67587,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [83962] = 34, + [62235] = 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, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(592), 1, + anon_sym_COLON, + ACTIONS(594), 1, + anon_sym_COLON_COLON, + ACTIONS(596), 1, + anon_sym_DQUOTE, + ACTIONS(602), 1, + aux_sym_sym_lit_token1, + ACTIONS(624), 1, anon_sym_cl, - ACTIONS(435), 1, + ACTIONS(729), 1, aux_sym_num_lit_token1, - ACTIONS(445), 1, + ACTIONS(733), 1, + anon_sym_POUND_QMARK, + ACTIONS(735), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(737), 1, anon_sym_POUND_SQUOTE, - ACTIONS(447), 1, + ACTIONS(739), 1, anon_sym_SQUOTE, - ACTIONS(449), 1, + ACTIONS(741), 1, anon_sym_BQUOTE, - ACTIONS(451), 1, + ACTIONS(743), 1, anon_sym_COMMA_AT, - ACTIONS(453), 1, + ACTIONS(745), 1, anon_sym_COMMA, - ACTIONS(2083), 1, + ACTIONS(1554), 1, anon_sym_POUND, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2042), 1, + ACTIONS(2070), 1, + sym_self_referential_reader_macro, + STATE(2146), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(51), 2, + STATE(2313), 1, + sym__bare_set_lit, + STATE(2401), 1, + sym_sym_lit, + ACTIONS(626), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(632), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(443), 2, + ACTIONS(731), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(455), 2, + ACTIONS(747), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1353), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(1903), 3, + ACTIONS(2068), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1575), 19, + STATE(2315), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2250), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -75552,7 +67687,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [84094] = 34, + [62370] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -75561,76 +67696,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, + ACTIONS(522), 1, aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(546), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(548), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(550), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(552), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(554), 1, anon_sym_COMMA, - ACTIONS(809), 1, + ACTIONS(556), 1, anon_sym_cl, - ACTIONS(1545), 1, + ACTIONS(979), 1, anon_sym_POUND, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, + ACTIONS(1730), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(2037), 1, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2150), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, + ACTIONS(540), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, + ACTIONS(562), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2755), 3, + ACTIONS(1728), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1873), 19, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1835), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -75650,85 +67787,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [84226] = 34, + [62505] = 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(775), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(809), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(1545), 1, - anon_sym_POUND, - STATE(1384), 1, + ACTIONS(3368), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(1817), 1, + STATE(1563), 1, sym_sym_lit, - STATE(2037), 1, + STATE(2153), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2757), 2, + ACTIONS(3364), 2, sym__ws, sym_comment, - ACTIONS(2759), 3, + ACTIONS(3366), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(749), 3, + STATE(635), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1330), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1872), 19, + STATE(551), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -75748,85 +67887,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [84358] = 34, + [62640] = 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, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(592), 1, + anon_sym_COLON, + ACTIONS(594), 1, + anon_sym_COLON_COLON, + ACTIONS(596), 1, + anon_sym_DQUOTE, + ACTIONS(602), 1, + aux_sym_sym_lit_token1, + ACTIONS(624), 1, anon_sym_cl, - ACTIONS(435), 1, + ACTIONS(729), 1, aux_sym_num_lit_token1, - ACTIONS(445), 1, + ACTIONS(733), 1, + anon_sym_POUND_QMARK, + ACTIONS(735), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(737), 1, anon_sym_POUND_SQUOTE, - ACTIONS(447), 1, + ACTIONS(739), 1, anon_sym_SQUOTE, - ACTIONS(449), 1, + ACTIONS(741), 1, anon_sym_BQUOTE, - ACTIONS(451), 1, + ACTIONS(743), 1, anon_sym_COMMA_AT, - ACTIONS(453), 1, + ACTIONS(745), 1, anon_sym_COMMA, - ACTIONS(2083), 1, + ACTIONS(1554), 1, anon_sym_POUND, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2042), 1, + ACTIONS(2058), 1, + sym_self_referential_reader_macro, + STATE(2146), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(51), 2, + STATE(2313), 1, + sym__bare_set_lit, + STATE(2401), 1, + sym_sym_lit, + ACTIONS(626), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(632), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(443), 2, + ACTIONS(731), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(455), 2, + ACTIONS(747), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2761), 2, + ACTIONS(3370), 2, sym__ws, sym_comment, - ACTIONS(1649), 3, + ACTIONS(2056), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(676), 3, + STATE(217), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1609), 3, + STATE(2315), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1560), 19, + STATE(2239), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -75846,7 +67987,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [84490] = 34, + [62775] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -75855,76 +67996,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(777), 1, + ACTIONS(190), 1, + anon_sym_POUND, + ACTIONS(194), 1, + aux_sym_num_lit_token1, + ACTIONS(196), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(198), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(200), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(202), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(217), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(219), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(809), 1, - anon_sym_cl, - ACTIONS(873), 1, - aux_sym_num_lit_token1, - ACTIONS(877), 1, + ACTIONS(221), 1, anon_sym_POUND_SQUOTE, - ACTIONS(879), 1, + ACTIONS(223), 1, anon_sym_SQUOTE, - ACTIONS(881), 1, + ACTIONS(225), 1, anon_sym_BQUOTE, - ACTIONS(883), 1, + ACTIONS(227), 1, anon_sym_COMMA_AT, - ACTIONS(885), 1, + ACTIONS(229), 1, anon_sym_COMMA, - ACTIONS(1015), 1, - anon_sym_POUND, - STATE(1384), 1, + ACTIONS(576), 1, + anon_sym_LPAREN, + ACTIONS(580), 1, + anon_sym_cl, + ACTIONS(3376), 1, + sym_self_referential_reader_macro, + STATE(1077), 1, sym__bare_set_lit, - STATE(1817), 1, + STATE(1079), 1, sym_sym_lit, - STATE(2048), 1, + STATE(2137), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(811), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(815), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(875), 2, + ACTIONS(215), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(887), 2, + ACTIONS(236), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(240), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2763), 2, + ACTIONS(242), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(3372), 2, sym__ws, sym_comment, - ACTIONS(2463), 3, + ACTIONS(3374), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(741), 3, + STATE(621), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1330), 3, + STATE(1078), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1353), 19, + STATE(1058), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -75944,9 +68087,13 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [84622] = 34, + [62910] = 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, @@ -75965,64 +68112,62 @@ static 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(435), 1, - aux_sym_num_lit_token1, - ACTIONS(445), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(447), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(449), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(451), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(453), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(2083), 1, - anon_sym_POUND, - STATE(1608), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(3382), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(1610), 1, + STATE(1563), 1, sym_sym_lit, - STATE(2042), 1, + STATE(2153), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 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_POUNDC, - anon_sym_POUNDc, - ACTIONS(443), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(455), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1353), 2, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(3378), 2, sym__ws, sym_comment, - ACTIONS(1645), 3, + ACTIONS(3380), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(603), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1561), 19, + STATE(1562), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(189), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -76042,7 +68187,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [84754] = 34, + [63045] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -76051,76 +68196,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, + ACTIONS(190), 1, + anon_sym_POUND, + ACTIONS(194), 1, aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(196), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(198), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(200), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(202), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(217), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(219), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(221), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(223), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(225), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(227), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(229), 1, anon_sym_COMMA, - ACTIONS(809), 1, + ACTIONS(576), 1, + anon_sym_LPAREN, + ACTIONS(580), 1, anon_sym_cl, - ACTIONS(1545), 1, - anon_sym_POUND, - STATE(1384), 1, + ACTIONS(3388), 1, + sym_self_referential_reader_macro, + STATE(1077), 1, sym__bare_set_lit, - STATE(1817), 1, + STATE(1079), 1, sym_sym_lit, - STATE(2037), 1, + STATE(2137), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, + ACTIONS(215), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(236), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, + ACTIONS(240), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(242), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(3384), 2, sym__ws, sym_comment, - ACTIONS(2765), 3, + ACTIONS(3386), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(622), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1871), 19, + STATE(1078), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1059), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -76140,9 +68287,13 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [84886] = 34, + [63180] = 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, @@ -76161,64 +68312,62 @@ static 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(435), 1, - aux_sym_num_lit_token1, - ACTIONS(445), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(447), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(449), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(451), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(453), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(2083), 1, - anon_sym_POUND, - STATE(1608), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(3392), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(1610), 1, + STATE(1563), 1, sym_sym_lit, - STATE(2042), 1, + STATE(2153), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 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_POUNDC, - anon_sym_POUNDc, - ACTIONS(443), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(455), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2767), 2, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(1641), 3, + ACTIONS(3390), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(677), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1609), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1563), 19, + STATE(1564), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(557), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -76238,85 +68387,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [85018] = 34, + [63315] = 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(775), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(809), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(1545), 1, - anon_sym_POUND, - STATE(1384), 1, + ACTIONS(3396), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(1817), 1, + STATE(1563), 1, sym_sym_lit, - STATE(2037), 1, + STATE(2153), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2769), 3, + ACTIONS(3394), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1330), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1870), 19, + STATE(559), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -76336,7 +68487,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [85150] = 34, + [63450] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -76345,76 +68496,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, + ACTIONS(190), 1, + anon_sym_POUND, + ACTIONS(194), 1, aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(196), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(198), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(200), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(202), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(217), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(219), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(221), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(223), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(225), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(227), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(229), 1, anon_sym_COMMA, - ACTIONS(809), 1, + ACTIONS(576), 1, + anon_sym_LPAREN, + ACTIONS(580), 1, anon_sym_cl, - ACTIONS(1545), 1, - anon_sym_POUND, - STATE(1384), 1, + ACTIONS(3402), 1, + sym_self_referential_reader_macro, + STATE(1077), 1, sym__bare_set_lit, - STATE(1817), 1, + STATE(1079), 1, sym_sym_lit, - STATE(2037), 1, + STATE(2137), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, + ACTIONS(215), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(236), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, + ACTIONS(240), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(242), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2771), 2, + ACTIONS(3398), 2, sym__ws, sym_comment, - ACTIONS(2773), 3, + ACTIONS(3400), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(754), 3, + STATE(623), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1330), 3, + STATE(1078), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1869), 19, + STATE(1060), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -76434,85 +68587,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [85282] = 34, + [63585] = 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(435), 1, + ACTIONS(190), 1, + anon_sym_POUND, + ACTIONS(194), 1, aux_sym_num_lit_token1, - ACTIONS(445), 1, + ACTIONS(196), 1, + anon_sym_COLON, + ACTIONS(198), 1, + anon_sym_COLON_COLON, + ACTIONS(200), 1, + anon_sym_DQUOTE, + ACTIONS(202), 1, + aux_sym_sym_lit_token1, + ACTIONS(217), 1, + anon_sym_POUND_QMARK, + ACTIONS(219), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(221), 1, anon_sym_POUND_SQUOTE, - ACTIONS(447), 1, + ACTIONS(223), 1, anon_sym_SQUOTE, - ACTIONS(449), 1, + ACTIONS(225), 1, anon_sym_BQUOTE, - ACTIONS(451), 1, + ACTIONS(227), 1, anon_sym_COMMA_AT, - ACTIONS(453), 1, + ACTIONS(229), 1, anon_sym_COMMA, - ACTIONS(2083), 1, - anon_sym_POUND, - STATE(1608), 1, + ACTIONS(576), 1, + anon_sym_LPAREN, + ACTIONS(580), 1, + anon_sym_cl, + ACTIONS(3408), 1, + sym_self_referential_reader_macro, + STATE(1077), 1, sym__bare_set_lit, - STATE(1610), 1, + STATE(1079), 1, sym_sym_lit, - STATE(2042), 1, + STATE(2137), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(443), 2, + ACTIONS(215), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(455), 2, + ACTIONS(236), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(240), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1353), 2, + ACTIONS(242), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(3404), 2, sym__ws, sym_comment, - ACTIONS(1637), 3, + ACTIONS(3406), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(624), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1573), 19, + STATE(1078), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1061), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -76532,7 +68687,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [85414] = 34, + [63720] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -76541,76 +68696,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(777), 1, + ACTIONS(190), 1, + anon_sym_POUND, + ACTIONS(194), 1, + aux_sym_num_lit_token1, + ACTIONS(196), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(198), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(200), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(202), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(217), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(219), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(809), 1, - anon_sym_cl, - ACTIONS(873), 1, - aux_sym_num_lit_token1, - ACTIONS(877), 1, + ACTIONS(221), 1, anon_sym_POUND_SQUOTE, - ACTIONS(879), 1, + ACTIONS(223), 1, anon_sym_SQUOTE, - ACTIONS(881), 1, + ACTIONS(225), 1, anon_sym_BQUOTE, - ACTIONS(883), 1, + ACTIONS(227), 1, anon_sym_COMMA_AT, - ACTIONS(885), 1, + ACTIONS(229), 1, anon_sym_COMMA, - ACTIONS(1015), 1, - anon_sym_POUND, - STATE(1384), 1, + ACTIONS(576), 1, + anon_sym_LPAREN, + ACTIONS(580), 1, + anon_sym_cl, + ACTIONS(3414), 1, + sym_self_referential_reader_macro, + STATE(1077), 1, sym__bare_set_lit, - STATE(1817), 1, + STATE(1079), 1, sym_sym_lit, - STATE(2048), 1, + STATE(2137), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(811), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(815), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(875), 2, + ACTIONS(215), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(887), 2, + ACTIONS(236), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(240), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1353), 2, + ACTIONS(242), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(3410), 2, sym__ws, sym_comment, - ACTIONS(2203), 3, + ACTIONS(3412), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(626), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1336), 19, + STATE(1078), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1063), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -76630,85 +68787,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [85546] = 34, + [63855] = 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(435), 1, + ACTIONS(855), 1, aux_sym_num_lit_token1, - ACTIONS(445), 1, + ACTIONS(857), 1, + anon_sym_COLON, + ACTIONS(859), 1, + anon_sym_COLON_COLON, + ACTIONS(861), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, + aux_sym_sym_lit_token1, + ACTIONS(869), 1, + anon_sym_LPAREN, + ACTIONS(875), 1, + anon_sym_POUND_QMARK, + ACTIONS(877), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(879), 1, anon_sym_POUND_SQUOTE, - ACTIONS(447), 1, + ACTIONS(881), 1, anon_sym_SQUOTE, - ACTIONS(449), 1, + ACTIONS(883), 1, anon_sym_BQUOTE, - ACTIONS(451), 1, + ACTIONS(885), 1, anon_sym_COMMA_AT, - ACTIONS(453), 1, + ACTIONS(887), 1, anon_sym_COMMA, - ACTIONS(2083), 1, + ACTIONS(889), 1, + anon_sym_cl, + ACTIONS(1608), 1, anon_sym_POUND, - STATE(1608), 1, + ACTIONS(3420), 1, + sym_self_referential_reader_macro, + STATE(1793), 1, sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2042), 1, + STATE(2138), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2224), 1, + sym_sym_lit, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(51), 2, + ACTIONS(312), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(318), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(443), 2, + ACTIONS(873), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(455), 2, + ACTIONS(893), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1353), 2, + ACTIONS(3416), 2, sym__ws, sym_comment, - ACTIONS(1609), 3, + ACTIONS(3418), 3, anon_sym_DOT, sym_nil_lit, - sym_fancy_literal, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + sym_fancy_literal, + STATE(206), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1626), 19, + STATE(1792), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2158), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -76728,7 +68887,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [85678] = 34, + [63990] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -76737,76 +68896,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, + ACTIONS(907), 1, aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(909), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(911), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(913), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(919), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(921), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(927), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(929), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(931), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(933), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(935), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(937), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(939), 1, anon_sym_COMMA, - ACTIONS(809), 1, + ACTIONS(941), 1, anon_sym_cl, - ACTIONS(1545), 1, + ACTIONS(1998), 1, anon_sym_POUND, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, + ACTIONS(3424), 1, + sym_self_referential_reader_macro, + STATE(1165), 1, sym_sym_lit, - STATE(2037), 1, + STATE(1176), 1, + sym__bare_set_lit, + STATE(2152), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, + ACTIONS(925), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(943), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, + ACTIONS(947), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(949), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2775), 3, + ACTIONS(3422), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1330), 3, + STATE(1175), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1868), 19, + STATE(1246), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -76826,7 +68987,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [85810] = 34, + [64125] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -76835,76 +68996,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, + ACTIONS(907), 1, aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(909), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(911), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(913), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(919), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(921), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(927), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(929), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(931), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(933), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(935), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(937), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(939), 1, anon_sym_COMMA, - ACTIONS(809), 1, + ACTIONS(941), 1, anon_sym_cl, - ACTIONS(1545), 1, + ACTIONS(1998), 1, anon_sym_POUND, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, + ACTIONS(3428), 1, + sym_self_referential_reader_macro, + STATE(1165), 1, sym_sym_lit, - STATE(2037), 1, + STATE(1176), 1, + sym__bare_set_lit, + STATE(2152), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, + ACTIONS(925), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(943), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, + ACTIONS(947), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(949), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2777), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2779), 3, + ACTIONS(3426), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(758), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1330), 3, + STATE(1175), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1867), 19, + STATE(1564), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1191), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -76924,85 +69087,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [85942] = 34, + [64260] = 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(435), 1, + ACTIONS(907), 1, aux_sym_num_lit_token1, - ACTIONS(445), 1, + ACTIONS(909), 1, + anon_sym_COLON, + ACTIONS(911), 1, + anon_sym_COLON_COLON, + ACTIONS(913), 1, + anon_sym_DQUOTE, + ACTIONS(919), 1, + aux_sym_sym_lit_token1, + ACTIONS(921), 1, + anon_sym_LPAREN, + ACTIONS(927), 1, + anon_sym_POUND_QMARK, + ACTIONS(929), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(931), 1, anon_sym_POUND_SQUOTE, - ACTIONS(447), 1, + ACTIONS(933), 1, anon_sym_SQUOTE, - ACTIONS(449), 1, + ACTIONS(935), 1, anon_sym_BQUOTE, - ACTIONS(451), 1, + ACTIONS(937), 1, anon_sym_COMMA_AT, - ACTIONS(453), 1, + ACTIONS(939), 1, anon_sym_COMMA, - ACTIONS(2083), 1, + ACTIONS(941), 1, + anon_sym_cl, + ACTIONS(1998), 1, anon_sym_POUND, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, + ACTIONS(3434), 1, + sym_self_referential_reader_macro, + STATE(1165), 1, sym_sym_lit, - STATE(2042), 1, + STATE(1176), 1, + sym__bare_set_lit, + STATE(2152), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(443), 2, + ACTIONS(925), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(455), 2, + ACTIONS(943), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(947), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2781), 2, + ACTIONS(949), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(3430), 2, sym__ws, sym_comment, - ACTIONS(1461), 3, + ACTIONS(3432), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(682), 3, + STATE(648), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1609), 3, + STATE(1175), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1592), 19, + STATE(1193), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -77022,85 +69187,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [86074] = 34, + [64395] = 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(435), 1, + ACTIONS(907), 1, aux_sym_num_lit_token1, - ACTIONS(445), 1, + ACTIONS(909), 1, + anon_sym_COLON, + ACTIONS(911), 1, + anon_sym_COLON_COLON, + ACTIONS(913), 1, + anon_sym_DQUOTE, + ACTIONS(919), 1, + aux_sym_sym_lit_token1, + ACTIONS(921), 1, + anon_sym_LPAREN, + ACTIONS(927), 1, + anon_sym_POUND_QMARK, + ACTIONS(929), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(931), 1, anon_sym_POUND_SQUOTE, - ACTIONS(447), 1, + ACTIONS(933), 1, anon_sym_SQUOTE, - ACTIONS(449), 1, + ACTIONS(935), 1, anon_sym_BQUOTE, - ACTIONS(451), 1, + ACTIONS(937), 1, anon_sym_COMMA_AT, - ACTIONS(453), 1, + ACTIONS(939), 1, anon_sym_COMMA, - ACTIONS(2083), 1, + ACTIONS(941), 1, + anon_sym_cl, + ACTIONS(1998), 1, anon_sym_POUND, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, + ACTIONS(3440), 1, + sym_self_referential_reader_macro, + STATE(1165), 1, sym_sym_lit, - STATE(2042), 1, + STATE(1176), 1, + sym__bare_set_lit, + STATE(2152), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(443), 2, + ACTIONS(925), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(455), 2, + ACTIONS(943), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(947), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2783), 2, + ACTIONS(949), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(3436), 2, sym__ws, sym_comment, - ACTIONS(1455), 3, + ACTIONS(3438), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(687), 3, + STATE(653), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1609), 3, + STATE(1175), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1591), 19, + STATE(1204), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -77120,85 +69287,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [86206] = 34, + [64530] = 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(435), 1, + ACTIONS(907), 1, aux_sym_num_lit_token1, - ACTIONS(445), 1, + ACTIONS(909), 1, + anon_sym_COLON, + ACTIONS(911), 1, + anon_sym_COLON_COLON, + ACTIONS(913), 1, + anon_sym_DQUOTE, + ACTIONS(919), 1, + aux_sym_sym_lit_token1, + ACTIONS(921), 1, + anon_sym_LPAREN, + ACTIONS(927), 1, + anon_sym_POUND_QMARK, + ACTIONS(929), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(931), 1, anon_sym_POUND_SQUOTE, - ACTIONS(447), 1, + ACTIONS(933), 1, anon_sym_SQUOTE, - ACTIONS(449), 1, + ACTIONS(935), 1, anon_sym_BQUOTE, - ACTIONS(451), 1, + ACTIONS(937), 1, anon_sym_COMMA_AT, - ACTIONS(453), 1, + ACTIONS(939), 1, anon_sym_COMMA, - ACTIONS(2083), 1, + ACTIONS(941), 1, + anon_sym_cl, + ACTIONS(1998), 1, anon_sym_POUND, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, + ACTIONS(3446), 1, + sym_self_referential_reader_macro, + STATE(1165), 1, sym_sym_lit, - STATE(2042), 1, + STATE(1176), 1, + sym__bare_set_lit, + STATE(2152), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(443), 2, + ACTIONS(925), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(455), 2, + ACTIONS(943), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(947), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1353), 2, + ACTIONS(949), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(3442), 2, sym__ws, sym_comment, - ACTIONS(1451), 3, + ACTIONS(3444), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(658), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1599), 19, + STATE(1175), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1167), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -77218,7 +69387,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [86338] = 34, + [64665] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -77227,76 +69396,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, + ACTIONS(907), 1, aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(909), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(911), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(913), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(919), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(921), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(927), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(929), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(931), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(933), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(935), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(937), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(939), 1, anon_sym_COMMA, - ACTIONS(809), 1, + ACTIONS(941), 1, anon_sym_cl, - ACTIONS(1545), 1, + ACTIONS(1998), 1, anon_sym_POUND, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, + ACTIONS(3452), 1, + sym_self_referential_reader_macro, + STATE(1165), 1, sym_sym_lit, - STATE(2037), 1, + STATE(1176), 1, + sym__bare_set_lit, + STATE(2152), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, + ACTIONS(925), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(943), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, + ACTIONS(947), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(949), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(3448), 2, sym__ws, sym_comment, - ACTIONS(2785), 3, + ACTIONS(3450), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(662), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1994), 19, + STATE(1175), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1212), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -77316,85 +69487,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [86470] = 34, + [64800] = 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(435), 1, + ACTIONS(590), 1, aux_sym_num_lit_token1, - ACTIONS(445), 1, + ACTIONS(857), 1, + anon_sym_COLON, + ACTIONS(859), 1, + anon_sym_COLON_COLON, + ACTIONS(861), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, + aux_sym_sym_lit_token1, + ACTIONS(869), 1, + anon_sym_LPAREN, + ACTIONS(875), 1, + anon_sym_POUND_QMARK, + ACTIONS(955), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(957), 1, anon_sym_POUND_SQUOTE, - ACTIONS(447), 1, + ACTIONS(959), 1, anon_sym_SQUOTE, - ACTIONS(449), 1, + ACTIONS(961), 1, anon_sym_BQUOTE, - ACTIONS(451), 1, + ACTIONS(963), 1, anon_sym_COMMA_AT, - ACTIONS(453), 1, + ACTIONS(965), 1, anon_sym_COMMA, - ACTIONS(2083), 1, + ACTIONS(967), 1, + anon_sym_cl, + ACTIONS(1660), 1, + sym_self_referential_reader_macro, + ACTIONS(3158), 1, anon_sym_POUND, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2042), 1, + STATE(2133), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(51), 2, + STATE(2313), 1, + sym__bare_set_lit, + STATE(2351), 1, + sym_sym_lit, + ACTIONS(608), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(626), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(632), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(443), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(455), 2, + ACTIONS(969), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1353), 2, + ACTIONS(3454), 2, sym__ws, sym_comment, - ACTIONS(1447), 3, + ACTIONS(1658), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(580), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1602), 19, + STATE(2315), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2242), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -77414,7 +69587,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [86602] = 34, + [64935] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -77423,76 +69596,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, + ACTIONS(590), 1, aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(857), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(859), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(861), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(867), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(869), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(875), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(955), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(957), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(959), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(961), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(963), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(965), 1, anon_sym_COMMA, - ACTIONS(809), 1, + ACTIONS(967), 1, anon_sym_cl, - ACTIONS(1545), 1, + ACTIONS(1558), 1, + sym_self_referential_reader_macro, + ACTIONS(3158), 1, anon_sym_POUND, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, - sym_sym_lit, - STATE(2037), 1, + STATE(2133), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, + STATE(2313), 1, + sym__bare_set_lit, + STATE(2351), 1, + sym_sym_lit, + ACTIONS(608), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(626), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(632), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2787), 2, + ACTIONS(969), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2789), 3, + ACTIONS(1556), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(763), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1330), 3, + STATE(2315), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1882), 19, + STATE(2243), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -77512,85 +69687,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [86734] = 34, + [65070] = 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(435), 1, + ACTIONS(907), 1, aux_sym_num_lit_token1, - ACTIONS(445), 1, + ACTIONS(909), 1, + anon_sym_COLON, + ACTIONS(911), 1, + anon_sym_COLON_COLON, + ACTIONS(913), 1, + anon_sym_DQUOTE, + ACTIONS(919), 1, + aux_sym_sym_lit_token1, + ACTIONS(921), 1, + anon_sym_LPAREN, + ACTIONS(927), 1, + anon_sym_POUND_QMARK, + ACTIONS(929), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(931), 1, anon_sym_POUND_SQUOTE, - ACTIONS(447), 1, + ACTIONS(933), 1, anon_sym_SQUOTE, - ACTIONS(449), 1, + ACTIONS(935), 1, anon_sym_BQUOTE, - ACTIONS(451), 1, + ACTIONS(937), 1, anon_sym_COMMA_AT, - ACTIONS(453), 1, + ACTIONS(939), 1, anon_sym_COMMA, - ACTIONS(2083), 1, + ACTIONS(941), 1, + anon_sym_cl, + ACTIONS(1998), 1, anon_sym_POUND, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, + ACTIONS(3458), 1, + sym_self_referential_reader_macro, + STATE(1165), 1, sym_sym_lit, - STATE(2042), 1, + STATE(1176), 1, + sym__bare_set_lit, + STATE(2152), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(443), 2, + ACTIONS(925), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(455), 2, + ACTIONS(943), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(947), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1353), 2, + ACTIONS(949), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(1443), 3, + ACTIONS(3456), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1609), 3, + STATE(1175), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1603), 19, + STATE(1168), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -77610,85 +69787,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [86866] = 34, + [65205] = 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(435), 1, + ACTIONS(590), 1, aux_sym_num_lit_token1, - ACTIONS(445), 1, + ACTIONS(857), 1, + anon_sym_COLON, + ACTIONS(859), 1, + anon_sym_COLON_COLON, + ACTIONS(861), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, + aux_sym_sym_lit_token1, + ACTIONS(869), 1, + anon_sym_LPAREN, + ACTIONS(875), 1, + anon_sym_POUND_QMARK, + ACTIONS(955), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(957), 1, anon_sym_POUND_SQUOTE, - ACTIONS(447), 1, + ACTIONS(959), 1, anon_sym_SQUOTE, - ACTIONS(449), 1, + ACTIONS(961), 1, anon_sym_BQUOTE, - ACTIONS(451), 1, + ACTIONS(963), 1, anon_sym_COMMA_AT, - ACTIONS(453), 1, + ACTIONS(965), 1, anon_sym_COMMA, - ACTIONS(2083), 1, + ACTIONS(967), 1, + anon_sym_cl, + ACTIONS(1670), 1, + sym_self_referential_reader_macro, + ACTIONS(3158), 1, anon_sym_POUND, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2042), 1, + STATE(2133), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(51), 2, + STATE(2313), 1, + sym__bare_set_lit, + STATE(2351), 1, + sym_sym_lit, + ACTIONS(608), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(626), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(632), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(443), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(455), 2, + ACTIONS(969), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2791), 2, + ACTIONS(3460), 2, sym__ws, sym_comment, - ACTIONS(1415), 3, + ACTIONS(1668), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(689), 3, + STATE(591), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1609), 3, + STATE(2315), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1646), 19, + STATE(2244), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -77708,7 +69887,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [86998] = 34, + [65340] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -77717,76 +69896,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, - aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(809), 1, - anon_sym_cl, - ACTIONS(1545), 1, + ACTIONS(1442), 1, anon_sym_POUND, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, + ACTIONS(3466), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(2037), 1, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(3462), 2, sym__ws, sym_comment, - ACTIONS(2793), 3, + ACTIONS(3464), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(718), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1991), 19, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2030), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -77806,85 +69987,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [87130] = 34, + [65475] = 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(435), 1, + ACTIONS(590), 1, aux_sym_num_lit_token1, - ACTIONS(445), 1, + ACTIONS(857), 1, + anon_sym_COLON, + ACTIONS(859), 1, + anon_sym_COLON_COLON, + ACTIONS(861), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, + aux_sym_sym_lit_token1, + ACTIONS(869), 1, + anon_sym_LPAREN, + ACTIONS(875), 1, + anon_sym_POUND_QMARK, + ACTIONS(955), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(957), 1, anon_sym_POUND_SQUOTE, - ACTIONS(447), 1, + ACTIONS(959), 1, anon_sym_SQUOTE, - ACTIONS(449), 1, + ACTIONS(961), 1, anon_sym_BQUOTE, - ACTIONS(451), 1, + ACTIONS(963), 1, anon_sym_COMMA_AT, - ACTIONS(453), 1, + ACTIONS(965), 1, anon_sym_COMMA, - ACTIONS(2083), 1, + ACTIONS(967), 1, + anon_sym_cl, + ACTIONS(1674), 1, + sym_self_referential_reader_macro, + ACTIONS(3158), 1, anon_sym_POUND, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2042), 1, + STATE(2133), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(51), 2, + STATE(2313), 1, + sym__bare_set_lit, + STATE(2351), 1, + sym_sym_lit, + ACTIONS(608), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(626), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(632), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(443), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(455), 2, + ACTIONS(969), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1353), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(1411), 3, + ACTIONS(1672), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1582), 19, + STATE(2315), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2245), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -77904,7 +70087,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [87262] = 34, + [65610] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -77913,76 +70096,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, + ACTIONS(907), 1, aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(909), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(911), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(913), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(919), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(921), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(927), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(929), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(931), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(933), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(935), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(937), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(939), 1, anon_sym_COMMA, - ACTIONS(809), 1, + ACTIONS(941), 1, anon_sym_cl, - ACTIONS(1545), 1, + ACTIONS(1998), 1, anon_sym_POUND, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, + ACTIONS(3472), 1, + sym_self_referential_reader_macro, + STATE(1165), 1, sym_sym_lit, - STATE(2037), 1, + STATE(1176), 1, + sym__bare_set_lit, + STATE(2152), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, + ACTIONS(925), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(943), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, + ACTIONS(947), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(949), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(3468), 2, sym__ws, sym_comment, - ACTIONS(2795), 3, + ACTIONS(3470), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(673), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1990), 19, + STATE(1175), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1234), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -78002,7 +70187,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [87394] = 34, + [65745] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -78011,76 +70196,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, + ACTIONS(907), 1, aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(909), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(911), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(913), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(919), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(921), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(927), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(929), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(931), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(933), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(935), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(937), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(939), 1, anon_sym_COMMA, - ACTIONS(809), 1, + ACTIONS(941), 1, anon_sym_cl, - ACTIONS(1545), 1, + ACTIONS(1998), 1, anon_sym_POUND, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, + ACTIONS(3476), 1, + sym_self_referential_reader_macro, + STATE(1165), 1, sym_sym_lit, - STATE(2037), 1, + STATE(1176), 1, + sym__bare_set_lit, + STATE(2152), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, + ACTIONS(925), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(943), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, + ACTIONS(947), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(949), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2797), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2799), 3, + ACTIONS(3474), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(767), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1330), 3, + STATE(1175), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1989), 19, + STATE(1564), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1240), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -78100,85 +70287,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [87526] = 34, + [65880] = 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, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(524), 1, + anon_sym_COLON, + ACTIONS(526), 1, + anon_sym_COLON_COLON, + ACTIONS(528), 1, + anon_sym_DQUOTE, + ACTIONS(534), 1, + aux_sym_sym_lit_token1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(556), 1, anon_sym_cl, - ACTIONS(435), 1, + ACTIONS(783), 1, aux_sym_num_lit_token1, - ACTIONS(445), 1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(447), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(449), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(451), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(453), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(2083), 1, + ACTIONS(1442), 1, anon_sym_POUND, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, + ACTIONS(3480), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(2042), 1, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(51), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(443), 2, + ACTIONS(785), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(455), 2, + ACTIONS(797), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2801), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2321), 3, + ACTIONS(3478), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(694), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1609), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1615), 19, + STATE(2031), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -78198,85 +70387,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [87658] = 34, + [66015] = 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(435), 1, + ACTIONS(61), 1, + anon_sym_POUND, + ACTIONS(65), 1, aux_sym_num_lit_token1, - ACTIONS(445), 1, + ACTIONS(67), 1, + anon_sym_COLON, + ACTIONS(69), 1, + anon_sym_COLON_COLON, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + aux_sym_sym_lit_token1, + ACTIONS(77), 1, + anon_sym_POUND_QMARK, + ACTIONS(79), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(81), 1, anon_sym_POUND_SQUOTE, - ACTIONS(447), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(449), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(451), 1, + ACTIONS(87), 1, anon_sym_COMMA_AT, - ACTIONS(453), 1, + ACTIONS(89), 1, anon_sym_COMMA, - ACTIONS(2083), 1, - anon_sym_POUND, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, + ACTIONS(775), 1, + anon_sym_LPAREN, + ACTIONS(779), 1, + anon_sym_cl, + ACTIONS(3484), 1, + sym_self_referential_reader_macro, + STATE(862), 1, sym_sym_lit, - STATE(2042), 1, + STATE(870), 1, + sym__bare_set_lit, + STATE(2156), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(443), 2, + ACTIONS(75), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(455), 2, + ACTIONS(93), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(97), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2803), 2, + ACTIONS(99), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2347), 3, + ACTIONS(3482), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(696), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1609), 3, + STATE(863), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1613), 19, + STATE(1564), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(837), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -78296,85 +70487,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [87790] = 34, + [66150] = 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, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(524), 1, + anon_sym_COLON, + ACTIONS(526), 1, + anon_sym_COLON_COLON, + ACTIONS(528), 1, + anon_sym_DQUOTE, + ACTIONS(534), 1, + aux_sym_sym_lit_token1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(556), 1, anon_sym_cl, - ACTIONS(435), 1, + ACTIONS(783), 1, aux_sym_num_lit_token1, - ACTIONS(445), 1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(447), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(449), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(451), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(453), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(2083), 1, + ACTIONS(1442), 1, anon_sym_POUND, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, + ACTIONS(3490), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(2042), 1, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(51), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(443), 2, + ACTIONS(785), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(455), 2, + ACTIONS(797), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2805), 2, + ACTIONS(3486), 2, sym__ws, sym_comment, - ACTIONS(2357), 3, + ACTIONS(3488), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(698), 3, + STATE(723), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1609), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1612), 19, + STATE(2032), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -78394,85 +70587,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [87922] = 34, + [66285] = 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(435), 1, + ACTIONS(61), 1, + anon_sym_POUND, + ACTIONS(65), 1, aux_sym_num_lit_token1, - ACTIONS(445), 1, + ACTIONS(67), 1, + anon_sym_COLON, + ACTIONS(69), 1, + anon_sym_COLON_COLON, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + aux_sym_sym_lit_token1, + ACTIONS(77), 1, + anon_sym_POUND_QMARK, + ACTIONS(79), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(81), 1, anon_sym_POUND_SQUOTE, - ACTIONS(447), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(449), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(451), 1, + ACTIONS(87), 1, anon_sym_COMMA_AT, - ACTIONS(453), 1, + ACTIONS(89), 1, anon_sym_COMMA, - ACTIONS(2083), 1, - anon_sym_POUND, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, + ACTIONS(775), 1, + anon_sym_LPAREN, + ACTIONS(779), 1, + anon_sym_cl, + ACTIONS(3496), 1, + sym_self_referential_reader_macro, + STATE(862), 1, sym_sym_lit, - STATE(2042), 1, + STATE(870), 1, + sym__bare_set_lit, + STATE(2156), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(443), 2, + ACTIONS(75), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(455), 2, + ACTIONS(93), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(97), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2807), 2, + ACTIONS(99), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(3492), 2, sym__ws, sym_comment, - ACTIONS(2155), 3, + ACTIONS(3494), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(701), 3, + STATE(729), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1609), 3, + STATE(863), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1642), 19, + STATE(834), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -78492,7 +70687,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [88054] = 34, + [66420] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -78501,76 +70696,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(617), 1, + ACTIONS(907), 1, aux_sym_num_lit_token1, - ACTIONS(619), 1, + ACTIONS(909), 1, anon_sym_COLON, - ACTIONS(621), 1, + ACTIONS(911), 1, anon_sym_COLON_COLON, - ACTIONS(623), 1, + ACTIONS(913), 1, anon_sym_DQUOTE, - ACTIONS(629), 1, + ACTIONS(919), 1, aux_sym_sym_lit_token1, - ACTIONS(631), 1, + ACTIONS(921), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(927), 1, anon_sym_POUND_QMARK, - ACTIONS(639), 1, + ACTIONS(929), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(641), 1, + ACTIONS(931), 1, anon_sym_POUND_SQUOTE, - ACTIONS(643), 1, + ACTIONS(933), 1, anon_sym_SQUOTE, - ACTIONS(645), 1, + ACTIONS(935), 1, anon_sym_BQUOTE, - ACTIONS(647), 1, + ACTIONS(937), 1, anon_sym_COMMA_AT, - ACTIONS(649), 1, + ACTIONS(939), 1, anon_sym_COMMA, - ACTIONS(651), 1, + ACTIONS(941), 1, anon_sym_cl, - ACTIONS(1569), 1, + ACTIONS(1998), 1, anon_sym_POUND, - STATE(2064), 1, + ACTIONS(3500), 1, + sym_self_referential_reader_macro, + STATE(1165), 1, + sym_sym_lit, + STATE(1176), 1, + sym__bare_set_lit, + STATE(2152), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2333), 1, - sym__bare_set_lit, - STATE(2344), 1, - sym_sym_lit, - ACTIONS(635), 2, + ACTIONS(925), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(653), 2, + ACTIONS(943), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(655), 2, + ACTIONS(947), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(657), 2, + ACTIONS(949), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2809), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2115), 3, + ACTIONS(3498), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(479), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2332), 3, + STATE(1175), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2031), 19, + STATE(1564), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1241), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -78588,87 +70785,89 @@ static uint16_t ts_small_parse_table[] = { sym_unquoting_lit, sym_path_lit, sym_package_lit, - sym_include_reader_macro, - sym_complex_num_lit, - [88186] = 34, - 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, + sym_include_reader_macro, + sym_complex_num_lit, + [66555] = 35, + ACTIONS(9), 1, + anon_sym_POUND_, ACTIONS(25), 1, anon_sym_CARET, ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(524), 1, + anon_sym_COLON, + ACTIONS(526), 1, + anon_sym_COLON_COLON, + ACTIONS(528), 1, + anon_sym_DQUOTE, + ACTIONS(534), 1, + aux_sym_sym_lit_token1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(556), 1, anon_sym_cl, - ACTIONS(435), 1, + ACTIONS(783), 1, aux_sym_num_lit_token1, - ACTIONS(445), 1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(447), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(449), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(451), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(453), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(2083), 1, + ACTIONS(1442), 1, anon_sym_POUND, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, + ACTIONS(3504), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(2042), 1, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(51), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(443), 2, + ACTIONS(785), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(455), 2, + ACTIONS(797), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1353), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2541), 3, + ACTIONS(3502), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1645), 19, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2033), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -78688,7 +70887,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [88318] = 34, + [66690] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -78697,76 +70896,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(617), 1, + ACTIONS(61), 1, + anon_sym_POUND, + ACTIONS(65), 1, aux_sym_num_lit_token1, - ACTIONS(821), 1, + ACTIONS(67), 1, anon_sym_COLON, - ACTIONS(823), 1, + ACTIONS(69), 1, anon_sym_COLON_COLON, - ACTIONS(825), 1, + ACTIONS(71), 1, anon_sym_DQUOTE, - ACTIONS(827), 1, + ACTIONS(73), 1, aux_sym_sym_lit_token1, - ACTIONS(829), 1, - anon_sym_LPAREN, - ACTIONS(831), 1, + ACTIONS(77), 1, anon_sym_POUND_QMARK, - ACTIONS(833), 1, + ACTIONS(79), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(835), 1, + ACTIONS(81), 1, anon_sym_POUND_SQUOTE, - ACTIONS(837), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(839), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(841), 1, + ACTIONS(87), 1, anon_sym_COMMA_AT, - ACTIONS(843), 1, + ACTIONS(89), 1, anon_sym_COMMA, - ACTIONS(845), 1, + ACTIONS(775), 1, + anon_sym_LPAREN, + ACTIONS(779), 1, anon_sym_cl, - ACTIONS(1373), 1, - anon_sym_POUND, - STATE(2056), 1, + ACTIONS(3510), 1, + sym_self_referential_reader_macro, + STATE(862), 1, + sym_sym_lit, + STATE(870), 1, + sym__bare_set_lit, + STATE(2156), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2333), 1, - sym__bare_set_lit, - STATE(2404), 1, - sym_sym_lit, - ACTIONS(635), 2, + ACTIONS(75), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(653), 2, + ACTIONS(93), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(657), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(847), 2, + ACTIONS(97), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2811), 2, + ACTIONS(99), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(3506), 2, sym__ws, sym_comment, - ACTIONS(2813), 3, + ACTIONS(3508), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(171), 3, + STATE(775), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2332), 3, + STATE(863), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2020), 19, + STATE(829), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -78786,85 +70987,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [88450] = 34, + [66825] = 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, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(524), 1, + anon_sym_COLON, + ACTIONS(526), 1, + anon_sym_COLON_COLON, + ACTIONS(528), 1, + anon_sym_DQUOTE, + ACTIONS(534), 1, + aux_sym_sym_lit_token1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(556), 1, anon_sym_cl, - ACTIONS(435), 1, + ACTIONS(783), 1, aux_sym_num_lit_token1, - ACTIONS(445), 1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(447), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(449), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(451), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(453), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(2083), 1, + ACTIONS(1442), 1, anon_sym_POUND, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, + ACTIONS(3516), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(2042), 1, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(51), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(443), 2, + ACTIONS(785), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(455), 2, + ACTIONS(797), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1353), 2, + ACTIONS(3512), 2, sym__ws, sym_comment, - ACTIONS(2573), 3, + ACTIONS(3514), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(728), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1648), 19, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2034), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -78884,85 +71087,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [88582] = 34, + [66960] = 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(435), 1, + ACTIONS(907), 1, aux_sym_num_lit_token1, - ACTIONS(445), 1, + ACTIONS(909), 1, + anon_sym_COLON, + ACTIONS(911), 1, + anon_sym_COLON_COLON, + ACTIONS(913), 1, + anon_sym_DQUOTE, + ACTIONS(919), 1, + aux_sym_sym_lit_token1, + ACTIONS(921), 1, + anon_sym_LPAREN, + ACTIONS(927), 1, + anon_sym_POUND_QMARK, + ACTIONS(929), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(931), 1, anon_sym_POUND_SQUOTE, - ACTIONS(447), 1, + ACTIONS(933), 1, anon_sym_SQUOTE, - ACTIONS(449), 1, + ACTIONS(935), 1, anon_sym_BQUOTE, - ACTIONS(451), 1, + ACTIONS(937), 1, anon_sym_COMMA_AT, - ACTIONS(453), 1, + ACTIONS(939), 1, anon_sym_COMMA, - ACTIONS(2083), 1, + ACTIONS(941), 1, + anon_sym_cl, + ACTIONS(1998), 1, anon_sym_POUND, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, + ACTIONS(3520), 1, + sym_self_referential_reader_macro, + STATE(1165), 1, sym_sym_lit, - STATE(2042), 1, + STATE(1176), 1, + sym__bare_set_lit, + STATE(2152), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(443), 2, + ACTIONS(925), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(455), 2, + ACTIONS(943), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(947), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1353), 2, + ACTIONS(949), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2619), 3, + ACTIONS(3518), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1609), 3, + STATE(1175), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1653), 19, + STATE(1189), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -78982,85 +71187,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [88714] = 34, + [67095] = 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(435), 1, + ACTIONS(907), 1, aux_sym_num_lit_token1, - ACTIONS(445), 1, + ACTIONS(909), 1, + anon_sym_COLON, + ACTIONS(911), 1, + anon_sym_COLON_COLON, + ACTIONS(913), 1, + anon_sym_DQUOTE, + ACTIONS(919), 1, + aux_sym_sym_lit_token1, + ACTIONS(921), 1, + anon_sym_LPAREN, + ACTIONS(927), 1, + anon_sym_POUND_QMARK, + ACTIONS(929), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(931), 1, anon_sym_POUND_SQUOTE, - ACTIONS(447), 1, + ACTIONS(933), 1, anon_sym_SQUOTE, - ACTIONS(449), 1, + ACTIONS(935), 1, anon_sym_BQUOTE, - ACTIONS(451), 1, + ACTIONS(937), 1, anon_sym_COMMA_AT, - ACTIONS(453), 1, + ACTIONS(939), 1, anon_sym_COMMA, - ACTIONS(2083), 1, + ACTIONS(941), 1, + anon_sym_cl, + ACTIONS(1998), 1, anon_sym_POUND, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, + ACTIONS(3526), 1, + sym_self_referential_reader_macro, + STATE(1165), 1, sym_sym_lit, - STATE(2042), 1, + STATE(1176), 1, + sym__bare_set_lit, + STATE(2152), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(443), 2, + ACTIONS(925), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(455), 2, + ACTIONS(943), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(947), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1353), 2, + ACTIONS(949), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(3522), 2, sym__ws, sym_comment, - ACTIONS(2673), 3, + ACTIONS(3524), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(676), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1654), 19, + STATE(1175), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1251), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -79080,85 +71287,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [88846] = 34, + [67230] = 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(435), 1, + ACTIONS(907), 1, aux_sym_num_lit_token1, - ACTIONS(445), 1, + ACTIONS(909), 1, + anon_sym_COLON, + ACTIONS(911), 1, + anon_sym_COLON_COLON, + ACTIONS(913), 1, + anon_sym_DQUOTE, + ACTIONS(919), 1, + aux_sym_sym_lit_token1, + ACTIONS(921), 1, + anon_sym_LPAREN, + ACTIONS(927), 1, + anon_sym_POUND_QMARK, + ACTIONS(929), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(931), 1, anon_sym_POUND_SQUOTE, - ACTIONS(447), 1, + ACTIONS(933), 1, anon_sym_SQUOTE, - ACTIONS(449), 1, + ACTIONS(935), 1, anon_sym_BQUOTE, - ACTIONS(451), 1, + ACTIONS(937), 1, anon_sym_COMMA_AT, - ACTIONS(453), 1, + ACTIONS(939), 1, anon_sym_COMMA, - ACTIONS(2083), 1, + ACTIONS(941), 1, + anon_sym_cl, + ACTIONS(1998), 1, anon_sym_POUND, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, + ACTIONS(3532), 1, + sym_self_referential_reader_macro, + STATE(1165), 1, sym_sym_lit, - STATE(2042), 1, + STATE(1176), 1, + sym__bare_set_lit, + STATE(2152), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(443), 2, + ACTIONS(925), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(455), 2, + ACTIONS(943), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(947), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1353), 2, + ACTIONS(949), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(3528), 2, sym__ws, sym_comment, - ACTIONS(2675), 3, + ACTIONS(3530), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(680), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1604), 19, + STATE(1175), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1253), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -79178,7 +71387,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [88978] = 34, + [67365] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -79187,76 +71396,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(619), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(621), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(623), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(629), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(631), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(873), 1, - aux_sym_num_lit_token1, - ACTIONS(893), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(895), 1, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(897), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(899), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(901), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(903), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(905), 1, - anon_sym_cl, - ACTIONS(2113), 1, + ACTIONS(1442), 1, anon_sym_POUND, - STATE(1384), 1, + ACTIONS(3536), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, + sym_sym_lit, + STATE(1902), 1, sym__bare_set_lit, - STATE(2050), 1, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2223), 1, - sym_sym_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(811), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(815), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(875), 2, + ACTIONS(785), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(907), 2, + ACTIONS(797), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1353), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2263), 3, + ACTIONS(3534), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2044), 19, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2035), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -79276,9 +71487,13 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [89110] = 34, + [67500] = 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, @@ -79297,64 +71512,62 @@ static 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(435), 1, - aux_sym_num_lit_token1, - ACTIONS(445), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(447), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(449), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(451), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(453), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(2083), 1, - anon_sym_POUND, - STATE(1608), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(3540), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(1610), 1, + STATE(1563), 1, sym_sym_lit, - STATE(2042), 1, + STATE(2153), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 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_POUNDC, - anon_sym_POUNDc, - ACTIONS(443), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(455), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2815), 2, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2099), 3, + ACTIONS(3538), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(709), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1609), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1539), 19, + STATE(1564), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(255), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -79374,85 +71587,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [89242] = 34, + [67635] = 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, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(524), 1, + anon_sym_COLON, + ACTIONS(526), 1, + anon_sym_COLON_COLON, + ACTIONS(528), 1, + anon_sym_DQUOTE, + ACTIONS(534), 1, + aux_sym_sym_lit_token1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(556), 1, anon_sym_cl, - ACTIONS(435), 1, + ACTIONS(783), 1, aux_sym_num_lit_token1, - ACTIONS(445), 1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(447), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(449), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(451), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(453), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(2083), 1, + ACTIONS(1442), 1, anon_sym_POUND, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, + ACTIONS(3546), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(2042), 1, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(51), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(443), 2, + ACTIONS(785), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(455), 2, + ACTIONS(797), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2817), 2, + ACTIONS(3542), 2, sym__ws, sym_comment, - ACTIONS(2095), 3, + ACTIONS(3544), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(711), 3, + STATE(735), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1609), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1540), 19, + STATE(2036), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -79472,85 +71687,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [89374] = 34, + [67770] = 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(775), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(809), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(1545), 1, - anon_sym_POUND, - STATE(1384), 1, + ACTIONS(3550), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(1817), 1, + STATE(1563), 1, sym_sym_lit, - STATE(2037), 1, + STATE(2153), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2819), 3, + ACTIONS(3548), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1330), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1988), 19, + STATE(258), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -79570,7 +71787,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [89506] = 34, + [67905] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -79579,76 +71796,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, + ACTIONS(61), 1, + anon_sym_POUND, + ACTIONS(65), 1, aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(67), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(69), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(71), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(73), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(77), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(79), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(81), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(87), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(89), 1, anon_sym_COMMA, - ACTIONS(809), 1, + ACTIONS(775), 1, + anon_sym_LPAREN, + ACTIONS(779), 1, anon_sym_cl, - ACTIONS(1545), 1, - anon_sym_POUND, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, + ACTIONS(3556), 1, + sym_self_referential_reader_macro, + STATE(862), 1, sym_sym_lit, - STATE(2037), 1, + STATE(870), 1, + sym__bare_set_lit, + STATE(2156), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, + ACTIONS(75), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(93), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, + ACTIONS(97), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(99), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2821), 2, + ACTIONS(3552), 2, sym__ws, sym_comment, - ACTIONS(2823), 3, + ACTIONS(3554), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(772), 3, + STATE(752), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1330), 3, + STATE(863), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1985), 19, + STATE(826), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -79668,85 +71887,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [89638] = 34, + [68040] = 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, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(524), 1, + anon_sym_COLON, + ACTIONS(526), 1, + anon_sym_COLON_COLON, + ACTIONS(528), 1, + anon_sym_DQUOTE, + ACTIONS(534), 1, + aux_sym_sym_lit_token1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(556), 1, anon_sym_cl, - ACTIONS(435), 1, + ACTIONS(783), 1, aux_sym_num_lit_token1, - ACTIONS(445), 1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(447), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(449), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(451), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(453), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(2083), 1, + ACTIONS(1442), 1, anon_sym_POUND, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, + ACTIONS(3562), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(2042), 1, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(51), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(443), 2, + ACTIONS(785), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(455), 2, + ACTIONS(797), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2825), 2, + ACTIONS(3558), 2, sym__ws, sym_comment, - ACTIONS(2089), 3, + ACTIONS(3560), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(712), 3, + STATE(740), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1609), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1544), 19, + STATE(2039), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -79766,85 +71987,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [89770] = 34, + [68175] = 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(435), 1, + ACTIONS(61), 1, + anon_sym_POUND, + ACTIONS(65), 1, aux_sym_num_lit_token1, - ACTIONS(445), 1, + ACTIONS(67), 1, + anon_sym_COLON, + ACTIONS(69), 1, + anon_sym_COLON_COLON, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + aux_sym_sym_lit_token1, + ACTIONS(77), 1, + anon_sym_POUND_QMARK, + ACTIONS(79), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(81), 1, anon_sym_POUND_SQUOTE, - ACTIONS(447), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(449), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(451), 1, + ACTIONS(87), 1, anon_sym_COMMA_AT, - ACTIONS(453), 1, + ACTIONS(89), 1, anon_sym_COMMA, - ACTIONS(2083), 1, - anon_sym_POUND, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, + ACTIONS(775), 1, + anon_sym_LPAREN, + ACTIONS(779), 1, + anon_sym_cl, + ACTIONS(3568), 1, + sym_self_referential_reader_macro, + STATE(862), 1, sym_sym_lit, - STATE(2042), 1, + STATE(870), 1, + sym__bare_set_lit, + STATE(2156), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(51), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(55), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(443), 2, + ACTIONS(75), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(455), 2, + ACTIONS(93), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(97), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2827), 2, + ACTIONS(99), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(3564), 2, sym__ws, sym_comment, - ACTIONS(2057), 3, + ACTIONS(3566), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(713), 3, + STATE(751), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1609), 3, + STATE(863), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1555), 19, + STATE(821), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -79864,85 +72087,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [89902] = 34, + [68310] = 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(435), 1, + ACTIONS(590), 1, aux_sym_num_lit_token1, - ACTIONS(445), 1, + ACTIONS(857), 1, + anon_sym_COLON, + ACTIONS(859), 1, + anon_sym_COLON_COLON, + ACTIONS(861), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, + aux_sym_sym_lit_token1, + ACTIONS(869), 1, + anon_sym_LPAREN, + ACTIONS(875), 1, + anon_sym_POUND_QMARK, + ACTIONS(955), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(957), 1, anon_sym_POUND_SQUOTE, - ACTIONS(447), 1, + ACTIONS(959), 1, anon_sym_SQUOTE, - ACTIONS(449), 1, + ACTIONS(961), 1, anon_sym_BQUOTE, - ACTIONS(451), 1, + ACTIONS(963), 1, anon_sym_COMMA_AT, - ACTIONS(453), 1, + ACTIONS(965), 1, anon_sym_COMMA, - ACTIONS(2083), 1, + ACTIONS(967), 1, + anon_sym_cl, + ACTIONS(1778), 1, + sym_self_referential_reader_macro, + ACTIONS(3158), 1, anon_sym_POUND, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2042), 1, + STATE(2133), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(51), 2, + STATE(2313), 1, + sym__bare_set_lit, + STATE(2351), 1, + sym_sym_lit, + ACTIONS(608), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(626), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(632), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(443), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(455), 2, + ACTIONS(969), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2829), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2053), 3, + ACTIONS(1776), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(714), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1609), 3, + STATE(2315), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1558), 19, + STATE(2247), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -79962,7 +72187,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [90034] = 34, + [68445] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -79971,76 +72196,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, + ACTIONS(907), 1, aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(909), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(911), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(913), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(919), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(921), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(927), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(929), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(931), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(933), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(935), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(937), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(939), 1, anon_sym_COMMA, - ACTIONS(809), 1, + ACTIONS(941), 1, anon_sym_cl, - ACTIONS(1545), 1, + ACTIONS(1998), 1, anon_sym_POUND, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, + ACTIONS(3572), 1, + sym_self_referential_reader_macro, + STATE(1165), 1, sym_sym_lit, - STATE(2037), 1, + STATE(1176), 1, + sym__bare_set_lit, + STATE(2152), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, + ACTIONS(925), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(943), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, + ACTIONS(947), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(949), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2831), 3, + ACTIONS(3570), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1330), 3, + STATE(1175), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1937), 19, + STATE(1263), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -80060,7 +72287,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [90166] = 34, + [68580] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -80069,76 +72296,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, - aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(809), 1, - anon_sym_cl, - ACTIONS(1545), 1, + ACTIONS(1442), 1, anon_sym_POUND, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, + ACTIONS(3576), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(2037), 1, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2833), 2, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2835), 3, + ACTIONS(3574), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(776), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1330), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1983), 19, + STATE(1959), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -80158,7 +72387,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [90298] = 34, + [68715] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -80167,76 +72396,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(777), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(809), 1, + ACTIONS(556), 1, anon_sym_cl, - ACTIONS(873), 1, + ACTIONS(783), 1, aux_sym_num_lit_token1, - ACTIONS(877), 1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(879), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(881), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(883), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(885), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(1015), 1, + ACTIONS(1442), 1, anon_sym_POUND, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, + ACTIONS(3582), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(2048), 1, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(811), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(815), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(875), 2, + ACTIONS(785), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(887), 2, + ACTIONS(797), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1353), 2, + ACTIONS(3578), 2, sym__ws, sym_comment, - ACTIONS(2383), 3, + ACTIONS(3580), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(746), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1349), 19, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2041), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -80256,85 +72487,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [90430] = 34, + [68850] = 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(907), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(909), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(911), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(913), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(919), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(921), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(927), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(929), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(931), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(933), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(935), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(937), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(939), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(941), 1, anon_sym_cl, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, + ACTIONS(1998), 1, + anon_sym_POUND, + ACTIONS(3586), 1, + sym_self_referential_reader_macro, + STATE(1165), 1, sym_sym_lit, - STATE(2052), 1, + STATE(1176), 1, + sym__bare_set_lit, + STATE(2152), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(925), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(943), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(53), 2, + ACTIONS(947), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(55), 2, + ACTIONS(949), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2837), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2839), 3, + ACTIONS(3584), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(671), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1609), 3, + STATE(1175), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(643), 19, + STATE(1564), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1268), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -80354,7 +72587,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [90562] = 34, + [68985] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -80363,76 +72596,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(617), 1, + ACTIONS(907), 1, aux_sym_num_lit_token1, - ACTIONS(821), 1, + ACTIONS(909), 1, anon_sym_COLON, - ACTIONS(823), 1, + ACTIONS(911), 1, anon_sym_COLON_COLON, - ACTIONS(825), 1, + ACTIONS(913), 1, anon_sym_DQUOTE, - ACTIONS(827), 1, + ACTIONS(919), 1, aux_sym_sym_lit_token1, - ACTIONS(829), 1, + ACTIONS(921), 1, anon_sym_LPAREN, - ACTIONS(831), 1, + ACTIONS(927), 1, anon_sym_POUND_QMARK, - ACTIONS(833), 1, + ACTIONS(929), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(835), 1, + ACTIONS(931), 1, anon_sym_POUND_SQUOTE, - ACTIONS(837), 1, + ACTIONS(933), 1, anon_sym_SQUOTE, - ACTIONS(839), 1, + ACTIONS(935), 1, anon_sym_BQUOTE, - ACTIONS(841), 1, + ACTIONS(937), 1, anon_sym_COMMA_AT, - ACTIONS(843), 1, + ACTIONS(939), 1, anon_sym_COMMA, - ACTIONS(845), 1, + ACTIONS(941), 1, anon_sym_cl, - ACTIONS(1373), 1, + ACTIONS(1998), 1, anon_sym_POUND, - STATE(2056), 1, + ACTIONS(3592), 1, + sym_self_referential_reader_macro, + STATE(1165), 1, + sym_sym_lit, + STATE(1176), 1, + sym__bare_set_lit, + STATE(2152), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2333), 1, - sym__bare_set_lit, - STATE(2404), 1, - sym_sym_lit, - ACTIONS(635), 2, + ACTIONS(925), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(653), 2, + ACTIONS(943), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(657), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(847), 2, + ACTIONS(947), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1353), 2, + ACTIONS(949), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(3588), 2, sym__ws, sym_comment, - ACTIONS(2091), 3, + ACTIONS(3590), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1657), 3, + STATE(682), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2332), 3, + STATE(1175), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2258), 19, + STATE(1269), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -80452,7 +72687,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [90694] = 34, + [69120] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -80461,76 +72696,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, - aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(809), 1, - anon_sym_cl, - ACTIONS(1545), 1, + ACTIONS(1442), 1, anon_sym_POUND, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, + ACTIONS(3596), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(2037), 1, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2841), 3, + ACTIONS(3594), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1984), 19, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2042), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -80550,7 +72787,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [90826] = 34, + [69255] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -80559,76 +72796,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(777), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(809), 1, + ACTIONS(556), 1, anon_sym_cl, - ACTIONS(873), 1, + ACTIONS(783), 1, aux_sym_num_lit_token1, - ACTIONS(877), 1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(879), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(881), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(883), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(885), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(1015), 1, + ACTIONS(1442), 1, anon_sym_POUND, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, + ACTIONS(3602), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(2048), 1, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(811), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(815), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(875), 2, + ACTIONS(785), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(887), 2, + ACTIONS(797), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2843), 2, + ACTIONS(3598), 2, sym__ws, sym_comment, - ACTIONS(2381), 3, + ACTIONS(3600), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(780), 3, + STATE(749), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1330), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1348), 19, + STATE(2043), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -80648,7 +72887,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [90958] = 34, + [69390] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -80657,76 +72896,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, + ACTIONS(907), 1, aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(909), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(911), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(913), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(919), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(921), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(927), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(929), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(931), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(933), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(935), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(937), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(939), 1, anon_sym_COMMA, - ACTIONS(809), 1, + ACTIONS(941), 1, anon_sym_cl, - ACTIONS(1545), 1, + ACTIONS(1998), 1, anon_sym_POUND, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, + ACTIONS(3606), 1, + sym_self_referential_reader_macro, + STATE(1165), 1, sym_sym_lit, - STATE(2037), 1, + STATE(1176), 1, + sym__bare_set_lit, + STATE(2152), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, + ACTIONS(925), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(943), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, + ACTIONS(947), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(949), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2845), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2847), 3, + ACTIONS(3604), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(781), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1330), 3, + STATE(1175), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1866), 19, + STATE(1564), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1270), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -80746,7 +72987,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [91090] = 34, + [69525] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -80755,76 +72996,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, + ACTIONS(907), 1, aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(909), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(911), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(913), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(919), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(921), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(927), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(929), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(931), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(933), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(935), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(937), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(939), 1, anon_sym_COMMA, - ACTIONS(809), 1, + ACTIONS(941), 1, anon_sym_cl, - ACTIONS(1545), 1, + ACTIONS(1998), 1, anon_sym_POUND, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, + ACTIONS(3612), 1, + sym_self_referential_reader_macro, + STATE(1165), 1, sym_sym_lit, - STATE(2037), 1, + STATE(1176), 1, + sym__bare_set_lit, + STATE(2152), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, + ACTIONS(925), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(943), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, + ACTIONS(947), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(949), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2849), 2, + ACTIONS(3608), 2, sym__ws, sym_comment, - ACTIONS(2851), 3, + ACTIONS(3610), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(783), 3, + STATE(684), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1330), 3, + STATE(1175), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1965), 19, + STATE(1271), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -80844,7 +73087,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [91222] = 34, + [69660] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -80853,76 +73096,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(617), 1, + ACTIONS(907), 1, aux_sym_num_lit_token1, - ACTIONS(821), 1, + ACTIONS(909), 1, anon_sym_COLON, - ACTIONS(823), 1, + ACTIONS(911), 1, anon_sym_COLON_COLON, - ACTIONS(825), 1, + ACTIONS(913), 1, anon_sym_DQUOTE, - ACTIONS(827), 1, + ACTIONS(919), 1, aux_sym_sym_lit_token1, - ACTIONS(829), 1, + ACTIONS(921), 1, anon_sym_LPAREN, - ACTIONS(831), 1, + ACTIONS(927), 1, anon_sym_POUND_QMARK, - ACTIONS(833), 1, + ACTIONS(929), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(835), 1, + ACTIONS(931), 1, anon_sym_POUND_SQUOTE, - ACTIONS(837), 1, + ACTIONS(933), 1, anon_sym_SQUOTE, - ACTIONS(839), 1, + ACTIONS(935), 1, anon_sym_BQUOTE, - ACTIONS(841), 1, + ACTIONS(937), 1, anon_sym_COMMA_AT, - ACTIONS(843), 1, + ACTIONS(939), 1, anon_sym_COMMA, - ACTIONS(845), 1, + ACTIONS(941), 1, anon_sym_cl, - ACTIONS(1373), 1, + ACTIONS(1998), 1, anon_sym_POUND, - STATE(2056), 1, + ACTIONS(3616), 1, + sym_self_referential_reader_macro, + STATE(1165), 1, + sym_sym_lit, + STATE(1176), 1, + sym__bare_set_lit, + STATE(2152), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2333), 1, - sym__bare_set_lit, - STATE(2404), 1, - sym_sym_lit, - ACTIONS(635), 2, + ACTIONS(925), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(653), 2, + ACTIONS(943), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(657), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(847), 2, + ACTIONS(947), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1353), 2, + ACTIONS(949), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2059), 3, + ACTIONS(3614), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1657), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2332), 3, + STATE(1175), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2257), 19, + STATE(1564), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1279), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -80942,7 +73187,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [91354] = 34, + [69795] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -80951,76 +73196,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(777), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(809), 1, + ACTIONS(556), 1, anon_sym_cl, - ACTIONS(873), 1, + ACTIONS(783), 1, aux_sym_num_lit_token1, - ACTIONS(877), 1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(879), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(881), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(883), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(885), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(1015), 1, + ACTIONS(1442), 1, anon_sym_POUND, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, + ACTIONS(3620), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(2048), 1, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(811), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(815), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(875), 2, + ACTIONS(785), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(887), 2, + ACTIONS(797), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1353), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2359), 3, + ACTIONS(3618), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1346), 19, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2044), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -81040,7 +73287,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [91486] = 34, + [69930] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -81049,76 +73296,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(617), 1, + ACTIONS(907), 1, aux_sym_num_lit_token1, - ACTIONS(821), 1, + ACTIONS(909), 1, anon_sym_COLON, - ACTIONS(823), 1, + ACTIONS(911), 1, anon_sym_COLON_COLON, - ACTIONS(825), 1, + ACTIONS(913), 1, anon_sym_DQUOTE, - ACTIONS(827), 1, + ACTIONS(919), 1, aux_sym_sym_lit_token1, - ACTIONS(829), 1, + ACTIONS(921), 1, anon_sym_LPAREN, - ACTIONS(831), 1, + ACTIONS(927), 1, anon_sym_POUND_QMARK, - ACTIONS(833), 1, + ACTIONS(929), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(835), 1, + ACTIONS(931), 1, anon_sym_POUND_SQUOTE, - ACTIONS(837), 1, + ACTIONS(933), 1, anon_sym_SQUOTE, - ACTIONS(839), 1, + ACTIONS(935), 1, anon_sym_BQUOTE, - ACTIONS(841), 1, + ACTIONS(937), 1, anon_sym_COMMA_AT, - ACTIONS(843), 1, + ACTIONS(939), 1, anon_sym_COMMA, - ACTIONS(845), 1, + ACTIONS(941), 1, anon_sym_cl, - ACTIONS(1373), 1, + ACTIONS(1998), 1, anon_sym_POUND, - STATE(2056), 1, + ACTIONS(3624), 1, + sym_self_referential_reader_macro, + STATE(1165), 1, + sym_sym_lit, + STATE(1176), 1, + sym__bare_set_lit, + STATE(2152), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2333), 1, - sym__bare_set_lit, - STATE(2404), 1, - sym_sym_lit, - ACTIONS(635), 2, + ACTIONS(925), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(653), 2, + ACTIONS(943), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(657), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(847), 2, + ACTIONS(947), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2853), 2, + ACTIONS(949), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(1787), 3, + ACTIONS(3622), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(727), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2332), 3, + STATE(1175), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2310), 19, + STATE(1564), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1280), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -81138,7 +73387,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [91618] = 34, + [70065] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -81147,76 +73396,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, - aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(809), 1, - anon_sym_cl, - ACTIONS(1545), 1, + ACTIONS(1442), 1, anon_sym_POUND, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, + ACTIONS(3628), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(2037), 1, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2855), 3, + ACTIONS(3626), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1964), 19, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2049), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -81236,7 +73487,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [91750] = 34, + [70200] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -81245,76 +73496,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, - aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(809), 1, - anon_sym_cl, - ACTIONS(1545), 1, + ACTIONS(1442), 1, anon_sym_POUND, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, + ACTIONS(3634), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(2037), 1, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2857), 2, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(3630), 2, sym__ws, sym_comment, - ACTIONS(2365), 3, + ACTIONS(3632), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(658), 3, + STATE(754), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1330), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1836), 19, + STATE(2050), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -81334,7 +73587,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [91882] = 34, + [70335] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -81343,76 +73596,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, + ACTIONS(590), 1, aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(857), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(859), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(861), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(867), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(869), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(875), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(955), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(957), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(959), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(961), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(963), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(965), 1, anon_sym_COMMA, - ACTIONS(809), 1, + ACTIONS(967), 1, anon_sym_cl, - ACTIONS(1545), 1, + ACTIONS(3158), 1, anon_sym_POUND, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, - sym_sym_lit, - STATE(2037), 1, + ACTIONS(3420), 1, + sym_self_referential_reader_macro, + STATE(2133), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, + STATE(2313), 1, + sym__bare_set_lit, + STATE(2351), 1, + sym_sym_lit, + ACTIONS(608), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(626), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(632), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2859), 2, + ACTIONS(969), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(3636), 2, sym__ws, sym_comment, - ACTIONS(2861), 3, + ACTIONS(3418), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(788), 3, + STATE(756), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1330), 3, + STATE(2315), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1963), 19, + STATE(2158), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -81432,7 +73687,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [92014] = 34, + [70470] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -81441,76 +73696,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(617), 1, + ACTIONS(590), 1, aux_sym_num_lit_token1, - ACTIONS(821), 1, + ACTIONS(857), 1, anon_sym_COLON, - ACTIONS(823), 1, + ACTIONS(859), 1, anon_sym_COLON_COLON, - ACTIONS(825), 1, + ACTIONS(861), 1, anon_sym_DQUOTE, - ACTIONS(827), 1, + ACTIONS(867), 1, aux_sym_sym_lit_token1, - ACTIONS(829), 1, + ACTIONS(869), 1, anon_sym_LPAREN, - ACTIONS(831), 1, + ACTIONS(875), 1, anon_sym_POUND_QMARK, - ACTIONS(833), 1, + ACTIONS(955), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(835), 1, + ACTIONS(957), 1, anon_sym_POUND_SQUOTE, - ACTIONS(837), 1, + ACTIONS(959), 1, anon_sym_SQUOTE, - ACTIONS(839), 1, + ACTIONS(961), 1, anon_sym_BQUOTE, - ACTIONS(841), 1, + ACTIONS(963), 1, anon_sym_COMMA_AT, - ACTIONS(843), 1, + ACTIONS(965), 1, anon_sym_COMMA, - ACTIONS(845), 1, + ACTIONS(967), 1, anon_sym_cl, - ACTIONS(1373), 1, + ACTIONS(2052), 1, + sym_self_referential_reader_macro, + ACTIONS(3158), 1, anon_sym_POUND, - STATE(2056), 1, + STATE(2133), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2333), 1, + STATE(2313), 1, sym__bare_set_lit, - STATE(2404), 1, + STATE(2351), 1, sym_sym_lit, - ACTIONS(635), 2, + ACTIONS(608), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(653), 2, + ACTIONS(626), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(657), 2, + ACTIONS(632), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(847), 2, + ACTIONS(969), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1353), 2, + ACTIONS(3638), 2, sym__ws, sym_comment, - ACTIONS(1783), 3, + ACTIONS(2050), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1657), 3, + STATE(647), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2332), 3, + STATE(2315), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2252), 19, + STATE(2248), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -81530,7 +73787,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [92146] = 34, + [70605] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -81539,76 +73796,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(617), 1, + ACTIONS(590), 1, aux_sym_num_lit_token1, - ACTIONS(821), 1, + ACTIONS(857), 1, anon_sym_COLON, - ACTIONS(823), 1, + ACTIONS(859), 1, anon_sym_COLON_COLON, - ACTIONS(825), 1, + ACTIONS(861), 1, anon_sym_DQUOTE, - ACTIONS(827), 1, + ACTIONS(867), 1, aux_sym_sym_lit_token1, - ACTIONS(829), 1, + ACTIONS(869), 1, anon_sym_LPAREN, - ACTIONS(831), 1, + ACTIONS(875), 1, anon_sym_POUND_QMARK, - ACTIONS(833), 1, + ACTIONS(955), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(835), 1, + ACTIONS(957), 1, anon_sym_POUND_SQUOTE, - ACTIONS(837), 1, + ACTIONS(959), 1, anon_sym_SQUOTE, - ACTIONS(839), 1, + ACTIONS(961), 1, anon_sym_BQUOTE, - ACTIONS(841), 1, + ACTIONS(963), 1, anon_sym_COMMA_AT, - ACTIONS(843), 1, + ACTIONS(965), 1, anon_sym_COMMA, - ACTIONS(845), 1, + ACTIONS(967), 1, anon_sym_cl, - ACTIONS(1373), 1, + ACTIONS(2058), 1, + sym_self_referential_reader_macro, + ACTIONS(3158), 1, anon_sym_POUND, - STATE(2056), 1, + STATE(2133), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2333), 1, + STATE(2313), 1, sym__bare_set_lit, - STATE(2404), 1, + STATE(2351), 1, sym_sym_lit, - ACTIONS(635), 2, + ACTIONS(608), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(653), 2, + ACTIONS(626), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(657), 2, + ACTIONS(632), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(847), 2, + ACTIONS(969), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2863), 2, + ACTIONS(3640), 2, sym__ws, sym_comment, - ACTIONS(1979), 3, + ACTIONS(2056), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(732), 3, + STATE(651), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2332), 3, + STATE(2315), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2251), 19, + STATE(2239), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -81628,7 +73887,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [92278] = 34, + [70740] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -81637,76 +73896,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, - aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(809), 1, - anon_sym_cl, - ACTIONS(1545), 1, + ACTIONS(1442), 1, anon_sym_POUND, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, + ACTIONS(3644), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(2037), 1, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2865), 3, + ACTIONS(3642), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1961), 19, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2052), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -81726,7 +73987,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [92410] = 34, + [70875] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -81735,76 +73996,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(777), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(809), 1, + ACTIONS(556), 1, anon_sym_cl, - ACTIONS(873), 1, + ACTIONS(783), 1, aux_sym_num_lit_token1, - ACTIONS(877), 1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(879), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(881), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(883), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(885), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(1015), 1, + ACTIONS(1442), 1, anon_sym_POUND, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, + ACTIONS(3650), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(2048), 1, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(811), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(815), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(875), 2, + ACTIONS(785), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(887), 2, + ACTIONS(797), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1353), 2, + ACTIONS(3646), 2, sym__ws, sym_comment, - ACTIONS(2335), 3, + ACTIONS(3648), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(758), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1345), 19, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2053), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -81824,7 +74087,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [92542] = 34, + [71010] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -81833,76 +74096,178 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, + ACTIONS(590), 1, aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(857), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(859), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(861), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(867), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(869), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(875), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(955), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(957), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(959), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(961), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(963), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(965), 1, anon_sym_COMMA, - ACTIONS(809), 1, + ACTIONS(967), 1, anon_sym_cl, - ACTIONS(1545), 1, + ACTIONS(2070), 1, + sym_self_referential_reader_macro, + ACTIONS(3158), 1, anon_sym_POUND, - STATE(1384), 1, + STATE(2133), 1, + aux_sym_list_lit_repeat1, + STATE(2202), 1, + sym_old_meta_lit, + STATE(2206), 1, + sym_meta_lit, + STATE(2237), 1, + sym__metadata_lit, + STATE(2313), 1, sym__bare_set_lit, - STATE(1817), 1, + STATE(2351), 1, + sym_sym_lit, + ACTIONS(608), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(626), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(632), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(969), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1440), 2, + sym__ws, + sym_comment, + ACTIONS(2068), 3, + anon_sym_DOT, + sym_nil_lit, + sym_fancy_literal, + STATE(1564), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(2315), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2250), 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, + [71145] = 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(61), 1, + anon_sym_POUND, + ACTIONS(65), 1, + aux_sym_num_lit_token1, + ACTIONS(67), 1, + anon_sym_COLON, + ACTIONS(69), 1, + anon_sym_COLON_COLON, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + aux_sym_sym_lit_token1, + ACTIONS(77), 1, + anon_sym_POUND_QMARK, + ACTIONS(79), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(81), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(83), 1, + anon_sym_SQUOTE, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(87), 1, + anon_sym_COMMA_AT, + ACTIONS(89), 1, + anon_sym_COMMA, + ACTIONS(775), 1, + anon_sym_LPAREN, + ACTIONS(779), 1, + anon_sym_cl, + ACTIONS(3654), 1, + sym_self_referential_reader_macro, + STATE(862), 1, sym_sym_lit, - STATE(2037), 1, + STATE(870), 1, + sym__bare_set_lit, + STATE(2156), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, + ACTIONS(75), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(93), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, + ACTIONS(97), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(99), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2867), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2869), 3, + ACTIONS(3652), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(793), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1330), 3, + STATE(863), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1959), 19, + STATE(1564), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(859), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -81922,7 +74287,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [92674] = 34, + [71280] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -81931,76 +74296,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(617), 1, + ACTIONS(590), 1, aux_sym_num_lit_token1, - ACTIONS(821), 1, + ACTIONS(857), 1, anon_sym_COLON, - ACTIONS(823), 1, + ACTIONS(859), 1, anon_sym_COLON_COLON, - ACTIONS(825), 1, + ACTIONS(861), 1, anon_sym_DQUOTE, - ACTIONS(827), 1, + ACTIONS(867), 1, aux_sym_sym_lit_token1, - ACTIONS(829), 1, + ACTIONS(869), 1, anon_sym_LPAREN, - ACTIONS(831), 1, + ACTIONS(875), 1, anon_sym_POUND_QMARK, - ACTIONS(833), 1, + ACTIONS(955), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(835), 1, + ACTIONS(957), 1, anon_sym_POUND_SQUOTE, - ACTIONS(837), 1, + ACTIONS(959), 1, anon_sym_SQUOTE, - ACTIONS(839), 1, + ACTIONS(961), 1, anon_sym_BQUOTE, - ACTIONS(841), 1, + ACTIONS(963), 1, anon_sym_COMMA_AT, - ACTIONS(843), 1, + ACTIONS(965), 1, anon_sym_COMMA, - ACTIONS(845), 1, + ACTIONS(967), 1, anon_sym_cl, - ACTIONS(1373), 1, + ACTIONS(2080), 1, + sym_self_referential_reader_macro, + ACTIONS(3158), 1, anon_sym_POUND, - STATE(2056), 1, + STATE(2133), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2333), 1, + STATE(2313), 1, sym__bare_set_lit, - STATE(2404), 1, + STATE(2351), 1, sym_sym_lit, - ACTIONS(635), 2, + ACTIONS(608), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(653), 2, + ACTIONS(626), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(657), 2, + ACTIONS(632), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(847), 2, + ACTIONS(969), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1353), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(1571), 3, + ACTIONS(2078), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2332), 3, + STATE(2315), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2250), 19, + STATE(2251), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -82020,7 +74387,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [92806] = 34, + [71415] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -82029,76 +74396,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(777), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(809), 1, + ACTIONS(556), 1, anon_sym_cl, - ACTIONS(873), 1, + ACTIONS(783), 1, aux_sym_num_lit_token1, - ACTIONS(877), 1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(879), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(881), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(883), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(885), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(1015), 1, + ACTIONS(1442), 1, anon_sym_POUND, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, + ACTIONS(3658), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(2048), 1, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(811), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(815), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(875), 2, + ACTIONS(785), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(887), 2, + ACTIONS(797), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1353), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2323), 3, + ACTIONS(3656), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1344), 19, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2061), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -82118,7 +74487,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [92938] = 34, + [71550] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -82127,76 +74496,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(617), 1, + ACTIONS(590), 1, aux_sym_num_lit_token1, - ACTIONS(821), 1, + ACTIONS(857), 1, anon_sym_COLON, - ACTIONS(823), 1, + ACTIONS(859), 1, anon_sym_COLON_COLON, - ACTIONS(825), 1, + ACTIONS(861), 1, anon_sym_DQUOTE, - ACTIONS(827), 1, + ACTIONS(867), 1, aux_sym_sym_lit_token1, - ACTIONS(829), 1, + ACTIONS(869), 1, anon_sym_LPAREN, - ACTIONS(831), 1, + ACTIONS(875), 1, anon_sym_POUND_QMARK, - ACTIONS(833), 1, + ACTIONS(955), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(835), 1, + ACTIONS(957), 1, anon_sym_POUND_SQUOTE, - ACTIONS(837), 1, + ACTIONS(959), 1, anon_sym_SQUOTE, - ACTIONS(839), 1, + ACTIONS(961), 1, anon_sym_BQUOTE, - ACTIONS(841), 1, + ACTIONS(963), 1, anon_sym_COMMA_AT, - ACTIONS(843), 1, + ACTIONS(965), 1, anon_sym_COMMA, - ACTIONS(845), 1, + ACTIONS(967), 1, anon_sym_cl, - ACTIONS(1373), 1, + ACTIONS(2094), 1, + sym_self_referential_reader_macro, + ACTIONS(3158), 1, anon_sym_POUND, - STATE(2056), 1, + STATE(2133), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2333), 1, + STATE(2313), 1, sym__bare_set_lit, - STATE(2404), 1, + STATE(2351), 1, sym_sym_lit, - ACTIONS(635), 2, + ACTIONS(608), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(653), 2, + ACTIONS(626), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(657), 2, + ACTIONS(632), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(847), 2, + ACTIONS(969), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1353), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(1885), 3, + ACTIONS(2092), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2332), 3, + STATE(2315), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2248), 19, + STATE(2252), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -82216,7 +74587,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [93070] = 34, + [71685] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -82225,76 +74596,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, - aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(809), 1, - anon_sym_cl, - ACTIONS(1545), 1, + ACTIONS(1442), 1, anon_sym_POUND, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, + ACTIONS(3664), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(2037), 1, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(3660), 2, sym__ws, sym_comment, - ACTIONS(2871), 3, + ACTIONS(3662), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(763), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1958), 19, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2055), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -82314,7 +74687,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [93202] = 34, + [71820] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -82353,17 +74726,19 @@ static uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - STATE(1608), 1, + ACTIONS(3670), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(1610), 1, + STATE(1563), 1, sym_sym_lit, - STATE(2052), 1, + STATE(2153), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -82371,28 +74746,28 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(53), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(55), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2873), 2, + ACTIONS(3666), 2, sym__ws, sym_comment, - ACTIONS(2875), 3, + ACTIONS(3668), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(782), 3, + STATE(705), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1609), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(426), 19, + STATE(721), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -82412,7 +74787,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [93334] = 34, + [71955] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -82421,76 +74796,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(617), 1, + ACTIONS(590), 1, aux_sym_num_lit_token1, - ACTIONS(821), 1, + ACTIONS(857), 1, anon_sym_COLON, - ACTIONS(823), 1, + ACTIONS(859), 1, anon_sym_COLON_COLON, - ACTIONS(825), 1, + ACTIONS(861), 1, anon_sym_DQUOTE, - ACTIONS(827), 1, + ACTIONS(867), 1, aux_sym_sym_lit_token1, - ACTIONS(829), 1, + ACTIONS(869), 1, anon_sym_LPAREN, - ACTIONS(831), 1, + ACTIONS(875), 1, anon_sym_POUND_QMARK, - ACTIONS(833), 1, + ACTIONS(955), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(835), 1, + ACTIONS(957), 1, anon_sym_POUND_SQUOTE, - ACTIONS(837), 1, + ACTIONS(959), 1, anon_sym_SQUOTE, - ACTIONS(839), 1, + ACTIONS(961), 1, anon_sym_BQUOTE, - ACTIONS(841), 1, + ACTIONS(963), 1, anon_sym_COMMA_AT, - ACTIONS(843), 1, + ACTIONS(965), 1, anon_sym_COMMA, - ACTIONS(845), 1, + ACTIONS(967), 1, anon_sym_cl, - ACTIONS(1373), 1, + ACTIONS(2118), 1, + sym_self_referential_reader_macro, + ACTIONS(3158), 1, anon_sym_POUND, - STATE(2056), 1, + STATE(2133), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2333), 1, + STATE(2313), 1, sym__bare_set_lit, - STATE(2404), 1, + STATE(2351), 1, sym_sym_lit, - ACTIONS(635), 2, + ACTIONS(608), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(653), 2, + ACTIONS(626), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(657), 2, + ACTIONS(632), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(847), 2, + ACTIONS(969), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2877), 2, + ACTIONS(3672), 2, sym__ws, sym_comment, - ACTIONS(1937), 3, + ACTIONS(2116), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(738), 3, + STATE(672), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2332), 3, + STATE(2315), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2247), 19, + STATE(2255), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -82510,7 +74887,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [93466] = 34, + [72090] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -82519,76 +74896,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, - aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(809), 1, - anon_sym_cl, - ACTIONS(1545), 1, + ACTIONS(1442), 1, anon_sym_POUND, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, + ACTIONS(3676), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(2037), 1, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2879), 3, + ACTIONS(3674), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1957), 19, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2056), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -82608,7 +74987,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [93598] = 34, + [72225] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -82617,76 +74996,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, + ACTIONS(590), 1, aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(857), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(859), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(861), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(867), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(869), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(875), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(955), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(957), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(959), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(961), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(963), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(965), 1, anon_sym_COMMA, - ACTIONS(809), 1, + ACTIONS(967), 1, anon_sym_cl, - ACTIONS(1545), 1, + ACTIONS(2122), 1, + sym_self_referential_reader_macro, + ACTIONS(3158), 1, anon_sym_POUND, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, - sym_sym_lit, - STATE(2037), 1, + STATE(2133), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, + STATE(2313), 1, + sym__bare_set_lit, + STATE(2351), 1, + sym_sym_lit, + ACTIONS(608), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(626), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(632), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2881), 2, + ACTIONS(969), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2883), 3, + ACTIONS(2120), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(799), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1330), 3, + STATE(2315), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1956), 19, + STATE(2256), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -82706,7 +75087,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [93730] = 34, + [72360] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -82715,76 +75096,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(617), 1, - aux_sym_num_lit_token1, - ACTIONS(821), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(823), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(825), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(827), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(829), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(831), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(833), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(835), 1, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(837), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(839), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(841), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(843), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(845), 1, - anon_sym_cl, - ACTIONS(1373), 1, + ACTIONS(1442), 1, anon_sym_POUND, - STATE(2056), 1, + ACTIONS(3680), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, + sym_sym_lit, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2333), 1, - sym__bare_set_lit, - STATE(2404), 1, - sym_sym_lit, - ACTIONS(635), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(653), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(657), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(847), 2, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2885), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(1941), 3, + ACTIONS(3678), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(743), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2332), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2246), 19, + STATE(2057), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -82804,7 +75187,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [93862] = 34, + [72495] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -82813,76 +75196,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(617), 1, - aux_sym_num_lit_token1, - ACTIONS(821), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(823), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(825), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(827), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(829), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(831), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(833), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(835), 1, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(837), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(839), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(841), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(843), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(845), 1, - anon_sym_cl, - ACTIONS(1373), 1, + ACTIONS(1442), 1, anon_sym_POUND, - STATE(2056), 1, + ACTIONS(3686), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, + sym_sym_lit, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2333), 1, - sym__bare_set_lit, - STATE(2404), 1, - sym_sym_lit, - ACTIONS(635), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(653), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(657), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(847), 2, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1353), 2, + ACTIONS(3682), 2, sym__ws, sym_comment, - ACTIONS(1951), 3, + ACTIONS(3684), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1657), 3, + STATE(767), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2332), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2245), 19, + STATE(2058), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -82902,7 +75287,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [93994] = 34, + [72630] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -82911,76 +75296,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(617), 1, + ACTIONS(61), 1, + anon_sym_POUND, + ACTIONS(65), 1, aux_sym_num_lit_token1, - ACTIONS(821), 1, + ACTIONS(67), 1, anon_sym_COLON, - ACTIONS(823), 1, + ACTIONS(69), 1, anon_sym_COLON_COLON, - ACTIONS(825), 1, + ACTIONS(71), 1, anon_sym_DQUOTE, - ACTIONS(827), 1, + ACTIONS(73), 1, aux_sym_sym_lit_token1, - ACTIONS(829), 1, - anon_sym_LPAREN, - ACTIONS(831), 1, + ACTIONS(77), 1, anon_sym_POUND_QMARK, - ACTIONS(833), 1, + ACTIONS(79), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(835), 1, + ACTIONS(81), 1, anon_sym_POUND_SQUOTE, - ACTIONS(837), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(839), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(841), 1, + ACTIONS(87), 1, anon_sym_COMMA_AT, - ACTIONS(843), 1, + ACTIONS(89), 1, anon_sym_COMMA, - ACTIONS(845), 1, + ACTIONS(775), 1, + anon_sym_LPAREN, + ACTIONS(779), 1, anon_sym_cl, - ACTIONS(1373), 1, - anon_sym_POUND, - STATE(2056), 1, + ACTIONS(3692), 1, + sym_self_referential_reader_macro, + STATE(862), 1, + sym_sym_lit, + STATE(870), 1, + sym__bare_set_lit, + STATE(2156), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2333), 1, - sym__bare_set_lit, - STATE(2404), 1, - sym_sym_lit, - ACTIONS(635), 2, + ACTIONS(75), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(653), 2, + ACTIONS(93), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(657), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(847), 2, + ACTIONS(97), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1353), 2, + ACTIONS(99), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(3688), 2, sym__ws, sym_comment, - ACTIONS(1959), 3, + ACTIONS(3690), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1657), 3, + STATE(347), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2332), 3, + STATE(863), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2244), 19, + STATE(851), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -83000,85 +75387,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [94126] = 34, + [72765] = 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(775), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(809), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(1545), 1, - anon_sym_POUND, - STATE(1384), 1, + ACTIONS(3696), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(1817), 1, + STATE(1563), 1, sym_sym_lit, - STATE(2037), 1, + STATE(2153), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2887), 3, + ACTIONS(3694), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1330), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1955), 19, + STATE(699), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -83098,85 +75487,187 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [94258] = 34, + [72900] = 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(775), 1, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(3702), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, + sym__bare_set_lit, + STATE(1563), 1, + sym_sym_lit, + STATE(2153), 1, + aux_sym_list_lit_repeat1, + STATE(2202), 1, + sym_old_meta_lit, + STATE(2206), 1, + sym_meta_lit, + STATE(2237), 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(3698), 2, + sym__ws, + sym_comment, + ACTIONS(3700), 3, + anon_sym_DOT, + sym_nil_lit, + sym_fancy_literal, + STATE(709), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1562), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(689), 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, + [73035] = 35, + ACTIONS(9), 1, + anon_sym_POUND_, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(809), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(1545), 1, - anon_sym_POUND, - STATE(1384), 1, + ACTIONS(3708), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(1817), 1, + STATE(1563), 1, sym_sym_lit, - STATE(2037), 1, + STATE(2153), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2889), 2, + ACTIONS(3704), 2, sym__ws, sym_comment, - ACTIONS(2891), 3, + ACTIONS(3706), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(802), 3, + STATE(710), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1330), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1954), 19, + STATE(688), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -83196,7 +75687,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [94390] = 34, + [73170] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -83205,76 +75696,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(617), 1, + ACTIONS(61), 1, + anon_sym_POUND, + ACTIONS(65), 1, aux_sym_num_lit_token1, - ACTIONS(821), 1, + ACTIONS(67), 1, anon_sym_COLON, - ACTIONS(823), 1, + ACTIONS(69), 1, anon_sym_COLON_COLON, - ACTIONS(825), 1, + ACTIONS(71), 1, anon_sym_DQUOTE, - ACTIONS(827), 1, + ACTIONS(73), 1, aux_sym_sym_lit_token1, - ACTIONS(829), 1, - anon_sym_LPAREN, - ACTIONS(831), 1, + ACTIONS(77), 1, anon_sym_POUND_QMARK, - ACTIONS(833), 1, + ACTIONS(79), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(835), 1, + ACTIONS(81), 1, anon_sym_POUND_SQUOTE, - ACTIONS(837), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(839), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(841), 1, + ACTIONS(87), 1, anon_sym_COMMA_AT, - ACTIONS(843), 1, + ACTIONS(89), 1, anon_sym_COMMA, - ACTIONS(845), 1, + ACTIONS(775), 1, + anon_sym_LPAREN, + ACTIONS(779), 1, anon_sym_cl, - ACTIONS(1373), 1, - anon_sym_POUND, - STATE(2056), 1, + ACTIONS(3714), 1, + sym_self_referential_reader_macro, + STATE(862), 1, + sym_sym_lit, + STATE(870), 1, + sym__bare_set_lit, + STATE(2156), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2333), 1, - sym__bare_set_lit, - STATE(2404), 1, - sym_sym_lit, - ACTIONS(635), 2, + ACTIONS(75), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(653), 2, + ACTIONS(93), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(657), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(847), 2, + ACTIONS(97), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1353), 2, + ACTIONS(99), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(3710), 2, sym__ws, sym_comment, - ACTIONS(1953), 3, + ACTIONS(3712), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1657), 3, + STATE(311), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2332), 3, + STATE(863), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2243), 19, + STATE(842), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -83294,85 +75787,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [94522] = 34, + [73305] = 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(617), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(821), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(823), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(825), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(827), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(829), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(831), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(833), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(835), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(837), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(839), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(841), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(843), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(845), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(1373), 1, - anon_sym_POUND, - STATE(2056), 1, + ACTIONS(3718), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, + sym__bare_set_lit, + STATE(1563), 1, + sym_sym_lit, + STATE(2153), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2333), 1, - sym__bare_set_lit, - STATE(2404), 1, - sym_sym_lit, - ACTIONS(635), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(653), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(657), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(847), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2893), 2, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(1945), 3, + ACTIONS(3716), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(745), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2332), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2241), 19, + STATE(1564), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(649), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -83392,85 +75887,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [94654] = 34, + [73440] = 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(775), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(809), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(1545), 1, - anon_sym_POUND, - STATE(1384), 1, + ACTIONS(3722), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(1817), 1, + STATE(1563), 1, sym_sym_lit, - STATE(2037), 1, + STATE(2153), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2895), 3, + ACTIONS(3720), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1330), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1951), 19, + STATE(646), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -83490,85 +75987,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [94786] = 34, + [73575] = 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(775), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(809), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(1545), 1, - anon_sym_POUND, - STATE(1384), 1, + ACTIONS(1654), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(1817), 1, + STATE(1563), 1, sym_sym_lit, - STATE(2037), 1, + STATE(2153), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2897), 2, + ACTIONS(3724), 2, sym__ws, sym_comment, - ACTIONS(2899), 3, + ACTIONS(1652), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(805), 3, + STATE(511), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1330), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1949), 19, + STATE(1547), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -83588,85 +76087,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [94918] = 34, + [73710] = 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(617), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(821), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(823), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(825), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(827), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(829), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(831), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(833), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(835), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(837), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(839), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(841), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(843), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(845), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(1373), 1, - anon_sym_POUND, - STATE(2056), 1, + ACTIONS(1648), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, + sym__bare_set_lit, + STATE(1563), 1, + sym_sym_lit, + STATE(2153), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2333), 1, - sym__bare_set_lit, - STATE(2404), 1, - sym_sym_lit, - ACTIONS(635), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(653), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(657), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(847), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1353), 2, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(3726), 2, sym__ws, sym_comment, - ACTIONS(1931), 3, + ACTIONS(1646), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1657), 3, + STATE(500), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2332), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2287), 19, + STATE(1546), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -83686,7 +76187,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [95050] = 34, + [73845] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -83725,17 +76226,19 @@ static uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - STATE(1608), 1, + ACTIONS(1630), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(1610), 1, + STATE(1563), 1, sym_sym_lit, - STATE(2052), 1, + STATE(2153), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -83743,28 +76246,28 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(53), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(55), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2901), 2, + ACTIONS(3728), 2, sym__ws, sym_comment, - ACTIONS(2903), 3, + ACTIONS(1628), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(529), 3, + STATE(486), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1609), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(246), 19, + STATE(1545), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -83784,7 +76287,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [95182] = 34, + [73980] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -83793,76 +76296,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(679), 1, + ACTIONS(590), 1, aux_sym_num_lit_token1, - ACTIONS(681), 1, + ACTIONS(857), 1, anon_sym_COLON, - ACTIONS(683), 1, + ACTIONS(859), 1, anon_sym_COLON_COLON, - ACTIONS(685), 1, + ACTIONS(861), 1, anon_sym_DQUOTE, - ACTIONS(691), 1, + ACTIONS(867), 1, aux_sym_sym_lit_token1, - ACTIONS(693), 1, + ACTIONS(869), 1, anon_sym_LPAREN, - ACTIONS(699), 1, + ACTIONS(875), 1, anon_sym_POUND_QMARK, - ACTIONS(701), 1, + ACTIONS(955), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(703), 1, + ACTIONS(957), 1, anon_sym_POUND_SQUOTE, - ACTIONS(705), 1, + ACTIONS(959), 1, anon_sym_SQUOTE, - ACTIONS(707), 1, + ACTIONS(961), 1, anon_sym_BQUOTE, - ACTIONS(709), 1, + ACTIONS(963), 1, anon_sym_COMMA_AT, - ACTIONS(711), 1, + ACTIONS(965), 1, anon_sym_COMMA, - ACTIONS(713), 1, + ACTIONS(967), 1, anon_sym_cl, - ACTIONS(2389), 1, + ACTIONS(2136), 1, + sym_self_referential_reader_macro, + ACTIONS(3158), 1, anon_sym_POUND, - STATE(1522), 1, - sym__bare_set_lit, - STATE(1525), 1, - sym_sym_lit, - STATE(2032), 1, + STATE(2133), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(697), 2, + STATE(2313), 1, + sym__bare_set_lit, + STATE(2351), 1, + sym_sym_lit, + ACTIONS(608), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(715), 2, + ACTIONS(626), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(717), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(719), 2, + ACTIONS(632), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2905), 2, + ACTIONS(969), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(3730), 2, sym__ws, sym_comment, - ACTIONS(2907), 3, + ACTIONS(2134), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(809), 3, + STATE(692), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1524), 3, + STATE(2315), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1485), 19, + STATE(2265), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -83882,85 +76387,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [95314] = 34, + [74115] = 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(775), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(809), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(1545), 1, - anon_sym_POUND, - STATE(1384), 1, + ACTIONS(3736), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(1817), 1, + STATE(1563), 1, sym_sym_lit, - STATE(2037), 1, + STATE(2153), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(3732), 2, sym__ws, sym_comment, - ACTIONS(2909), 3, + ACTIONS(3734), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(666), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1948), 19, + STATE(1562), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(303), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -83980,7 +76487,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [95446] = 34, + [74250] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -83989,76 +76496,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(617), 1, + ACTIONS(590), 1, aux_sym_num_lit_token1, - ACTIONS(821), 1, + ACTIONS(857), 1, anon_sym_COLON, - ACTIONS(823), 1, + ACTIONS(859), 1, anon_sym_COLON_COLON, - ACTIONS(825), 1, + ACTIONS(861), 1, anon_sym_DQUOTE, - ACTIONS(827), 1, + ACTIONS(867), 1, aux_sym_sym_lit_token1, - ACTIONS(829), 1, + ACTIONS(869), 1, anon_sym_LPAREN, - ACTIONS(831), 1, + ACTIONS(875), 1, anon_sym_POUND_QMARK, - ACTIONS(833), 1, + ACTIONS(955), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(835), 1, + ACTIONS(957), 1, anon_sym_POUND_SQUOTE, - ACTIONS(837), 1, + ACTIONS(959), 1, anon_sym_SQUOTE, - ACTIONS(839), 1, + ACTIONS(961), 1, anon_sym_BQUOTE, - ACTIONS(841), 1, + ACTIONS(963), 1, anon_sym_COMMA_AT, - ACTIONS(843), 1, + ACTIONS(965), 1, anon_sym_COMMA, - ACTIONS(845), 1, + ACTIONS(967), 1, anon_sym_cl, - ACTIONS(1373), 1, + ACTIONS(2148), 1, + sym_self_referential_reader_macro, + ACTIONS(3158), 1, anon_sym_POUND, - STATE(2056), 1, + STATE(2133), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2333), 1, + STATE(2313), 1, sym__bare_set_lit, - STATE(2404), 1, + STATE(2351), 1, sym_sym_lit, - ACTIONS(635), 2, + ACTIONS(608), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(653), 2, + ACTIONS(626), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(657), 2, + ACTIONS(632), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(847), 2, + ACTIONS(969), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2911), 2, + ACTIONS(3738), 2, sym__ws, sym_comment, - ACTIONS(1929), 3, + ACTIONS(2146), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(752), 3, + STATE(694), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2332), 3, + STATE(2315), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2283), 19, + STATE(2270), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -84078,7 +76587,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [95578] = 34, + [74385] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -84087,76 +76596,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(617), 1, + ACTIONS(590), 1, aux_sym_num_lit_token1, - ACTIONS(821), 1, + ACTIONS(857), 1, anon_sym_COLON, - ACTIONS(823), 1, + ACTIONS(859), 1, anon_sym_COLON_COLON, - ACTIONS(825), 1, + ACTIONS(861), 1, anon_sym_DQUOTE, - ACTIONS(827), 1, + ACTIONS(867), 1, aux_sym_sym_lit_token1, - ACTIONS(829), 1, + ACTIONS(869), 1, anon_sym_LPAREN, - ACTIONS(831), 1, + ACTIONS(875), 1, anon_sym_POUND_QMARK, - ACTIONS(833), 1, + ACTIONS(955), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(835), 1, + ACTIONS(957), 1, anon_sym_POUND_SQUOTE, - ACTIONS(837), 1, + ACTIONS(959), 1, anon_sym_SQUOTE, - ACTIONS(839), 1, + ACTIONS(961), 1, anon_sym_BQUOTE, - ACTIONS(841), 1, + ACTIONS(963), 1, anon_sym_COMMA_AT, - ACTIONS(843), 1, + ACTIONS(965), 1, anon_sym_COMMA, - ACTIONS(845), 1, + ACTIONS(967), 1, anon_sym_cl, - ACTIONS(1373), 1, + ACTIONS(2154), 1, + sym_self_referential_reader_macro, + ACTIONS(3158), 1, anon_sym_POUND, - STATE(2056), 1, + STATE(2133), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2333), 1, + STATE(2313), 1, sym__bare_set_lit, - STATE(2404), 1, + STATE(2351), 1, sym_sym_lit, - ACTIONS(635), 2, + ACTIONS(608), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(653), 2, + ACTIONS(626), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(657), 2, + ACTIONS(632), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(847), 2, + ACTIONS(969), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2913), 2, + ACTIONS(3740), 2, sym__ws, sym_comment, - ACTIONS(1925), 3, + ACTIONS(2152), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(753), 3, + STATE(696), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2332), 3, + STATE(2315), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2291), 19, + STATE(2274), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -84176,7 +76687,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [95710] = 34, + [74520] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -84185,76 +76696,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(617), 1, - aux_sym_num_lit_token1, - ACTIONS(821), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(823), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(825), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(827), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(829), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(831), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(833), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(835), 1, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(837), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(839), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(841), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(843), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(845), 1, - anon_sym_cl, - ACTIONS(1373), 1, + ACTIONS(1442), 1, anon_sym_POUND, - STATE(2056), 1, + ACTIONS(3744), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, + sym_sym_lit, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2333), 1, - sym__bare_set_lit, - STATE(2404), 1, - sym_sym_lit, - ACTIONS(635), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(653), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(657), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(847), 2, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2915), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(1889), 3, + ACTIONS(3742), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(756), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2332), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2292), 19, + STATE(2059), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -84274,7 +76787,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [95842] = 34, + [74655] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -84283,76 +76796,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, - aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(809), 1, - anon_sym_cl, - ACTIONS(1545), 1, + ACTIONS(1442), 1, anon_sym_POUND, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, + ACTIONS(3750), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(2037), 1, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(3746), 2, sym__ws, sym_comment, - ACTIONS(2917), 3, + ACTIONS(3748), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(772), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1865), 19, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2060), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -84372,85 +76887,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [95974] = 34, + [74790] = 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(617), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(821), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(823), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(825), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(827), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(829), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(831), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(833), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(835), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(837), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(839), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(841), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(843), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(845), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(1373), 1, - anon_sym_POUND, - STATE(2056), 1, + ACTIONS(1624), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, + sym__bare_set_lit, + STATE(1563), 1, + sym_sym_lit, + STATE(2153), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2333), 1, - sym__bare_set_lit, - STATE(2404), 1, - sym_sym_lit, - ACTIONS(635), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(653), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(657), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(847), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2919), 2, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(3752), 2, sym__ws, sym_comment, - ACTIONS(1777), 3, + ACTIONS(1622), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(760), 3, + STATE(470), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2332), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2295), 19, + STATE(1544), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -84470,7 +76987,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [96106] = 34, + [74925] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -84479,76 +76996,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(617), 1, + ACTIONS(590), 1, aux_sym_num_lit_token1, - ACTIONS(821), 1, + ACTIONS(857), 1, anon_sym_COLON, - ACTIONS(823), 1, + ACTIONS(859), 1, anon_sym_COLON_COLON, - ACTIONS(825), 1, + ACTIONS(861), 1, anon_sym_DQUOTE, - ACTIONS(827), 1, + ACTIONS(867), 1, aux_sym_sym_lit_token1, - ACTIONS(829), 1, + ACTIONS(869), 1, anon_sym_LPAREN, - ACTIONS(831), 1, + ACTIONS(875), 1, anon_sym_POUND_QMARK, - ACTIONS(833), 1, + ACTIONS(955), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(835), 1, + ACTIONS(957), 1, anon_sym_POUND_SQUOTE, - ACTIONS(837), 1, + ACTIONS(959), 1, anon_sym_SQUOTE, - ACTIONS(839), 1, + ACTIONS(961), 1, anon_sym_BQUOTE, - ACTIONS(841), 1, + ACTIONS(963), 1, anon_sym_COMMA_AT, - ACTIONS(843), 1, + ACTIONS(965), 1, anon_sym_COMMA, - ACTIONS(845), 1, + ACTIONS(967), 1, anon_sym_cl, - ACTIONS(1373), 1, + ACTIONS(2160), 1, + sym_self_referential_reader_macro, + ACTIONS(3158), 1, anon_sym_POUND, - STATE(2056), 1, + STATE(2133), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2333), 1, + STATE(2313), 1, sym__bare_set_lit, - STATE(2404), 1, + STATE(2351), 1, sym_sym_lit, - ACTIONS(635), 2, + ACTIONS(608), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(653), 2, + ACTIONS(626), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(657), 2, + ACTIONS(632), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(847), 2, + ACTIONS(969), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1353), 2, + ACTIONS(3754), 2, sym__ws, sym_comment, - ACTIONS(1823), 3, + ACTIONS(2158), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1657), 3, + STATE(701), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2332), 3, + STATE(2315), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2298), 19, + STATE(2279), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -84568,7 +77087,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [96238] = 34, + [75060] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -84577,76 +77096,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(617), 1, + ACTIONS(472), 1, aux_sym_num_lit_token1, - ACTIONS(821), 1, + ACTIONS(474), 1, anon_sym_COLON, - ACTIONS(823), 1, + ACTIONS(476), 1, anon_sym_COLON_COLON, - ACTIONS(825), 1, + ACTIONS(478), 1, anon_sym_DQUOTE, - ACTIONS(827), 1, + ACTIONS(484), 1, aux_sym_sym_lit_token1, - ACTIONS(829), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(831), 1, + ACTIONS(492), 1, anon_sym_POUND_QMARK, - ACTIONS(833), 1, + ACTIONS(494), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(835), 1, + ACTIONS(496), 1, anon_sym_POUND_SQUOTE, - ACTIONS(837), 1, + ACTIONS(498), 1, anon_sym_SQUOTE, - ACTIONS(839), 1, + ACTIONS(500), 1, anon_sym_BQUOTE, - ACTIONS(841), 1, + ACTIONS(502), 1, anon_sym_COMMA_AT, - ACTIONS(843), 1, + ACTIONS(504), 1, anon_sym_COMMA, - ACTIONS(845), 1, + ACTIONS(506), 1, anon_sym_cl, - ACTIONS(1373), 1, + ACTIONS(2384), 1, anon_sym_POUND, - STATE(2056), 1, + ACTIONS(3760), 1, + sym_self_referential_reader_macro, + STATE(1401), 1, + sym__bare_set_lit, + STATE(1402), 1, + sym_sym_lit, + STATE(2134), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2333), 1, - sym__bare_set_lit, - STATE(2404), 1, - sym_sym_lit, - ACTIONS(635), 2, + ACTIONS(490), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(653), 2, + ACTIONS(508), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(657), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(847), 2, + ACTIONS(512), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1353), 2, + ACTIONS(514), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(3756), 2, sym__ws, sym_comment, - ACTIONS(1807), 3, + ACTIONS(3758), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1657), 3, + STATE(435), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2332), 3, + STATE(1356), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2304), 19, + STATE(1400), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -84666,7 +77187,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [96370] = 34, + [75195] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -84675,76 +77196,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(617), 1, - aux_sym_num_lit_token1, - ACTIONS(821), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(823), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(825), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(827), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(829), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(831), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(833), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(835), 1, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(837), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(839), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(841), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(843), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(845), 1, - anon_sym_cl, - ACTIONS(1373), 1, + ACTIONS(1442), 1, anon_sym_POUND, - STATE(2056), 1, + ACTIONS(3764), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, + sym_sym_lit, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2333), 1, - sym__bare_set_lit, - STATE(2404), 1, - sym_sym_lit, - ACTIONS(635), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(653), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(657), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(847), 2, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1353), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(1743), 3, + ACTIONS(3762), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2332), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2305), 19, + STATE(2000), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -84764,7 +77287,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [96502] = 34, + [75330] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -84773,76 +77296,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, - aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(809), 1, - anon_sym_cl, - ACTIONS(1545), 1, + ACTIONS(1442), 1, anon_sym_POUND, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, + ACTIONS(3770), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(2037), 1, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(3766), 2, sym__ws, sym_comment, - ACTIONS(2921), 3, + ACTIONS(3768), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(776), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1942), 19, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2062), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -84862,85 +77387,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [96634] = 34, + [75465] = 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(775), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(809), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(1545), 1, - anon_sym_POUND, - STATE(1384), 1, + ACTIONS(1618), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(1817), 1, + STATE(1563), 1, sym_sym_lit, - STATE(2037), 1, + STATE(2153), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2923), 2, + ACTIONS(3772), 2, sym__ws, sym_comment, - ACTIONS(2925), 3, + ACTIONS(1616), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(811), 3, + STATE(468), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1330), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1941), 19, + STATE(1543), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -84960,85 +77487,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [96766] = 34, + [75600] = 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(617), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(821), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(823), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(825), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(827), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(829), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(831), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(833), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(835), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(837), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(839), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(841), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(843), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(845), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(1373), 1, - anon_sym_POUND, - STATE(2056), 1, + ACTIONS(3776), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, + sym__bare_set_lit, + STATE(1563), 1, + sym_sym_lit, + STATE(2153), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2333), 1, - sym__bare_set_lit, - STATE(2404), 1, - sym_sym_lit, - ACTIONS(635), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(653), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(657), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(847), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1353), 2, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(1709), 3, + ACTIONS(3774), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1657), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2332), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2313), 19, + STATE(1564), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(317), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -85058,7 +77587,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [96898] = 34, + [75735] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -85067,76 +77596,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(617), 1, + ACTIONS(590), 1, aux_sym_num_lit_token1, - ACTIONS(821), 1, + ACTIONS(857), 1, anon_sym_COLON, - ACTIONS(823), 1, + ACTIONS(859), 1, anon_sym_COLON_COLON, - ACTIONS(825), 1, + ACTIONS(861), 1, anon_sym_DQUOTE, - ACTIONS(827), 1, + ACTIONS(867), 1, aux_sym_sym_lit_token1, - ACTIONS(829), 1, + ACTIONS(869), 1, anon_sym_LPAREN, - ACTIONS(831), 1, + ACTIONS(875), 1, anon_sym_POUND_QMARK, - ACTIONS(833), 1, + ACTIONS(955), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(835), 1, + ACTIONS(957), 1, anon_sym_POUND_SQUOTE, - ACTIONS(837), 1, + ACTIONS(959), 1, anon_sym_SQUOTE, - ACTIONS(839), 1, + ACTIONS(961), 1, anon_sym_BQUOTE, - ACTIONS(841), 1, + ACTIONS(963), 1, anon_sym_COMMA_AT, - ACTIONS(843), 1, + ACTIONS(965), 1, anon_sym_COMMA, - ACTIONS(845), 1, + ACTIONS(967), 1, anon_sym_cl, - ACTIONS(1373), 1, + ACTIONS(2166), 1, + sym_self_referential_reader_macro, + ACTIONS(3158), 1, anon_sym_POUND, - STATE(2056), 1, + STATE(2133), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2333), 1, + STATE(2313), 1, sym__bare_set_lit, - STATE(2404), 1, + STATE(2351), 1, sym_sym_lit, - ACTIONS(635), 2, + ACTIONS(608), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(653), 2, + ACTIONS(626), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(657), 2, + ACTIONS(632), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(847), 2, + ACTIONS(969), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1353), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(1687), 3, + ACTIONS(2164), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2332), 3, + STATE(2315), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2317), 19, + STATE(2283), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -85156,7 +77687,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [97030] = 34, + [75870] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -85165,76 +77696,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, - aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(809), 1, - anon_sym_cl, - ACTIONS(1545), 1, + ACTIONS(1442), 1, anon_sym_POUND, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, + ACTIONS(3780), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(2037), 1, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2927), 3, + ACTIONS(3778), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1940), 19, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2063), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -85254,7 +77787,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [97162] = 34, + [76005] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -85263,76 +77796,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, + ACTIONS(61), 1, + anon_sym_POUND, + ACTIONS(65), 1, aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(67), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(69), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(71), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(73), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(77), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(79), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(81), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(87), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(89), 1, anon_sym_COMMA, - ACTIONS(809), 1, + ACTIONS(775), 1, + anon_sym_LPAREN, + ACTIONS(779), 1, anon_sym_cl, - ACTIONS(1545), 1, - anon_sym_POUND, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, + ACTIONS(3784), 1, + sym_self_referential_reader_macro, + STATE(862), 1, sym_sym_lit, - STATE(2037), 1, + STATE(870), 1, + sym__bare_set_lit, + STATE(2156), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, + ACTIONS(75), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(93), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, + ACTIONS(97), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(99), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2929), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2931), 3, + ACTIONS(3782), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(639), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1330), 3, + STATE(863), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1939), 19, + STATE(1564), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(832), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -85352,7 +77887,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [97294] = 34, + [76140] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -85361,76 +77896,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(777), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(809), 1, + ACTIONS(556), 1, anon_sym_cl, - ACTIONS(873), 1, + ACTIONS(783), 1, aux_sym_num_lit_token1, - ACTIONS(877), 1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(879), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(881), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(883), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(885), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(1015), 1, + ACTIONS(1442), 1, anon_sym_POUND, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, + ACTIONS(3790), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(2048), 1, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(811), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(815), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(875), 2, + ACTIONS(785), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(887), 2, + ACTIONS(797), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2933), 2, + ACTIONS(3786), 2, sym__ws, sym_comment, - ACTIONS(2317), 3, + ACTIONS(3788), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(791), 3, + STATE(781), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1330), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1343), 19, + STATE(2064), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -85450,7 +77987,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [97426] = 34, + [76275] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -85459,76 +77996,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(777), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(809), 1, + ACTIONS(556), 1, anon_sym_cl, - ACTIONS(873), 1, + ACTIONS(783), 1, aux_sym_num_lit_token1, - ACTIONS(877), 1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(879), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(881), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(883), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(885), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(1015), 1, + ACTIONS(1442), 1, anon_sym_POUND, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, + ACTIONS(3796), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(2048), 1, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(811), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(815), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(875), 2, + ACTIONS(785), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(887), 2, + ACTIONS(797), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2935), 2, + ACTIONS(3792), 2, sym__ws, sym_comment, - ACTIONS(2309), 3, + ACTIONS(3794), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(688), 3, + STATE(783), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1330), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1342), 19, + STATE(2065), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -85548,7 +78087,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [97558] = 34, + [76410] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -85557,76 +78096,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(777), 1, + ACTIONS(590), 1, + aux_sym_num_lit_token1, + ACTIONS(857), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(859), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(861), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(867), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(869), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(875), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(955), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(809), 1, - anon_sym_cl, - ACTIONS(873), 1, - aux_sym_num_lit_token1, - ACTIONS(877), 1, + ACTIONS(957), 1, anon_sym_POUND_SQUOTE, - ACTIONS(879), 1, + ACTIONS(959), 1, anon_sym_SQUOTE, - ACTIONS(881), 1, + ACTIONS(961), 1, anon_sym_BQUOTE, - ACTIONS(883), 1, + ACTIONS(963), 1, anon_sym_COMMA_AT, - ACTIONS(885), 1, + ACTIONS(965), 1, anon_sym_COMMA, - ACTIONS(1015), 1, + ACTIONS(967), 1, + anon_sym_cl, + ACTIONS(2174), 1, + sym_self_referential_reader_macro, + ACTIONS(3158), 1, anon_sym_POUND, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, - sym_sym_lit, - STATE(2048), 1, + STATE(2133), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(811), 2, + STATE(2313), 1, + sym__bare_set_lit, + STATE(2351), 1, + sym_sym_lit, + ACTIONS(608), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(626), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(815), 2, + ACTIONS(632), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(875), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(887), 2, + ACTIONS(969), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1353), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2257), 3, + ACTIONS(2172), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1340), 19, + STATE(2315), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2287), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -85646,85 +78187,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [97690] = 34, + [76545] = 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(775), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(809), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(1545), 1, - anon_sym_POUND, - STATE(1384), 1, + ACTIONS(3802), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(1817), 1, + STATE(1563), 1, sym_sym_lit, - STATE(2037), 1, + STATE(2153), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(3798), 2, sym__ws, sym_comment, - ACTIONS(2937), 3, + ACTIONS(3800), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(741), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1938), 19, + STATE(1562), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(642), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -85744,7 +78287,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [97822] = 34, + [76680] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(11), 1, @@ -85783,17 +78326,19 @@ static uint16_t ts_small_parse_table[] = { sym_block_comment, ACTIONS(49), 1, anon_sym_cl, - STATE(1608), 1, + ACTIONS(3808), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(1610), 1, + STATE(1563), 1, sym_sym_lit, - STATE(2052), 1, + STATE(2153), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, ACTIONS(31), 2, anon_sym_POUND0A, @@ -85801,28 +78346,28 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(53), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(55), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(3804), 2, sym__ws, sym_comment, - ACTIONS(2939), 3, + ACTIONS(3806), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(745), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(379), 19, + STATE(1562), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(418), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -85842,7 +78387,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [97954] = 34, + [76815] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -85851,76 +78396,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, - aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(809), 1, - anon_sym_cl, - ACTIONS(1545), 1, + ACTIONS(1442), 1, anon_sym_POUND, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, + ACTIONS(3812), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(2037), 1, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2941), 3, + ACTIONS(3810), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1890), 19, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2066), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -85940,7 +78487,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [98086] = 34, + [76950] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -85949,76 +78496,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, + ACTIONS(590), 1, aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(857), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(859), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(861), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(867), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(869), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(875), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(955), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(957), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(959), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(961), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(963), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(965), 1, anon_sym_COMMA, - ACTIONS(809), 1, + ACTIONS(967), 1, anon_sym_cl, - ACTIONS(1545), 1, + ACTIONS(2194), 1, + sym_self_referential_reader_macro, + ACTIONS(3158), 1, anon_sym_POUND, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, - sym_sym_lit, - STATE(2037), 1, + STATE(2133), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, + STATE(2313), 1, + sym__bare_set_lit, + STATE(2351), 1, + sym_sym_lit, + ACTIONS(608), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(626), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(632), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2943), 2, + ACTIONS(969), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2945), 3, + ACTIONS(2192), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(599), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1330), 3, + STATE(2315), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1936), 19, + STATE(2288), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -86038,85 +78587,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [98218] = 34, + [77085] = 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, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(524), 1, + anon_sym_COLON, + ACTIONS(526), 1, + anon_sym_COLON_COLON, + ACTIONS(528), 1, + anon_sym_DQUOTE, + ACTIONS(534), 1, + aux_sym_sym_lit_token1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(556), 1, anon_sym_cl, - ACTIONS(435), 1, + ACTIONS(783), 1, aux_sym_num_lit_token1, - ACTIONS(445), 1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(447), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(449), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(451), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(453), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(2083), 1, + ACTIONS(1442), 1, anon_sym_POUND, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, + ACTIONS(3818), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(2042), 1, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(51), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(55), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(443), 2, + ACTIONS(785), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(455), 2, + ACTIONS(797), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1353), 2, + ACTIONS(3814), 2, sym__ws, sym_comment, - ACTIONS(2251), 3, + ACTIONS(3816), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(788), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1537), 19, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2067), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -86136,85 +78687,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [98350] = 34, + [77220] = 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(590), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(857), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(859), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(861), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(867), 1, aux_sym_sym_lit_token1, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(29), 1, + ACTIONS(869), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(875), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(955), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(957), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(959), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(961), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(963), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(965), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(967), 1, anon_sym_cl, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, - sym_sym_lit, - STATE(2052), 1, + ACTIONS(2220), 1, + sym_self_referential_reader_macro, + ACTIONS(3158), 1, + anon_sym_POUND, + STATE(2133), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(31), 2, + STATE(2313), 1, + sym__bare_set_lit, + STATE(2351), 1, + sym_sym_lit, + ACTIONS(608), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(626), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, + ACTIONS(632), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2947), 2, + ACTIONS(969), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2949), 3, + ACTIONS(2218), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(487), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1609), 3, + STATE(2315), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(271), 19, + STATE(2292), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -86234,7 +78787,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [98482] = 34, + [77355] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -86243,76 +78796,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(617), 1, + ACTIONS(590), 1, aux_sym_num_lit_token1, - ACTIONS(821), 1, + ACTIONS(857), 1, anon_sym_COLON, - ACTIONS(823), 1, + ACTIONS(859), 1, anon_sym_COLON_COLON, - ACTIONS(825), 1, + ACTIONS(861), 1, anon_sym_DQUOTE, - ACTIONS(827), 1, + ACTIONS(867), 1, aux_sym_sym_lit_token1, - ACTIONS(829), 1, + ACTIONS(869), 1, anon_sym_LPAREN, - ACTIONS(831), 1, + ACTIONS(875), 1, anon_sym_POUND_QMARK, - ACTIONS(833), 1, + ACTIONS(955), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(835), 1, + ACTIONS(957), 1, anon_sym_POUND_SQUOTE, - ACTIONS(837), 1, + ACTIONS(959), 1, anon_sym_SQUOTE, - ACTIONS(839), 1, + ACTIONS(961), 1, anon_sym_BQUOTE, - ACTIONS(841), 1, + ACTIONS(963), 1, anon_sym_COMMA_AT, - ACTIONS(843), 1, + ACTIONS(965), 1, anon_sym_COMMA, - ACTIONS(845), 1, + ACTIONS(967), 1, anon_sym_cl, - ACTIONS(1373), 1, + ACTIONS(2224), 1, + sym_self_referential_reader_macro, + ACTIONS(3158), 1, anon_sym_POUND, - STATE(2056), 1, + STATE(2133), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2333), 1, + STATE(2313), 1, sym__bare_set_lit, - STATE(2404), 1, + STATE(2351), 1, sym_sym_lit, - ACTIONS(635), 2, + ACTIONS(608), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(653), 2, + ACTIONS(626), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(657), 2, + ACTIONS(632), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(847), 2, + ACTIONS(969), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2951), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2329), 3, + ACTIONS(2222), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(769), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2332), 3, + STATE(2315), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2326), 19, + STATE(2293), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -86332,7 +78887,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [98614] = 34, + [77490] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -86341,76 +78896,178 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, - aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(536), 1, anon_sym_LPAREN, + ACTIONS(542), 1, + anon_sym_POUND_QMARK, + ACTIONS(544), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(789), 1, + anon_sym_SQUOTE, + ACTIONS(791), 1, + anon_sym_BQUOTE, + ACTIONS(793), 1, + anon_sym_COMMA_AT, ACTIONS(795), 1, + anon_sym_COMMA, + ACTIONS(1442), 1, + anon_sym_POUND, + ACTIONS(3822), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, + sym_sym_lit, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, + aux_sym_list_lit_repeat1, + STATE(2202), 1, + sym_old_meta_lit, + STATE(2206), 1, + sym_meta_lit, + STATE(2237), 1, + sym__metadata_lit, + ACTIONS(558), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(564), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1440), 2, + sym__ws, + sym_comment, + ACTIONS(3820), 3, + anon_sym_DOT, + sym_nil_lit, + sym_fancy_literal, + STATE(1564), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2068), 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, + [77625] = 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(797), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(809), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(1545), 1, - anon_sym_POUND, - STATE(1384), 1, + ACTIONS(3826), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(1817), 1, + STATE(1563), 1, sym_sym_lit, - STATE(2037), 1, + STATE(2153), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2953), 3, + ACTIONS(3824), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1330), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1935), 19, + STATE(652), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -86430,7 +79087,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [98746] = 34, + [77760] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -86438,77 +79095,79 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(27), 1, anon_sym_POUND_CARET, ACTIONS(47), 1, - sym_block_comment, - ACTIONS(775), 1, - aux_sym_num_lit_token1, - ACTIONS(777), 1, + sym_block_comment, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(809), 1, - anon_sym_cl, - ACTIONS(1545), 1, + ACTIONS(1442), 1, anon_sym_POUND, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, + ACTIONS(3832), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(2037), 1, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2955), 2, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(3828), 2, sym__ws, sym_comment, - ACTIONS(2957), 3, + ACTIONS(3830), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(590), 3, + STATE(793), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1330), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1934), 19, + STATE(2069), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -86528,85 +79187,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [98878] = 34, + [77895] = 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(617), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(821), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(823), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(825), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(827), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(829), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(831), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(833), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(835), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(837), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(839), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(841), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(843), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(845), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(1373), 1, - anon_sym_POUND, - STATE(2056), 1, + ACTIONS(3838), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, + sym__bare_set_lit, + STATE(1563), 1, + sym_sym_lit, + STATE(2153), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2333), 1, - sym__bare_set_lit, - STATE(2404), 1, - sym_sym_lit, - ACTIONS(635), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(653), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(657), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(847), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2959), 2, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(3834), 2, sym__ws, sym_comment, - ACTIONS(1367), 3, + ACTIONS(3836), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(770), 3, + STATE(726), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2332), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2327), 19, + STATE(327), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -86626,85 +79287,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [99010] = 34, + [78030] = 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(777), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(809), 1, - anon_sym_cl, - ACTIONS(873), 1, - aux_sym_num_lit_token1, - ACTIONS(877), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(879), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(881), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(883), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(885), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(1015), 1, - anon_sym_POUND, - STATE(1384), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(3844), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(1817), 1, + STATE(1563), 1, sym_sym_lit, - STATE(2048), 1, + STATE(2153), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(811), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(815), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(875), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(887), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(1353), 2, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(3840), 2, sym__ws, sym_comment, - ACTIONS(2223), 3, + ACTIONS(3842), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(457), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1338), 19, + STATE(1562), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(460), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -86724,85 +79387,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [99142] = 34, + [78165] = 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(617), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(821), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(823), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(825), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(827), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(829), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(831), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(833), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(835), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(837), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(839), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(841), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(843), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(845), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(1373), 1, - anon_sym_POUND, - STATE(2056), 1, + ACTIONS(3848), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, + sym__bare_set_lit, + STATE(1563), 1, + sym_sym_lit, + STATE(2153), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2333), 1, - sym__bare_set_lit, - STATE(2404), 1, - sym_sym_lit, - ACTIONS(635), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(653), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(657), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(847), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2961), 2, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(1371), 3, + ACTIONS(3846), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(771), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2332), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2328), 19, + STATE(1564), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(411), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -86822,7 +79487,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [99274] = 34, + [78300] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -86831,76 +79496,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, - aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(809), 1, - anon_sym_cl, - ACTIONS(1545), 1, + ACTIONS(1442), 1, anon_sym_POUND, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, + ACTIONS(3852), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(2037), 1, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2963), 3, + ACTIONS(3850), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1972), 19, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2070), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -86920,85 +79587,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [99406] = 34, + [78435] = 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(617), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(821), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(823), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(825), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(827), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(829), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(831), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(833), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(835), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(837), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(839), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(841), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(843), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(845), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(1373), 1, - anon_sym_POUND, - STATE(2056), 1, + ACTIONS(3858), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, + sym__bare_set_lit, + STATE(1563), 1, + sym_sym_lit, + STATE(2153), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2333), 1, - sym__bare_set_lit, - STATE(2404), 1, - sym_sym_lit, - ACTIONS(635), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(653), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(657), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(847), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2965), 2, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(3854), 2, sym__ws, sym_comment, - ACTIONS(1379), 3, + ACTIONS(3856), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(774), 3, + STATE(762), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2332), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2329), 19, + STATE(397), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -87018,85 +79687,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [99538] = 34, + [78570] = 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(775), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(809), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(1545), 1, - anon_sym_POUND, - STATE(1384), 1, + ACTIONS(3864), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(1817), 1, + STATE(1563), 1, sym_sym_lit, - STATE(2037), 1, + STATE(2153), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2967), 2, + ACTIONS(3860), 2, sym__ws, sym_comment, - ACTIONS(2969), 3, + ACTIONS(3862), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(580), 3, + STATE(764), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1330), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1931), 19, + STATE(395), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -87116,7 +79787,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [99670] = 34, + [78705] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -87125,76 +79796,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(617), 1, - aux_sym_num_lit_token1, - ACTIONS(821), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(823), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(825), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(827), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(829), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(831), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(833), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(835), 1, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(837), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(839), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(841), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(843), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(845), 1, - anon_sym_cl, - ACTIONS(1373), 1, + ACTIONS(1442), 1, anon_sym_POUND, - STATE(2056), 1, + ACTIONS(3868), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, + sym_sym_lit, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2333), 1, - sym__bare_set_lit, - STATE(2404), 1, - sym_sym_lit, - ACTIONS(635), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(653), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(657), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(847), 2, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2971), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(1383), 3, + ACTIONS(3866), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(775), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(2332), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2330), 19, + STATE(2072), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -87214,85 +79887,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [99802] = 34, + [78840] = 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(524), 1, + anon_sym_COLON, + ACTIONS(526), 1, + anon_sym_COLON_COLON, + ACTIONS(528), 1, + anon_sym_DQUOTE, + ACTIONS(534), 1, + aux_sym_sym_lit_token1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, - anon_sym_cl, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, + ACTIONS(1442), 1, + anon_sym_POUND, + ACTIONS(3874), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(2052), 1, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(31), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(53), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(55), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2973), 2, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(3870), 2, sym__ws, sym_comment, - ACTIONS(2975), 3, + ACTIONS(3872), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(527), 3, + STATE(799), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1609), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(357), 19, + STATE(2075), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -87312,85 +79987,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [99934] = 34, + [78975] = 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(61), 1, anon_sym_POUND, - ACTIONS(15), 1, + ACTIONS(65), 1, aux_sym_num_lit_token1, - ACTIONS(17), 1, + ACTIONS(67), 1, anon_sym_COLON, - ACTIONS(19), 1, + ACTIONS(69), 1, anon_sym_COLON_COLON, - ACTIONS(21), 1, + ACTIONS(71), 1, anon_sym_DQUOTE, - ACTIONS(23), 1, + ACTIONS(73), 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(77), 1, anon_sym_POUND_QMARK, - ACTIONS(35), 1, + ACTIONS(79), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(37), 1, + ACTIONS(81), 1, anon_sym_POUND_SQUOTE, - ACTIONS(39), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(41), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(43), 1, + ACTIONS(87), 1, anon_sym_COMMA_AT, - ACTIONS(45), 1, + ACTIONS(89), 1, anon_sym_COMMA, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(49), 1, + ACTIONS(775), 1, + anon_sym_LPAREN, + ACTIONS(779), 1, anon_sym_cl, - STATE(1608), 1, - sym__bare_set_lit, - STATE(1610), 1, + ACTIONS(3878), 1, + sym_self_referential_reader_macro, + STATE(862), 1, sym_sym_lit, - STATE(2052), 1, + STATE(870), 1, + sym__bare_set_lit, + STATE(2156), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(31), 2, + ACTIONS(75), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(51), 2, + ACTIONS(93), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(53), 2, + ACTIONS(97), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(55), 2, + ACTIONS(99), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2977), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2979), 3, + ACTIONS(3876), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(526), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1609), 3, + STATE(863), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(356), 19, + STATE(1564), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(833), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -87410,7 +80087,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [100066] = 34, + [79110] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -87419,76 +80096,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, + ACTIONS(61), 1, + anon_sym_POUND, + ACTIONS(65), 1, aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(67), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(69), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(71), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(73), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(77), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(79), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(81), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(87), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(89), 1, anon_sym_COMMA, - ACTIONS(809), 1, + ACTIONS(775), 1, + anon_sym_LPAREN, + ACTIONS(779), 1, anon_sym_cl, - ACTIONS(1545), 1, - anon_sym_POUND, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, + ACTIONS(3882), 1, + sym_self_referential_reader_macro, + STATE(862), 1, sym_sym_lit, - STATE(2037), 1, + STATE(870), 1, + sym__bare_set_lit, + STATE(2156), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, + ACTIONS(75), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(93), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, + ACTIONS(97), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(99), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2981), 3, + ACTIONS(3880), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1330), 3, + STATE(863), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1930), 19, + STATE(841), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -87508,85 +80187,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [100198] = 34, + [79245] = 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(777), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, + aux_sym_num_lit_token1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(809), 1, - anon_sym_cl, - ACTIONS(873), 1, - aux_sym_num_lit_token1, - ACTIONS(877), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(879), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(881), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(883), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(885), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(1015), 1, - anon_sym_POUND, - STATE(1384), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(3886), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(1817), 1, + STATE(1563), 1, sym_sym_lit, - STATE(2048), 1, + STATE(2153), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(811), 2, - anon_sym_POUNDP, - anon_sym_POUNDp, - ACTIONS(815), 2, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(875), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(887), 2, + ACTIONS(51), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(2983), 2, + ACTIONS(57), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2217), 3, + ACTIONS(3884), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(524), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1330), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1337), 19, + STATE(1564), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(681), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -87606,7 +80287,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [100330] = 34, + [79380] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -87615,76 +80296,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(679), 1, - aux_sym_num_lit_token1, - ACTIONS(681), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(683), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(685), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(691), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(693), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(699), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(701), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(703), 1, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(705), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(707), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(709), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(711), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(713), 1, - anon_sym_cl, - ACTIONS(2389), 1, + ACTIONS(1442), 1, anon_sym_POUND, - STATE(1522), 1, - sym__bare_set_lit, - STATE(1525), 1, + ACTIONS(3890), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(2032), 1, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(697), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(715), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(717), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(719), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2985), 3, + ACTIONS(3888), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1524), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1459), 19, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2076), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -87704,7 +80387,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [100462] = 34, + [79515] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -87713,76 +80396,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, - aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(809), 1, - anon_sym_cl, - ACTIONS(1545), 1, + ACTIONS(1442), 1, anon_sym_POUND, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, + ACTIONS(3896), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(2037), 1, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(3892), 2, sym__ws, sym_comment, - ACTIONS(2987), 3, + ACTIONS(3894), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(796), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1929), 19, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2077), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -87802,7 +80487,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [100594] = 34, + [79650] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -87811,76 +80496,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(679), 1, + ACTIONS(590), 1, aux_sym_num_lit_token1, - ACTIONS(681), 1, + ACTIONS(857), 1, anon_sym_COLON, - ACTIONS(683), 1, + ACTIONS(859), 1, anon_sym_COLON_COLON, - ACTIONS(685), 1, + ACTIONS(861), 1, anon_sym_DQUOTE, - ACTIONS(691), 1, + ACTIONS(867), 1, aux_sym_sym_lit_token1, - ACTIONS(693), 1, + ACTIONS(869), 1, anon_sym_LPAREN, - ACTIONS(699), 1, + ACTIONS(875), 1, anon_sym_POUND_QMARK, - ACTIONS(701), 1, + ACTIONS(955), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(703), 1, + ACTIONS(957), 1, anon_sym_POUND_SQUOTE, - ACTIONS(705), 1, + ACTIONS(959), 1, anon_sym_SQUOTE, - ACTIONS(707), 1, + ACTIONS(961), 1, anon_sym_BQUOTE, - ACTIONS(709), 1, + ACTIONS(963), 1, anon_sym_COMMA_AT, - ACTIONS(711), 1, + ACTIONS(965), 1, anon_sym_COMMA, - ACTIONS(713), 1, + ACTIONS(967), 1, anon_sym_cl, - ACTIONS(2389), 1, + ACTIONS(1612), 1, + sym_self_referential_reader_macro, + ACTIONS(3158), 1, anon_sym_POUND, - STATE(1522), 1, - sym__bare_set_lit, - STATE(1525), 1, - sym_sym_lit, - STATE(2032), 1, + STATE(2133), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(697), 2, + STATE(2313), 1, + sym__bare_set_lit, + STATE(2351), 1, + sym_sym_lit, + ACTIONS(608), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(715), 2, + ACTIONS(626), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(717), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(719), 2, + ACTIONS(632), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(969), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2989), 3, + ACTIONS(1610), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1524), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1460), 19, + STATE(2315), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2148), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -87900,85 +80587,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [100726] = 34, + [79785] = 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(679), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(681), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(683), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(685), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(691), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(693), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(699), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(701), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(703), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(705), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(707), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(709), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(711), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(713), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(2389), 1, - anon_sym_POUND, - STATE(1522), 1, + ACTIONS(3900), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(1525), 1, + STATE(1563), 1, sym_sym_lit, - STATE(2032), 1, + STATE(2153), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(697), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(715), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(717), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(719), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2991), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2993), 3, + ACTIONS(3898), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(801), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1524), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1467), 19, + STATE(1564), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(677), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -87998,7 +80687,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [100858] = 34, + [79920] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -88007,76 +80696,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, - aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(809), 1, - anon_sym_cl, - ACTIONS(1545), 1, + ACTIONS(1442), 1, anon_sym_POUND, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, + ACTIONS(3904), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(2037), 1, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(2995), 3, + ACTIONS(3902), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1928), 19, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2078), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -88096,7 +80787,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [100990] = 34, + [80055] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -88105,76 +80796,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(775), 1, - aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(809), 1, - anon_sym_cl, - ACTIONS(1545), 1, + ACTIONS(1442), 1, anon_sym_POUND, - STATE(1384), 1, - sym__bare_set_lit, - STATE(1817), 1, + ACTIONS(3910), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(2037), 1, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(2997), 2, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(3906), 2, sym__ws, sym_comment, - ACTIONS(2999), 3, + ACTIONS(3908), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(564), 3, + STATE(805), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1330), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1926), 19, + STATE(2079), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -88194,7 +80887,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [101122] = 34, + [80190] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -88203,76 +80896,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(679), 1, - aux_sym_num_lit_token1, - ACTIONS(681), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(683), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(685), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(691), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(693), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(699), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(701), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(703), 1, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(705), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(707), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(709), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(711), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(713), 1, - anon_sym_cl, - ACTIONS(2389), 1, + ACTIONS(1442), 1, anon_sym_POUND, - STATE(1522), 1, - sym__bare_set_lit, - STATE(1525), 1, + ACTIONS(2840), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(2032), 1, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(697), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(715), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(717), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(719), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(3001), 3, + ACTIONS(2838), 3, anon_sym_DOT, - sym_nil_lit, - sym_fancy_literal, - STATE(1524), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + sym_nil_lit, + sym_fancy_literal, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1468), 19, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1862), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -88292,85 +80987,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [101254] = 34, + [80325] = 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(679), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(681), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(683), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(685), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(691), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(693), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(699), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(701), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(703), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(705), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(707), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(709), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(711), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(713), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(2389), 1, - anon_sym_POUND, - STATE(1522), 1, + ACTIONS(2294), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(1525), 1, + STATE(1563), 1, sym_sym_lit, - STATE(2032), 1, + STATE(2153), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(697), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(715), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(717), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(719), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3003), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(3005), 3, + ACTIONS(2292), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(803), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(1524), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1470), 19, + STATE(1564), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1539), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -88390,85 +81087,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [101386] = 34, + [80460] = 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(679), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(681), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(683), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(685), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(691), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(693), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(699), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(701), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(703), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(705), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(707), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(709), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(711), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(713), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(2389), 1, - anon_sym_POUND, - STATE(1522), 1, + ACTIONS(3914), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(1525), 1, + STATE(1563), 1, sym_sym_lit, - STATE(2032), 1, + STATE(2153), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(697), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(715), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(717), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(719), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(3007), 3, + ACTIONS(3912), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1524), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1471), 19, + STATE(387), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -88488,7 +81187,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [101518] = 34, + [80595] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -88497,76 +81196,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(679), 1, - aux_sym_num_lit_token1, - ACTIONS(681), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(683), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(685), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(691), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(693), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(699), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(701), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(703), 1, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(705), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(707), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(709), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(711), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(713), 1, - anon_sym_cl, - ACTIONS(2389), 1, + ACTIONS(1442), 1, anon_sym_POUND, - STATE(1522), 1, - sym__bare_set_lit, - STATE(1525), 1, + ACTIONS(3918), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(2032), 1, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(697), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(715), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(717), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(719), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(3009), 3, + ACTIONS(3916), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1524), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1473), 19, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2081), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -88586,85 +81287,87 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [101650] = 34, + [80730] = 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(775), 1, + ACTIONS(11), 1, + anon_sym_POUND, + ACTIONS(15), 1, aux_sym_num_lit_token1, - ACTIONS(777), 1, + ACTIONS(17), 1, anon_sym_COLON, - ACTIONS(779), 1, + ACTIONS(19), 1, anon_sym_COLON_COLON, - ACTIONS(781), 1, + ACTIONS(21), 1, anon_sym_DQUOTE, - ACTIONS(787), 1, + ACTIONS(23), 1, aux_sym_sym_lit_token1, - ACTIONS(789), 1, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(795), 1, + ACTIONS(33), 1, anon_sym_POUND_QMARK, - ACTIONS(797), 1, + ACTIONS(35), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(799), 1, + ACTIONS(37), 1, anon_sym_POUND_SQUOTE, - ACTIONS(801), 1, + ACTIONS(39), 1, anon_sym_SQUOTE, - ACTIONS(803), 1, + ACTIONS(41), 1, anon_sym_BQUOTE, - ACTIONS(805), 1, + ACTIONS(43), 1, anon_sym_COMMA_AT, - ACTIONS(807), 1, + ACTIONS(45), 1, anon_sym_COMMA, - ACTIONS(809), 1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(49), 1, anon_sym_cl, - ACTIONS(1545), 1, - anon_sym_POUND, - STATE(1384), 1, + ACTIONS(3922), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, sym__bare_set_lit, - STATE(1817), 1, + STATE(1563), 1, sym_sym_lit, - STATE(2037), 1, + STATE(2153), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(793), 2, + ACTIONS(31), 2, anon_sym_POUND0A, anon_sym_POUND0a, - ACTIONS(811), 2, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(813), 2, + ACTIONS(55), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - ACTIONS(815), 2, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(1353), 2, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(3011), 3, + ACTIONS(3920), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(1330), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1657), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1925), 19, + STATE(385), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -88684,7 +81387,7 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [101782] = 34, + [80865] = 35, ACTIONS(9), 1, anon_sym_POUND_, ACTIONS(25), 1, @@ -88693,76 +81396,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(679), 1, - aux_sym_num_lit_token1, - ACTIONS(681), 1, + ACTIONS(524), 1, anon_sym_COLON, - ACTIONS(683), 1, + ACTIONS(526), 1, anon_sym_COLON_COLON, - ACTIONS(685), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(691), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(693), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(699), 1, + ACTIONS(542), 1, anon_sym_POUND_QMARK, - ACTIONS(701), 1, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, - ACTIONS(703), 1, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, - ACTIONS(705), 1, + ACTIONS(789), 1, anon_sym_SQUOTE, - ACTIONS(707), 1, + ACTIONS(791), 1, anon_sym_BQUOTE, - ACTIONS(709), 1, + ACTIONS(793), 1, anon_sym_COMMA_AT, - ACTIONS(711), 1, + ACTIONS(795), 1, anon_sym_COMMA, - ACTIONS(713), 1, - anon_sym_cl, - ACTIONS(2389), 1, + ACTIONS(1442), 1, anon_sym_POUND, - STATE(1522), 1, - sym__bare_set_lit, - STATE(1525), 1, + ACTIONS(2832), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, sym_sym_lit, - STATE(2032), 1, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, aux_sym_list_lit_repeat1, - STATE(2221), 1, + STATE(2202), 1, sym_old_meta_lit, - STATE(2222), 1, + STATE(2206), 1, sym_meta_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - ACTIONS(697), 2, - anon_sym_POUND0A, - anon_sym_POUND0a, - ACTIONS(715), 2, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - ACTIONS(717), 2, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - ACTIONS(719), 2, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3013), 2, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1440), 2, sym__ws, sym_comment, - ACTIONS(3015), 3, + ACTIONS(2830), 3, anon_sym_DOT, sym_nil_lit, sym_fancy_literal, - STATE(807), 3, + STATE(1564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - STATE(1524), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1480), 19, + STATE(1864), 19, sym__form, sym_num_lit, sym_kwd_lit, @@ -88782,3232 +81487,4714 @@ static uint16_t ts_small_parse_table[] = { sym_package_lit, sym_include_reader_macro, sym_complex_num_lit, - [101914] = 4, - ACTIONS(47), 1, - sym_block_comment, - STATE(814), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(3017), 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_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, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3019), 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, - 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, - [101978] = 6, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(3024), 1, - anon_sym_POUND_, - ACTIONS(3021), 2, - sym__ws, - sym_comment, - STATE(814), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(3029), 19, - 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, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3027), 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, - 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, - [102046] = 6, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(3034), 1, - anon_sym_POUND_, - ACTIONS(3031), 2, - sym__ws, - sym_comment, - STATE(816), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(3039), 19, - 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, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3037), 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, - 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, - [102114] = 4, - ACTIONS(47), 1, - sym_block_comment, - STATE(814), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(3041), 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_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, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3043), 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, - 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, - [102178] = 6, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(3048), 1, - anon_sym_POUND_, - ACTIONS(3045), 2, - sym__ws, - sym_comment, - STATE(813), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(3053), 19, - 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, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3051), 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, - 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, - [102246] = 4, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(3059), 1, - aux_sym_num_lit_token2, - ACTIONS(3055), 22, - sym__ws, - sym_comment, + [81000] = 35, + ACTIONS(9), 1, 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, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3057), 29, + ACTIONS(11), 1, anon_sym_POUND, - anon_sym_DOT, + ACTIONS(15), 1, 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_finally, - anon_sym_return, - anon_sym_initially, - [102308] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(3061), 22, - sym__ws, - sym_comment, - 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, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, + 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(49), 1, + anon_sym_cl, + ACTIONS(3928), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, + sym__bare_set_lit, + STATE(1563), 1, + sym_sym_lit, + STATE(2153), 1, + aux_sym_list_lit_repeat1, + STATE(2202), 1, + sym_old_meta_lit, + STATE(2206), 1, + sym_meta_lit, + STATE(2237), 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(3063), 29, - anon_sym_POUND, + ACTIONS(3924), 2, + sym__ws, + sym_comment, + ACTIONS(3926), 3, 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_finally, - anon_sym_return, - anon_sym_initially, - [102367] = 3, + STATE(753), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1562), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(664), 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, + [81135] = 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(3065), 22, - sym__ws, - sym_comment, - anon_sym_POUND_, + ACTIONS(524), 1, + anon_sym_COLON, + ACTIONS(526), 1, anon_sym_COLON_COLON, + ACTIONS(528), 1, anon_sym_DQUOTE, - anon_sym_CARET, - anon_sym_POUND_CARET, + ACTIONS(534), 1, + aux_sym_sym_lit_token1, + ACTIONS(536), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, + ACTIONS(542), 1, + anon_sym_POUND_QMARK, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, + ACTIONS(789), 1, anon_sym_SQUOTE, + ACTIONS(791), 1, anon_sym_BQUOTE, + ACTIONS(793), 1, anon_sym_COMMA_AT, + ACTIONS(795), 1, + anon_sym_COMMA, + ACTIONS(1442), 1, + anon_sym_POUND, + ACTIONS(3932), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, + sym_sym_lit, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, + aux_sym_list_lit_repeat1, + STATE(2202), 1, + sym_old_meta_lit, + STATE(2206), 1, + sym_meta_lit, + STATE(2237), 1, + sym__metadata_lit, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3067), 29, - anon_sym_POUND, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1440), 2, + sym__ws, + sym_comment, + ACTIONS(3930), 3, 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_finally, - anon_sym_return, - anon_sym_initially, - [102426] = 3, + STATE(1564), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2082), 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, + [81270] = 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(3069), 22, - sym__ws, - sym_comment, - anon_sym_POUND_, + ACTIONS(590), 1, + aux_sym_num_lit_token1, + ACTIONS(857), 1, + anon_sym_COLON, + ACTIONS(859), 1, anon_sym_COLON_COLON, + ACTIONS(861), 1, anon_sym_DQUOTE, - anon_sym_CARET, - anon_sym_POUND_CARET, + ACTIONS(867), 1, + aux_sym_sym_lit_token1, + ACTIONS(869), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, + ACTIONS(875), 1, + anon_sym_POUND_QMARK, + ACTIONS(955), 1, anon_sym_POUND_QMARK_AT, + ACTIONS(957), 1, anon_sym_POUND_SQUOTE, + ACTIONS(959), 1, anon_sym_SQUOTE, + ACTIONS(961), 1, anon_sym_BQUOTE, + ACTIONS(963), 1, anon_sym_COMMA_AT, + ACTIONS(965), 1, + anon_sym_COMMA, + ACTIONS(967), 1, + anon_sym_cl, + ACTIONS(2328), 1, + sym_self_referential_reader_macro, + ACTIONS(3158), 1, + anon_sym_POUND, + STATE(2133), 1, + aux_sym_list_lit_repeat1, + STATE(2202), 1, + sym_old_meta_lit, + STATE(2206), 1, + sym_meta_lit, + STATE(2237), 1, + sym__metadata_lit, + STATE(2313), 1, + sym__bare_set_lit, + STATE(2351), 1, + sym_sym_lit, + ACTIONS(608), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(626), 2, anon_sym_POUNDP, anon_sym_POUNDp, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, + ACTIONS(632), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3071), 29, - anon_sym_POUND, + ACTIONS(969), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(3934), 2, + sym__ws, + sym_comment, + ACTIONS(2326), 3, 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_finally, - anon_sym_return, - anon_sym_initially, - [102485] = 5, + STATE(727), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(2315), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2269), 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, + [81405] = 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(3077), 1, + ACTIONS(590), 1, + aux_sym_num_lit_token1, + ACTIONS(857), 1, anon_sym_COLON, - ACTIONS(3079), 1, + ACTIONS(859), 1, anon_sym_COLON_COLON, - ACTIONS(3073), 21, - sym__ws, - sym_comment, - anon_sym_POUND_, + ACTIONS(861), 1, anon_sym_DQUOTE, - anon_sym_CARET, - anon_sym_POUND_CARET, + ACTIONS(867), 1, + aux_sym_sym_lit_token1, + ACTIONS(869), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, + ACTIONS(875), 1, + anon_sym_POUND_QMARK, + ACTIONS(955), 1, anon_sym_POUND_QMARK_AT, + ACTIONS(957), 1, anon_sym_POUND_SQUOTE, + ACTIONS(959), 1, anon_sym_SQUOTE, + ACTIONS(961), 1, anon_sym_BQUOTE, + ACTIONS(963), 1, anon_sym_COMMA_AT, + ACTIONS(965), 1, + anon_sym_COMMA, + ACTIONS(967), 1, + anon_sym_cl, + ACTIONS(2338), 1, + sym_self_referential_reader_macro, + ACTIONS(3158), 1, + anon_sym_POUND, + STATE(2133), 1, + aux_sym_list_lit_repeat1, + STATE(2202), 1, + sym_old_meta_lit, + STATE(2206), 1, + sym_meta_lit, + STATE(2237), 1, + sym__metadata_lit, + STATE(2313), 1, + sym__bare_set_lit, + STATE(2351), 1, + sym_sym_lit, + ACTIONS(608), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(626), 2, anon_sym_POUNDP, anon_sym_POUNDp, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, + ACTIONS(632), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3075), 28, - anon_sym_POUND, + ACTIONS(969), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(3936), 2, + sym__ws, + sym_comment, + ACTIONS(2336), 3, 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, - 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, - [102548] = 3, + STATE(732), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(2315), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2268), 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, + [81540] = 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(3081), 22, - sym__ws, - sym_comment, - anon_sym_POUND_, + ACTIONS(590), 1, + aux_sym_num_lit_token1, + ACTIONS(857), 1, + anon_sym_COLON, + ACTIONS(859), 1, anon_sym_COLON_COLON, + ACTIONS(861), 1, anon_sym_DQUOTE, - anon_sym_CARET, - anon_sym_POUND_CARET, + ACTIONS(867), 1, + aux_sym_sym_lit_token1, + ACTIONS(869), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, + ACTIONS(875), 1, + anon_sym_POUND_QMARK, + ACTIONS(955), 1, anon_sym_POUND_QMARK_AT, + ACTIONS(957), 1, anon_sym_POUND_SQUOTE, + ACTIONS(959), 1, anon_sym_SQUOTE, + ACTIONS(961), 1, anon_sym_BQUOTE, + ACTIONS(963), 1, anon_sym_COMMA_AT, + ACTIONS(965), 1, + anon_sym_COMMA, + ACTIONS(967), 1, + anon_sym_cl, + ACTIONS(2348), 1, + sym_self_referential_reader_macro, + ACTIONS(3158), 1, + anon_sym_POUND, + STATE(2133), 1, + aux_sym_list_lit_repeat1, + STATE(2202), 1, + sym_old_meta_lit, + STATE(2206), 1, + sym_meta_lit, + STATE(2237), 1, + sym__metadata_lit, + STATE(2313), 1, + sym__bare_set_lit, + STATE(2351), 1, + sym_sym_lit, + ACTIONS(608), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(626), 2, anon_sym_POUNDP, anon_sym_POUNDp, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, + ACTIONS(632), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3083), 29, - anon_sym_POUND, + ACTIONS(969), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(3938), 2, + sym__ws, + sym_comment, + ACTIONS(2346), 3, anon_sym_DOT, + sym_nil_lit, + sym_fancy_literal, + STATE(736), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(2315), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2266), 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, + [81675] = 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(590), 1, aux_sym_num_lit_token1, + ACTIONS(857), 1, anon_sym_COLON, - sym_nil_lit, + ACTIONS(859), 1, + anon_sym_COLON_COLON, + ACTIONS(861), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, aux_sym_sym_lit_token1, + ACTIONS(869), 1, + anon_sym_LPAREN, + ACTIONS(875), 1, anon_sym_POUND_QMARK, + ACTIONS(955), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(957), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(959), 1, + anon_sym_SQUOTE, + ACTIONS(961), 1, + anon_sym_BQUOTE, + ACTIONS(963), 1, + anon_sym_COMMA_AT, + ACTIONS(965), 1, anon_sym_COMMA, - sym_fancy_literal, + ACTIONS(967), 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, - [102607] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(3085), 22, + ACTIONS(2358), 1, + sym_self_referential_reader_macro, + ACTIONS(3158), 1, + anon_sym_POUND, + STATE(2133), 1, + aux_sym_list_lit_repeat1, + STATE(2202), 1, + sym_old_meta_lit, + STATE(2206), 1, + sym_meta_lit, + STATE(2237), 1, + sym__metadata_lit, + STATE(2313), 1, + sym__bare_set_lit, + STATE(2351), 1, + sym_sym_lit, + ACTIONS(608), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(626), 2, + anon_sym_POUNDP, + anon_sym_POUNDp, + ACTIONS(632), 2, + anon_sym_POUNDC, + anon_sym_POUNDc, + ACTIONS(969), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(3940), 2, sym__ws, sym_comment, + ACTIONS(2356), 3, + anon_sym_DOT, + sym_nil_lit, + sym_fancy_literal, + STATE(738), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(2315), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2254), 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, + [81810] = 35, + ACTIONS(9), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(25), 1, anon_sym_CARET, + ACTIONS(27), 1, anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(524), 1, + anon_sym_COLON, + ACTIONS(526), 1, + anon_sym_COLON_COLON, + ACTIONS(528), 1, + anon_sym_DQUOTE, + ACTIONS(534), 1, + aux_sym_sym_lit_token1, + ACTIONS(536), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, + ACTIONS(542), 1, + anon_sym_POUND_QMARK, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, + ACTIONS(789), 1, anon_sym_SQUOTE, + ACTIONS(791), 1, anon_sym_BQUOTE, + ACTIONS(793), 1, anon_sym_COMMA_AT, + ACTIONS(795), 1, + anon_sym_COMMA, + ACTIONS(1442), 1, + anon_sym_POUND, + ACTIONS(3944), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, + sym_sym_lit, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, + aux_sym_list_lit_repeat1, + STATE(2202), 1, + sym_old_meta_lit, + STATE(2206), 1, + sym_meta_lit, + STATE(2237), 1, + sym__metadata_lit, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3087), 29, - anon_sym_POUND, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1440), 2, + sym__ws, + sym_comment, + ACTIONS(3942), 3, 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_finally, - anon_sym_return, - anon_sym_initially, - [102666] = 3, + STATE(1564), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2083), 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, + [81945] = 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(3089), 22, - sym__ws, - sym_comment, - anon_sym_POUND_, + ACTIONS(524), 1, + anon_sym_COLON, + ACTIONS(526), 1, anon_sym_COLON_COLON, + ACTIONS(528), 1, anon_sym_DQUOTE, - anon_sym_CARET, - anon_sym_POUND_CARET, + ACTIONS(534), 1, + aux_sym_sym_lit_token1, + ACTIONS(536), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, + ACTIONS(542), 1, + anon_sym_POUND_QMARK, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, + ACTIONS(789), 1, anon_sym_SQUOTE, + ACTIONS(791), 1, anon_sym_BQUOTE, + ACTIONS(793), 1, anon_sym_COMMA_AT, + ACTIONS(795), 1, + anon_sym_COMMA, + ACTIONS(1442), 1, + anon_sym_POUND, + ACTIONS(3950), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, + sym_sym_lit, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, + aux_sym_list_lit_repeat1, + STATE(2202), 1, + sym_old_meta_lit, + STATE(2206), 1, + sym_meta_lit, + STATE(2237), 1, + sym__metadata_lit, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3091), 29, - anon_sym_POUND, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(3946), 2, + sym__ws, + sym_comment, + ACTIONS(3948), 3, 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_finally, - anon_sym_return, - anon_sym_initially, - [102725] = 3, + STATE(808), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2084), 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, + [82080] = 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(3093), 22, - sym__ws, - sym_comment, - anon_sym_POUND_, + ACTIONS(590), 1, + aux_sym_num_lit_token1, + ACTIONS(857), 1, + anon_sym_COLON, + ACTIONS(859), 1, anon_sym_COLON_COLON, + ACTIONS(861), 1, anon_sym_DQUOTE, - anon_sym_CARET, - anon_sym_POUND_CARET, + ACTIONS(867), 1, + aux_sym_sym_lit_token1, + ACTIONS(869), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, + ACTIONS(875), 1, + anon_sym_POUND_QMARK, + ACTIONS(955), 1, anon_sym_POUND_QMARK_AT, + ACTIONS(957), 1, anon_sym_POUND_SQUOTE, + ACTIONS(959), 1, anon_sym_SQUOTE, + ACTIONS(961), 1, anon_sym_BQUOTE, + ACTIONS(963), 1, anon_sym_COMMA_AT, + ACTIONS(965), 1, + anon_sym_COMMA, + ACTIONS(967), 1, + anon_sym_cl, + ACTIONS(2370), 1, + sym_self_referential_reader_macro, + ACTIONS(3158), 1, + anon_sym_POUND, + STATE(2133), 1, + aux_sym_list_lit_repeat1, + STATE(2202), 1, + sym_old_meta_lit, + STATE(2206), 1, + sym_meta_lit, + STATE(2237), 1, + sym__metadata_lit, + STATE(2313), 1, + sym__bare_set_lit, + STATE(2351), 1, + sym_sym_lit, + ACTIONS(608), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(626), 2, anon_sym_POUNDP, anon_sym_POUNDp, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, + ACTIONS(632), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3095), 29, - anon_sym_POUND, + ACTIONS(969), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(3952), 2, + sym__ws, + sym_comment, + ACTIONS(2368), 3, 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_finally, - anon_sym_return, - anon_sym_initially, - [102784] = 3, + STATE(739), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(2315), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2249), 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, + [82215] = 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(3097), 22, - sym__ws, - sym_comment, - anon_sym_POUND_, + ACTIONS(61), 1, + anon_sym_POUND, + ACTIONS(65), 1, + aux_sym_num_lit_token1, + ACTIONS(67), 1, + anon_sym_COLON, + ACTIONS(69), 1, anon_sym_COLON_COLON, + ACTIONS(71), 1, anon_sym_DQUOTE, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, + ACTIONS(73), 1, + aux_sym_sym_lit_token1, + ACTIONS(77), 1, + anon_sym_POUND_QMARK, + ACTIONS(79), 1, anon_sym_POUND_QMARK_AT, + ACTIONS(81), 1, anon_sym_POUND_SQUOTE, + ACTIONS(83), 1, anon_sym_SQUOTE, + ACTIONS(85), 1, anon_sym_BQUOTE, + ACTIONS(87), 1, anon_sym_COMMA_AT, + ACTIONS(89), 1, + anon_sym_COMMA, + ACTIONS(775), 1, + anon_sym_LPAREN, + ACTIONS(779), 1, + anon_sym_cl, + ACTIONS(3956), 1, + sym_self_referential_reader_macro, + STATE(862), 1, + sym_sym_lit, + STATE(870), 1, + sym__bare_set_lit, + STATE(2156), 1, + aux_sym_list_lit_repeat1, + STATE(2202), 1, + sym_old_meta_lit, + STATE(2206), 1, + sym_meta_lit, + STATE(2237), 1, + sym__metadata_lit, + ACTIONS(75), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(93), 2, anon_sym_POUNDP, anon_sym_POUNDp, + ACTIONS(97), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, + ACTIONS(99), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3099), 29, - anon_sym_POUND, + ACTIONS(1440), 2, + sym__ws, + sym_comment, + ACTIONS(3954), 3, 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_finally, - anon_sym_return, - anon_sym_initially, - [102843] = 3, + STATE(863), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1564), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(838), 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, + [82350] = 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(3101), 22, - sym__ws, - sym_comment, - anon_sym_POUND_, + ACTIONS(524), 1, + anon_sym_COLON, + ACTIONS(526), 1, anon_sym_COLON_COLON, + ACTIONS(528), 1, anon_sym_DQUOTE, - anon_sym_CARET, - anon_sym_POUND_CARET, + ACTIONS(534), 1, + aux_sym_sym_lit_token1, + ACTIONS(536), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, + ACTIONS(542), 1, + anon_sym_POUND_QMARK, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, + ACTIONS(789), 1, anon_sym_SQUOTE, + ACTIONS(791), 1, anon_sym_BQUOTE, + ACTIONS(793), 1, anon_sym_COMMA_AT, + ACTIONS(795), 1, + anon_sym_COMMA, + ACTIONS(1442), 1, + anon_sym_POUND, + ACTIONS(3960), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, + sym_sym_lit, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, + aux_sym_list_lit_repeat1, + STATE(2202), 1, + sym_old_meta_lit, + STATE(2206), 1, + sym_meta_lit, + STATE(2237), 1, + sym__metadata_lit, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3103), 29, - anon_sym_POUND, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1440), 2, + sym__ws, + sym_comment, + ACTIONS(3958), 3, 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_finally, - anon_sym_return, - anon_sym_initially, - [102902] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(3081), 22, - sym__ws, - sym_comment, + STATE(1564), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2085), 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, + [82485] = 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(524), 1, + anon_sym_COLON, + ACTIONS(526), 1, anon_sym_COLON_COLON, + ACTIONS(528), 1, anon_sym_DQUOTE, - anon_sym_CARET, - anon_sym_POUND_CARET, + ACTIONS(534), 1, + aux_sym_sym_lit_token1, + ACTIONS(536), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, + ACTIONS(542), 1, + anon_sym_POUND_QMARK, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, + ACTIONS(789), 1, anon_sym_SQUOTE, + ACTIONS(791), 1, anon_sym_BQUOTE, + ACTIONS(793), 1, anon_sym_COMMA_AT, + ACTIONS(795), 1, + anon_sym_COMMA, + ACTIONS(1442), 1, + anon_sym_POUND, + ACTIONS(3966), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, + sym_sym_lit, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, + aux_sym_list_lit_repeat1, + STATE(2202), 1, + sym_old_meta_lit, + STATE(2206), 1, + sym_meta_lit, + STATE(2237), 1, + sym__metadata_lit, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3083), 29, - anon_sym_POUND, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(3962), 2, + sym__ws, + sym_comment, + ACTIONS(3964), 3, 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_finally, - anon_sym_return, - anon_sym_initially, - [102961] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(3105), 22, - sym__ws, - sym_comment, + STATE(809), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2086), 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, + [82620] = 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, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, + 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, - anon_sym_POUNDP, - anon_sym_POUNDp, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3107), 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, + ACTIONS(45), 1, 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, - [103020] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3109), 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_RPAREN, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(3972), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, + sym__bare_set_lit, + STATE(1563), 1, + sym_sym_lit, + STATE(2153), 1, + aux_sym_list_lit_repeat1, + STATE(2202), 1, + sym_old_meta_lit, + STATE(2206), 1, + sym_meta_lit, + STATE(2237), 1, + sym__metadata_lit, + ACTIONS(31), 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, + 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(3111), 29, - anon_sym_POUND, + ACTIONS(3968), 2, + sym__ws, + sym_comment, + ACTIONS(3970), 3, 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_finally, - anon_sym_return, - anon_sym_initially, - [103079] = 3, + STATE(761), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1562), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1560), 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, + [82755] = 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(3113), 22, - sym__ws, - sym_comment, - anon_sym_POUND_, + ACTIONS(61), 1, + anon_sym_POUND, + ACTIONS(65), 1, + aux_sym_num_lit_token1, + ACTIONS(67), 1, + anon_sym_COLON, + ACTIONS(69), 1, anon_sym_COLON_COLON, + ACTIONS(71), 1, anon_sym_DQUOTE, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, + ACTIONS(73), 1, + aux_sym_sym_lit_token1, + ACTIONS(77), 1, + anon_sym_POUND_QMARK, + ACTIONS(79), 1, anon_sym_POUND_QMARK_AT, + ACTIONS(81), 1, anon_sym_POUND_SQUOTE, + ACTIONS(83), 1, anon_sym_SQUOTE, + ACTIONS(85), 1, anon_sym_BQUOTE, + ACTIONS(87), 1, anon_sym_COMMA_AT, + ACTIONS(89), 1, + anon_sym_COMMA, + ACTIONS(775), 1, + anon_sym_LPAREN, + ACTIONS(779), 1, + anon_sym_cl, + ACTIONS(3978), 1, + sym_self_referential_reader_macro, + STATE(862), 1, + sym_sym_lit, + STATE(870), 1, + sym__bare_set_lit, + STATE(2156), 1, + aux_sym_list_lit_repeat1, + STATE(2202), 1, + sym_old_meta_lit, + STATE(2206), 1, + sym_meta_lit, + STATE(2237), 1, + sym__metadata_lit, + ACTIONS(75), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(93), 2, anon_sym_POUNDP, anon_sym_POUNDp, + ACTIONS(97), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, + ACTIONS(99), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3115), 29, - anon_sym_POUND, + ACTIONS(3974), 2, + sym__ws, + sym_comment, + ACTIONS(3976), 3, 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_finally, - anon_sym_return, - anon_sym_initially, - [103138] = 3, + STATE(693), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(863), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(931), 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, + [82890] = 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(3117), 22, - sym__ws, - sym_comment, - anon_sym_POUND_, + ACTIONS(524), 1, + anon_sym_COLON, + ACTIONS(526), 1, anon_sym_COLON_COLON, + ACTIONS(528), 1, anon_sym_DQUOTE, - anon_sym_CARET, - anon_sym_POUND_CARET, + ACTIONS(534), 1, + aux_sym_sym_lit_token1, + ACTIONS(536), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, + ACTIONS(542), 1, + anon_sym_POUND_QMARK, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, + ACTIONS(789), 1, anon_sym_SQUOTE, + ACTIONS(791), 1, anon_sym_BQUOTE, + ACTIONS(793), 1, anon_sym_COMMA_AT, + ACTIONS(795), 1, + anon_sym_COMMA, + ACTIONS(1442), 1, + anon_sym_POUND, + ACTIONS(2828), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, + sym_sym_lit, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, + aux_sym_list_lit_repeat1, + STATE(2202), 1, + sym_old_meta_lit, + STATE(2206), 1, + sym_meta_lit, + STATE(2237), 1, + sym__metadata_lit, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3119), 29, - anon_sym_POUND, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(3980), 2, + sym__ws, + sym_comment, + ACTIONS(2826), 3, 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_finally, - anon_sym_return, - anon_sym_initially, - [103197] = 3, + STATE(760), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1872), 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, + [83025] = 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(3121), 22, - sym__ws, - sym_comment, - anon_sym_POUND_, + ACTIONS(524), 1, + anon_sym_COLON, + ACTIONS(526), 1, anon_sym_COLON_COLON, + ACTIONS(528), 1, anon_sym_DQUOTE, - anon_sym_CARET, - anon_sym_POUND_CARET, + ACTIONS(534), 1, + aux_sym_sym_lit_token1, + ACTIONS(536), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, + ACTIONS(542), 1, + anon_sym_POUND_QMARK, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, + ACTIONS(789), 1, anon_sym_SQUOTE, + ACTIONS(791), 1, anon_sym_BQUOTE, + ACTIONS(793), 1, anon_sym_COMMA_AT, + ACTIONS(795), 1, + anon_sym_COMMA, + ACTIONS(1442), 1, + anon_sym_POUND, + ACTIONS(3984), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, + sym_sym_lit, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, + aux_sym_list_lit_repeat1, + STATE(2202), 1, + sym_old_meta_lit, + STATE(2206), 1, + sym_meta_lit, + STATE(2237), 1, + sym__metadata_lit, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3123), 29, - anon_sym_POUND, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1440), 2, + sym__ws, + sym_comment, + ACTIONS(3982), 3, 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_finally, - anon_sym_return, - anon_sym_initially, - [103256] = 3, + STATE(1564), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2087), 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, + [83160] = 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(3125), 22, - sym__ws, - sym_comment, - anon_sym_POUND_, + ACTIONS(524), 1, + anon_sym_COLON, + ACTIONS(526), 1, anon_sym_COLON_COLON, + ACTIONS(528), 1, anon_sym_DQUOTE, - anon_sym_CARET, - anon_sym_POUND_CARET, + ACTIONS(534), 1, + aux_sym_sym_lit_token1, + ACTIONS(536), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, + ACTIONS(542), 1, + anon_sym_POUND_QMARK, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, + ACTIONS(789), 1, anon_sym_SQUOTE, + ACTIONS(791), 1, anon_sym_BQUOTE, + ACTIONS(793), 1, anon_sym_COMMA_AT, + ACTIONS(795), 1, + anon_sym_COMMA, + ACTIONS(1442), 1, + anon_sym_POUND, + ACTIONS(2822), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, + sym_sym_lit, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, + aux_sym_list_lit_repeat1, + STATE(2202), 1, + sym_old_meta_lit, + STATE(2206), 1, + sym_meta_lit, + STATE(2237), 1, + sym__metadata_lit, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3127), 29, - anon_sym_POUND, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1440), 2, + sym__ws, + sym_comment, + ACTIONS(2820), 3, 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_finally, - anon_sym_return, - anon_sym_initially, - [103315] = 3, + STATE(1564), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1874), 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, + [83295] = 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(3129), 22, - sym__ws, - sym_comment, - anon_sym_POUND_, + ACTIONS(524), 1, + anon_sym_COLON, + ACTIONS(526), 1, anon_sym_COLON_COLON, + ACTIONS(528), 1, anon_sym_DQUOTE, - anon_sym_CARET, - anon_sym_POUND_CARET, + ACTIONS(534), 1, + aux_sym_sym_lit_token1, + ACTIONS(536), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, + ACTIONS(542), 1, + anon_sym_POUND_QMARK, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, + ACTIONS(789), 1, anon_sym_SQUOTE, + ACTIONS(791), 1, anon_sym_BQUOTE, + ACTIONS(793), 1, anon_sym_COMMA_AT, + ACTIONS(795), 1, + anon_sym_COMMA, + ACTIONS(1442), 1, + anon_sym_POUND, + ACTIONS(3988), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, + sym_sym_lit, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, + aux_sym_list_lit_repeat1, + STATE(2202), 1, + sym_old_meta_lit, + STATE(2206), 1, + sym_meta_lit, + STATE(2237), 1, + sym__metadata_lit, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3131), 29, - anon_sym_POUND, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1440), 2, + sym__ws, + sym_comment, + ACTIONS(3986), 3, 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_finally, - anon_sym_return, - anon_sym_initially, - [103374] = 3, + STATE(1564), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2088), 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, + [83430] = 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(3133), 22, - sym__ws, - sym_comment, - anon_sym_POUND_, + ACTIONS(524), 1, + anon_sym_COLON, + ACTIONS(526), 1, anon_sym_COLON_COLON, + ACTIONS(528), 1, anon_sym_DQUOTE, - anon_sym_CARET, - anon_sym_POUND_CARET, + ACTIONS(534), 1, + aux_sym_sym_lit_token1, + ACTIONS(536), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, + ACTIONS(542), 1, + anon_sym_POUND_QMARK, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, + ACTIONS(789), 1, anon_sym_SQUOTE, + ACTIONS(791), 1, anon_sym_BQUOTE, + ACTIONS(793), 1, anon_sym_COMMA_AT, + ACTIONS(795), 1, + anon_sym_COMMA, + ACTIONS(1442), 1, + anon_sym_POUND, + ACTIONS(3994), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, + sym_sym_lit, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, + aux_sym_list_lit_repeat1, + STATE(2202), 1, + sym_old_meta_lit, + STATE(2206), 1, + sym_meta_lit, + STATE(2237), 1, + sym__metadata_lit, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3135), 29, - anon_sym_POUND, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(3990), 2, + sym__ws, + sym_comment, + ACTIONS(3992), 3, 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_finally, - anon_sym_return, - anon_sym_initially, - [103433] = 3, + STATE(402), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2080), 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, + [83565] = 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(3137), 22, - sym__ws, - sym_comment, - anon_sym_POUND_, + ACTIONS(524), 1, + anon_sym_COLON, + ACTIONS(526), 1, anon_sym_COLON_COLON, + ACTIONS(528), 1, anon_sym_DQUOTE, - anon_sym_CARET, - anon_sym_POUND_CARET, + ACTIONS(534), 1, + aux_sym_sym_lit_token1, + ACTIONS(536), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, + ACTIONS(542), 1, + anon_sym_POUND_QMARK, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, + ACTIONS(789), 1, anon_sym_SQUOTE, + ACTIONS(791), 1, anon_sym_BQUOTE, + ACTIONS(793), 1, anon_sym_COMMA_AT, + ACTIONS(795), 1, + anon_sym_COMMA, + ACTIONS(1442), 1, + anon_sym_POUND, + ACTIONS(3998), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, + sym_sym_lit, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, + aux_sym_list_lit_repeat1, + STATE(2202), 1, + sym_old_meta_lit, + STATE(2206), 1, + sym_meta_lit, + STATE(2237), 1, + sym__metadata_lit, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3139), 29, - anon_sym_POUND, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1440), 2, + sym__ws, + sym_comment, + ACTIONS(3996), 3, 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_finally, - anon_sym_return, - anon_sym_initially, - [103492] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(3141), 22, - sym__ws, - sym_comment, + STATE(1564), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1963), 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, + [83700] = 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, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, + 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(749), 1, + aux_sym_num_lit_token1, + ACTIONS(753), 1, anon_sym_POUND_SQUOTE, + ACTIONS(755), 1, anon_sym_SQUOTE, + ACTIONS(757), 1, anon_sym_BQUOTE, + ACTIONS(759), 1, anon_sym_COMMA_AT, + ACTIONS(761), 1, + anon_sym_COMMA, + ACTIONS(1448), 1, + anon_sym_POUND, + ACTIONS(3972), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, + sym__bare_set_lit, + STATE(1563), 1, + sym_sym_lit, + STATE(2154), 1, + aux_sym_list_lit_repeat1, + STATE(2202), 1, + sym_old_meta_lit, + STATE(2206), 1, + sym_meta_lit, + STATE(2237), 1, + sym__metadata_lit, + ACTIONS(51), 2, anon_sym_POUNDP, anon_sym_POUNDp, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, + ACTIONS(57), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3143), 29, - anon_sym_POUND, + ACTIONS(751), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(763), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(4000), 2, + sym__ws, + sym_comment, + ACTIONS(3970), 3, 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_finally, - anon_sym_return, - anon_sym_initially, - [103551] = 3, + STATE(361), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1562), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1560), 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, + [83835] = 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(3145), 22, - sym__ws, - sym_comment, - anon_sym_POUND_, + ACTIONS(524), 1, + anon_sym_COLON, + ACTIONS(526), 1, anon_sym_COLON_COLON, + ACTIONS(528), 1, anon_sym_DQUOTE, - anon_sym_CARET, - anon_sym_POUND_CARET, + ACTIONS(534), 1, + aux_sym_sym_lit_token1, + ACTIONS(536), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, + ACTIONS(542), 1, + anon_sym_POUND_QMARK, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, + ACTIONS(789), 1, anon_sym_SQUOTE, + ACTIONS(791), 1, anon_sym_BQUOTE, + ACTIONS(793), 1, anon_sym_COMMA_AT, + ACTIONS(795), 1, + anon_sym_COMMA, + ACTIONS(1442), 1, + anon_sym_POUND, + ACTIONS(2812), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, + sym_sym_lit, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, + aux_sym_list_lit_repeat1, + STATE(2202), 1, + sym_old_meta_lit, + STATE(2206), 1, + sym_meta_lit, + STATE(2237), 1, + sym__metadata_lit, + ACTIONS(558), 2, anon_sym_POUNDP, - anon_sym_POUNDp, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, + anon_sym_POUNDp, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3147), 29, - anon_sym_POUND, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(4002), 2, + sym__ws, + sym_comment, + ACTIONS(2810), 3, 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_finally, - anon_sym_return, - anon_sym_initially, - [103610] = 3, + STATE(765), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1881), 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, + [83970] = 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(3081), 22, - sym__ws, - sym_comment, - anon_sym_POUND_, + ACTIONS(524), 1, + anon_sym_COLON, + ACTIONS(526), 1, anon_sym_COLON_COLON, + ACTIONS(528), 1, anon_sym_DQUOTE, - anon_sym_CARET, - anon_sym_POUND_CARET, + ACTIONS(534), 1, + aux_sym_sym_lit_token1, + ACTIONS(536), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, + ACTIONS(542), 1, + anon_sym_POUND_QMARK, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, + ACTIONS(789), 1, anon_sym_SQUOTE, + ACTIONS(791), 1, anon_sym_BQUOTE, + ACTIONS(793), 1, anon_sym_COMMA_AT, + ACTIONS(795), 1, + anon_sym_COMMA, + ACTIONS(1442), 1, + anon_sym_POUND, + ACTIONS(4006), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, + sym_sym_lit, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, + aux_sym_list_lit_repeat1, + STATE(2202), 1, + sym_old_meta_lit, + STATE(2206), 1, + sym_meta_lit, + STATE(2237), 1, + sym__metadata_lit, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3083), 29, - anon_sym_POUND, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1440), 2, + sym__ws, + sym_comment, + ACTIONS(4004), 3, 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_finally, - anon_sym_return, - anon_sym_initially, - [103669] = 3, + STATE(1564), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2071), 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, + [84105] = 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(3149), 22, - sym__ws, - sym_comment, - anon_sym_POUND_, + ACTIONS(524), 1, + anon_sym_COLON, + ACTIONS(526), 1, anon_sym_COLON_COLON, + ACTIONS(528), 1, anon_sym_DQUOTE, - anon_sym_CARET, - anon_sym_POUND_CARET, + ACTIONS(534), 1, + aux_sym_sym_lit_token1, + ACTIONS(536), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, + ACTIONS(542), 1, + anon_sym_POUND_QMARK, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, + ACTIONS(789), 1, anon_sym_SQUOTE, + ACTIONS(791), 1, anon_sym_BQUOTE, + ACTIONS(793), 1, anon_sym_COMMA_AT, + ACTIONS(795), 1, + anon_sym_COMMA, + ACTIONS(1442), 1, + anon_sym_POUND, + ACTIONS(4012), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, + sym_sym_lit, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, + aux_sym_list_lit_repeat1, + STATE(2202), 1, + sym_old_meta_lit, + STATE(2206), 1, + sym_meta_lit, + STATE(2237), 1, + sym__metadata_lit, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3151), 29, - anon_sym_POUND, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(4008), 2, + sym__ws, + sym_comment, + ACTIONS(4010), 3, 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_finally, - anon_sym_return, - anon_sym_initially, - [103728] = 3, + STATE(305), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2054), 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, + [84240] = 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(3153), 22, - sym__ws, - sym_comment, - anon_sym_POUND_, + ACTIONS(524), 1, + anon_sym_COLON, + ACTIONS(526), 1, anon_sym_COLON_COLON, + ACTIONS(528), 1, anon_sym_DQUOTE, - anon_sym_CARET, - anon_sym_POUND_CARET, + ACTIONS(534), 1, + aux_sym_sym_lit_token1, + ACTIONS(536), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, + ACTIONS(542), 1, + anon_sym_POUND_QMARK, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, + ACTIONS(789), 1, anon_sym_SQUOTE, + ACTIONS(791), 1, anon_sym_BQUOTE, + ACTIONS(793), 1, anon_sym_COMMA_AT, + ACTIONS(795), 1, + anon_sym_COMMA, + ACTIONS(1442), 1, + anon_sym_POUND, + ACTIONS(2804), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, + sym_sym_lit, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, + aux_sym_list_lit_repeat1, + STATE(2202), 1, + sym_old_meta_lit, + STATE(2206), 1, + sym_meta_lit, + STATE(2237), 1, + sym__metadata_lit, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3155), 29, - anon_sym_POUND, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1440), 2, + sym__ws, + sym_comment, + ACTIONS(2802), 3, 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_finally, - anon_sym_return, - anon_sym_initially, - [103787] = 3, + STATE(1564), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1882), 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, + [84375] = 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(3157), 22, - sym__ws, - sym_comment, - anon_sym_POUND_, + ACTIONS(524), 1, + anon_sym_COLON, + ACTIONS(526), 1, anon_sym_COLON_COLON, + ACTIONS(528), 1, anon_sym_DQUOTE, - anon_sym_CARET, - anon_sym_POUND_CARET, + ACTIONS(534), 1, + aux_sym_sym_lit_token1, + ACTIONS(536), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, + ACTIONS(542), 1, + anon_sym_POUND_QMARK, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, + ACTIONS(789), 1, anon_sym_SQUOTE, + ACTIONS(791), 1, anon_sym_BQUOTE, + ACTIONS(793), 1, anon_sym_COMMA_AT, + ACTIONS(795), 1, + anon_sym_COMMA, + ACTIONS(1442), 1, + anon_sym_POUND, + ACTIONS(4018), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, + sym_sym_lit, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, + aux_sym_list_lit_repeat1, + STATE(2202), 1, + sym_old_meta_lit, + STATE(2206), 1, + sym_meta_lit, + STATE(2237), 1, + sym__metadata_lit, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3159), 29, - anon_sym_POUND, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(4014), 2, + sym__ws, + sym_comment, + ACTIONS(4016), 3, 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_finally, - anon_sym_return, - anon_sym_initially, - [103846] = 3, + STATE(785), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1964), 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, + [84510] = 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(3161), 22, - sym__ws, - sym_comment, - anon_sym_POUND_, + ACTIONS(524), 1, + anon_sym_COLON, + ACTIONS(526), 1, anon_sym_COLON_COLON, + ACTIONS(528), 1, anon_sym_DQUOTE, - anon_sym_CARET, - anon_sym_POUND_CARET, + ACTIONS(534), 1, + aux_sym_sym_lit_token1, + ACTIONS(536), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, + ACTIONS(542), 1, + anon_sym_POUND_QMARK, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, + ACTIONS(789), 1, anon_sym_SQUOTE, + ACTIONS(791), 1, anon_sym_BQUOTE, + ACTIONS(793), 1, anon_sym_COMMA_AT, + ACTIONS(795), 1, + anon_sym_COMMA, + ACTIONS(1442), 1, + anon_sym_POUND, + ACTIONS(4022), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, + sym_sym_lit, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, + aux_sym_list_lit_repeat1, + STATE(2202), 1, + sym_old_meta_lit, + STATE(2206), 1, + sym_meta_lit, + STATE(2237), 1, + sym__metadata_lit, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3163), 29, - anon_sym_POUND, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1440), 2, + sym__ws, + sym_comment, + ACTIONS(4020), 3, 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_finally, - anon_sym_return, - anon_sym_initially, - [103905] = 3, + STATE(1564), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1965), 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, + [84645] = 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(3089), 22, - sym__ws, - sym_comment, - anon_sym_POUND_, + ACTIONS(524), 1, + anon_sym_COLON, + ACTIONS(526), 1, anon_sym_COLON_COLON, + ACTIONS(528), 1, anon_sym_DQUOTE, - anon_sym_CARET, - anon_sym_POUND_CARET, + ACTIONS(534), 1, + aux_sym_sym_lit_token1, + ACTIONS(536), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, + ACTIONS(542), 1, + anon_sym_POUND_QMARK, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, + ACTIONS(789), 1, anon_sym_SQUOTE, + ACTIONS(791), 1, anon_sym_BQUOTE, + ACTIONS(793), 1, anon_sym_COMMA_AT, + ACTIONS(795), 1, + anon_sym_COMMA, + ACTIONS(1442), 1, + anon_sym_POUND, + ACTIONS(4026), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, + sym_sym_lit, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, + aux_sym_list_lit_repeat1, + STATE(2202), 1, + sym_old_meta_lit, + STATE(2206), 1, + sym_meta_lit, + STATE(2237), 1, + sym__metadata_lit, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3091), 29, - anon_sym_POUND, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1440), 2, + sym__ws, + sym_comment, + ACTIONS(4024), 3, 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_finally, - anon_sym_return, - anon_sym_initially, - [103964] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(3165), 22, - sym__ws, - sym_comment, + STATE(1564), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2051), 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, + [84780] = 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, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, + 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, - anon_sym_POUNDP, - anon_sym_POUNDp, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3167), 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, + ACTIONS(45), 1, 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, - [104023] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3169), 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_RPAREN, + ACTIONS(49), 1, + anon_sym_cl, + ACTIONS(4032), 1, + sym_self_referential_reader_macro, + STATE(1561), 1, + sym__bare_set_lit, + STATE(1563), 1, + sym_sym_lit, + STATE(2153), 1, + aux_sym_list_lit_repeat1, + STATE(2202), 1, + sym_old_meta_lit, + STATE(2206), 1, + sym_meta_lit, + STATE(2237), 1, + sym__metadata_lit, + ACTIONS(31), 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, + 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(3171), 29, - anon_sym_POUND, + ACTIONS(4028), 2, + sym__ws, + sym_comment, + ACTIONS(4030), 3, 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_finally, - anon_sym_return, - anon_sym_initially, - [104082] = 3, + STATE(757), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1562), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(663), 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, + [84915] = 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(3173), 22, - sym__ws, - sym_comment, - anon_sym_POUND_, + ACTIONS(524), 1, + anon_sym_COLON, + ACTIONS(526), 1, anon_sym_COLON_COLON, + ACTIONS(528), 1, anon_sym_DQUOTE, - anon_sym_CARET, - anon_sym_POUND_CARET, + ACTIONS(534), 1, + aux_sym_sym_lit_token1, + ACTIONS(536), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, + ACTIONS(542), 1, + anon_sym_POUND_QMARK, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, + ACTIONS(789), 1, anon_sym_SQUOTE, + ACTIONS(791), 1, anon_sym_BQUOTE, + ACTIONS(793), 1, anon_sym_COMMA_AT, + ACTIONS(795), 1, + anon_sym_COMMA, + ACTIONS(1442), 1, + anon_sym_POUND, + ACTIONS(4038), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, + sym_sym_lit, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, + aux_sym_list_lit_repeat1, + STATE(2202), 1, + sym_old_meta_lit, + STATE(2206), 1, + sym_meta_lit, + STATE(2237), 1, + sym__metadata_lit, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3175), 29, - anon_sym_POUND, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(4034), 2, + sym__ws, + sym_comment, + ACTIONS(4036), 3, 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_finally, - anon_sym_return, - anon_sym_initially, - [104141] = 3, + STATE(493), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2038), 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, + [85050] = 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(3177), 22, - sym__ws, - sym_comment, - anon_sym_POUND_, + ACTIONS(524), 1, + anon_sym_COLON, + ACTIONS(526), 1, anon_sym_COLON_COLON, + ACTIONS(528), 1, anon_sym_DQUOTE, - anon_sym_CARET, - anon_sym_POUND_CARET, + ACTIONS(534), 1, + aux_sym_sym_lit_token1, + ACTIONS(536), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, + ACTIONS(542), 1, + anon_sym_POUND_QMARK, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, + ACTIONS(789), 1, anon_sym_SQUOTE, + ACTIONS(791), 1, anon_sym_BQUOTE, + ACTIONS(793), 1, anon_sym_COMMA_AT, + ACTIONS(795), 1, + anon_sym_COMMA, + ACTIONS(1442), 1, + anon_sym_POUND, + ACTIONS(4042), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, + sym_sym_lit, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, + aux_sym_list_lit_repeat1, + STATE(2202), 1, + sym_old_meta_lit, + STATE(2206), 1, + sym_meta_lit, + STATE(2237), 1, + sym__metadata_lit, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3179), 29, - anon_sym_POUND, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1440), 2, + sym__ws, + sym_comment, + ACTIONS(4040), 3, 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_finally, - anon_sym_return, - anon_sym_initially, - [104200] = 3, + STATE(1564), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2022), 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, + [85185] = 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(3181), 22, - sym__ws, - sym_comment, - anon_sym_POUND_, + ACTIONS(524), 1, + anon_sym_COLON, + ACTIONS(526), 1, anon_sym_COLON_COLON, + ACTIONS(528), 1, anon_sym_DQUOTE, - anon_sym_CARET, - anon_sym_POUND_CARET, + ACTIONS(534), 1, + aux_sym_sym_lit_token1, + ACTIONS(536), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, + ACTIONS(542), 1, + anon_sym_POUND_QMARK, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, + ACTIONS(789), 1, anon_sym_SQUOTE, + ACTIONS(791), 1, anon_sym_BQUOTE, + ACTIONS(793), 1, anon_sym_COMMA_AT, + ACTIONS(795), 1, + anon_sym_COMMA, + ACTIONS(1442), 1, + anon_sym_POUND, + ACTIONS(4046), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, + sym_sym_lit, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, + aux_sym_list_lit_repeat1, + STATE(2202), 1, + sym_old_meta_lit, + STATE(2206), 1, + sym_meta_lit, + STATE(2237), 1, + sym__metadata_lit, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3183), 29, - anon_sym_POUND, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1440), 2, + sym__ws, + sym_comment, + ACTIONS(4044), 3, 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_finally, - anon_sym_return, - anon_sym_initially, - [104259] = 3, + STATE(1564), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1973), 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, + [85320] = 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(3185), 22, - sym__ws, - sym_comment, - anon_sym_POUND_, + ACTIONS(524), 1, + anon_sym_COLON, + ACTIONS(526), 1, anon_sym_COLON_COLON, + ACTIONS(528), 1, anon_sym_DQUOTE, - anon_sym_CARET, - anon_sym_POUND_CARET, + ACTIONS(534), 1, + aux_sym_sym_lit_token1, + ACTIONS(536), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, + ACTIONS(542), 1, + anon_sym_POUND_QMARK, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, + ACTIONS(789), 1, anon_sym_SQUOTE, + ACTIONS(791), 1, anon_sym_BQUOTE, + ACTIONS(793), 1, anon_sym_COMMA_AT, + ACTIONS(795), 1, + anon_sym_COMMA, + ACTIONS(1442), 1, + anon_sym_POUND, + ACTIONS(4050), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, + sym_sym_lit, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, + aux_sym_list_lit_repeat1, + STATE(2202), 1, + sym_old_meta_lit, + STATE(2206), 1, + sym_meta_lit, + STATE(2237), 1, + sym__metadata_lit, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3187), 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, - 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, - [104318] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(3189), 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_RPAREN, + ACTIONS(785), 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, + ACTIONS(797), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3191), 29, - anon_sym_POUND, + ACTIONS(1440), 2, + sym__ws, + sym_comment, + ACTIONS(4048), 3, 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_finally, - anon_sym_return, - anon_sym_initially, - [104377] = 3, + STATE(1564), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1974), 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, + [85455] = 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(3193), 22, - sym__ws, - sym_comment, - anon_sym_POUND_, + ACTIONS(524), 1, + anon_sym_COLON, + ACTIONS(526), 1, anon_sym_COLON_COLON, + ACTIONS(528), 1, anon_sym_DQUOTE, - anon_sym_CARET, - anon_sym_POUND_CARET, + ACTIONS(534), 1, + aux_sym_sym_lit_token1, + ACTIONS(536), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, + ACTIONS(542), 1, + anon_sym_POUND_QMARK, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, + ACTIONS(789), 1, anon_sym_SQUOTE, + ACTIONS(791), 1, anon_sym_BQUOTE, + ACTIONS(793), 1, anon_sym_COMMA_AT, + ACTIONS(795), 1, + anon_sym_COMMA, + ACTIONS(1442), 1, + anon_sym_POUND, + ACTIONS(4054), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, + sym_sym_lit, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, + aux_sym_list_lit_repeat1, + STATE(2202), 1, + sym_old_meta_lit, + STATE(2206), 1, + sym_meta_lit, + STATE(2237), 1, + sym__metadata_lit, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3195), 29, - anon_sym_POUND, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1440), 2, + sym__ws, + sym_comment, + ACTIONS(4052), 3, 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_finally, - anon_sym_return, - anon_sym_initially, - [104436] = 3, + STATE(1564), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2037), 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, + [85590] = 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(3197), 22, - sym__ws, - sym_comment, - anon_sym_POUND_, + ACTIONS(524), 1, + anon_sym_COLON, + ACTIONS(526), 1, anon_sym_COLON_COLON, + ACTIONS(528), 1, anon_sym_DQUOTE, - anon_sym_CARET, - anon_sym_POUND_CARET, + ACTIONS(534), 1, + aux_sym_sym_lit_token1, + ACTIONS(536), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, + ACTIONS(542), 1, + anon_sym_POUND_QMARK, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, + ACTIONS(789), 1, anon_sym_SQUOTE, + ACTIONS(791), 1, anon_sym_BQUOTE, + ACTIONS(793), 1, anon_sym_COMMA_AT, + ACTIONS(795), 1, + anon_sym_COMMA, + ACTIONS(1442), 1, + anon_sym_POUND, + ACTIONS(2718), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, + sym_sym_lit, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, + aux_sym_list_lit_repeat1, + STATE(2202), 1, + sym_old_meta_lit, + STATE(2206), 1, + sym_meta_lit, + STATE(2237), 1, + sym__metadata_lit, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3199), 29, - anon_sym_POUND, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1440), 2, + sym__ws, + sym_comment, + ACTIONS(2716), 3, 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_finally, - anon_sym_return, - anon_sym_initially, - [104495] = 3, + STATE(1564), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1947), 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, + [85725] = 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(3201), 22, - sym__ws, - sym_comment, - anon_sym_POUND_, + ACTIONS(524), 1, + anon_sym_COLON, + ACTIONS(526), 1, anon_sym_COLON_COLON, + ACTIONS(528), 1, anon_sym_DQUOTE, - anon_sym_CARET, - anon_sym_POUND_CARET, + ACTIONS(534), 1, + aux_sym_sym_lit_token1, + ACTIONS(536), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, + ACTIONS(542), 1, + anon_sym_POUND_QMARK, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, + ACTIONS(789), 1, anon_sym_SQUOTE, + ACTIONS(791), 1, anon_sym_BQUOTE, + ACTIONS(793), 1, anon_sym_COMMA_AT, + ACTIONS(795), 1, + anon_sym_COMMA, + ACTIONS(1442), 1, + anon_sym_POUND, + ACTIONS(2800), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, + sym_sym_lit, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, + aux_sym_list_lit_repeat1, + STATE(2202), 1, + sym_old_meta_lit, + STATE(2206), 1, + sym_meta_lit, + STATE(2237), 1, + sym__metadata_lit, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3203), 29, - anon_sym_POUND, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1440), 2, + sym__ws, + sym_comment, + ACTIONS(2798), 3, 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_finally, - anon_sym_return, - anon_sym_initially, - [104554] = 3, + STATE(1564), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1890), 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, + [85860] = 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(3205), 22, - sym__ws, - sym_comment, - anon_sym_POUND_, + ACTIONS(524), 1, + anon_sym_COLON, + ACTIONS(526), 1, anon_sym_COLON_COLON, + ACTIONS(528), 1, anon_sym_DQUOTE, - anon_sym_CARET, - anon_sym_POUND_CARET, + ACTIONS(534), 1, + aux_sym_sym_lit_token1, + ACTIONS(536), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, + ACTIONS(542), 1, + anon_sym_POUND_QMARK, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, + ACTIONS(789), 1, anon_sym_SQUOTE, + ACTIONS(791), 1, anon_sym_BQUOTE, + ACTIONS(793), 1, anon_sym_COMMA_AT, + ACTIONS(795), 1, + anon_sym_COMMA, + ACTIONS(1442), 1, + anon_sym_POUND, + ACTIONS(2744), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, + sym_sym_lit, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, + aux_sym_list_lit_repeat1, + STATE(2202), 1, + sym_old_meta_lit, + STATE(2206), 1, + sym_meta_lit, + STATE(2237), 1, + sym__metadata_lit, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3207), 29, - anon_sym_POUND, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(4056), 2, + sym__ws, + sym_comment, + ACTIONS(2742), 3, 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_finally, - anon_sym_return, - anon_sym_initially, - [104613] = 3, + STATE(801), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1885), 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, + [85995] = 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(3209), 22, - sym__ws, - sym_comment, - anon_sym_POUND_, + ACTIONS(524), 1, + anon_sym_COLON, + ACTIONS(526), 1, anon_sym_COLON_COLON, + ACTIONS(528), 1, anon_sym_DQUOTE, - anon_sym_CARET, - anon_sym_POUND_CARET, + ACTIONS(534), 1, + aux_sym_sym_lit_token1, + ACTIONS(536), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, + ACTIONS(542), 1, + anon_sym_POUND_QMARK, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, + ACTIONS(789), 1, anon_sym_SQUOTE, + ACTIONS(791), 1, anon_sym_BQUOTE, + ACTIONS(793), 1, anon_sym_COMMA_AT, + ACTIONS(795), 1, + anon_sym_COMMA, + ACTIONS(1442), 1, + anon_sym_POUND, + ACTIONS(4062), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, + sym_sym_lit, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, + aux_sym_list_lit_repeat1, + STATE(2202), 1, + sym_old_meta_lit, + STATE(2206), 1, + sym_meta_lit, + STATE(2237), 1, + sym__metadata_lit, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3211), 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, - 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, - [104672] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(3213), 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_RPAREN, + ACTIONS(785), 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, + ACTIONS(797), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3215), 29, - anon_sym_POUND, + ACTIONS(4058), 2, + sym__ws, + sym_comment, + ACTIONS(4060), 3, 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_finally, - anon_sym_return, - anon_sym_initially, - [104731] = 3, + STATE(235), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2045), 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, + [86130] = 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(3217), 22, - sym__ws, - sym_comment, - anon_sym_POUND_, + ACTIONS(524), 1, + anon_sym_COLON, + ACTIONS(526), 1, anon_sym_COLON_COLON, + ACTIONS(528), 1, anon_sym_DQUOTE, - anon_sym_CARET, - anon_sym_POUND_CARET, + ACTIONS(534), 1, + aux_sym_sym_lit_token1, + ACTIONS(536), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, + ACTIONS(542), 1, + anon_sym_POUND_QMARK, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, + ACTIONS(789), 1, anon_sym_SQUOTE, + ACTIONS(791), 1, anon_sym_BQUOTE, + ACTIONS(793), 1, anon_sym_COMMA_AT, + ACTIONS(795), 1, + anon_sym_COMMA, + ACTIONS(1442), 1, + anon_sym_POUND, + ACTIONS(4066), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, + sym_sym_lit, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, + aux_sym_list_lit_repeat1, + STATE(2202), 1, + sym_old_meta_lit, + STATE(2206), 1, + sym_meta_lit, + STATE(2237), 1, + sym__metadata_lit, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3219), 29, - anon_sym_POUND, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1440), 2, + sym__ws, + sym_comment, + ACTIONS(4064), 3, 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_finally, - anon_sym_return, - anon_sym_initially, - [104790] = 3, + STATE(1564), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1976), 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, + [86265] = 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(3221), 22, - sym__ws, - sym_comment, - anon_sym_POUND_, + ACTIONS(524), 1, + anon_sym_COLON, + ACTIONS(526), 1, anon_sym_COLON_COLON, + ACTIONS(528), 1, anon_sym_DQUOTE, - anon_sym_CARET, - anon_sym_POUND_CARET, + ACTIONS(534), 1, + aux_sym_sym_lit_token1, + ACTIONS(536), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, + ACTIONS(542), 1, + anon_sym_POUND_QMARK, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, + ACTIONS(789), 1, anon_sym_SQUOTE, + ACTIONS(791), 1, anon_sym_BQUOTE, + ACTIONS(793), 1, anon_sym_COMMA_AT, + ACTIONS(795), 1, + anon_sym_COMMA, + ACTIONS(1442), 1, + anon_sym_POUND, + ACTIONS(4070), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, + sym_sym_lit, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, + aux_sym_list_lit_repeat1, + STATE(2202), 1, + sym_old_meta_lit, + STATE(2206), 1, + sym_meta_lit, + STATE(2237), 1, + sym__metadata_lit, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3223), 29, - anon_sym_POUND, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1440), 2, + sym__ws, + sym_comment, + ACTIONS(4068), 3, 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_finally, - anon_sym_return, - anon_sym_initially, - [104849] = 3, + STATE(1564), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2021), 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, + [86400] = 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(3225), 22, - sym__ws, - sym_comment, - anon_sym_POUND_, + ACTIONS(524), 1, + anon_sym_COLON, + ACTIONS(526), 1, anon_sym_COLON_COLON, + ACTIONS(528), 1, anon_sym_DQUOTE, - anon_sym_CARET, - anon_sym_POUND_CARET, + ACTIONS(534), 1, + aux_sym_sym_lit_token1, + ACTIONS(536), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, + ACTIONS(542), 1, + anon_sym_POUND_QMARK, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, + ACTIONS(789), 1, anon_sym_SQUOTE, + ACTIONS(791), 1, anon_sym_BQUOTE, + ACTIONS(793), 1, anon_sym_COMMA_AT, + ACTIONS(795), 1, + anon_sym_COMMA, + ACTIONS(1442), 1, + anon_sym_POUND, + ACTIONS(4076), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, + sym_sym_lit, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, + aux_sym_list_lit_repeat1, + STATE(2202), 1, + sym_old_meta_lit, + STATE(2206), 1, + sym_meta_lit, + STATE(2237), 1, + sym__metadata_lit, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3227), 29, - anon_sym_POUND, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(4072), 2, + sym__ws, + sym_comment, + ACTIONS(4074), 3, 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_finally, - anon_sym_return, - anon_sym_initially, - [104908] = 3, + STATE(804), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2005), 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, + [86535] = 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(3229), 22, - sym__ws, - sym_comment, - anon_sym_POUND_, + ACTIONS(524), 1, + anon_sym_COLON, + ACTIONS(526), 1, anon_sym_COLON_COLON, + ACTIONS(528), 1, anon_sym_DQUOTE, - anon_sym_CARET, - anon_sym_POUND_CARET, + ACTIONS(534), 1, + aux_sym_sym_lit_token1, + ACTIONS(536), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, + ACTIONS(542), 1, + anon_sym_POUND_QMARK, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, + ACTIONS(789), 1, anon_sym_SQUOTE, + ACTIONS(791), 1, anon_sym_BQUOTE, + ACTIONS(793), 1, anon_sym_COMMA_AT, + ACTIONS(795), 1, + anon_sym_COMMA, + ACTIONS(1442), 1, + anon_sym_POUND, + ACTIONS(2752), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, + sym_sym_lit, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, + aux_sym_list_lit_repeat1, + STATE(2202), 1, + sym_old_meta_lit, + STATE(2206), 1, + sym_meta_lit, + STATE(2237), 1, + sym__metadata_lit, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3231), 29, - anon_sym_POUND, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1440), 2, + sym__ws, + sym_comment, + ACTIONS(2750), 3, 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_finally, - anon_sym_return, - anon_sym_initially, - [104967] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(3233), 22, - sym__ws, - sym_comment, + STATE(1564), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1865), 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, + [86670] = 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(524), 1, + anon_sym_COLON, + ACTIONS(526), 1, anon_sym_COLON_COLON, + ACTIONS(528), 1, anon_sym_DQUOTE, - anon_sym_CARET, - anon_sym_POUND_CARET, + ACTIONS(534), 1, + aux_sym_sym_lit_token1, + ACTIONS(536), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, + ACTIONS(542), 1, + anon_sym_POUND_QMARK, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, + ACTIONS(789), 1, anon_sym_SQUOTE, + ACTIONS(791), 1, anon_sym_BQUOTE, + ACTIONS(793), 1, anon_sym_COMMA_AT, + ACTIONS(795), 1, + anon_sym_COMMA, + ACTIONS(1442), 1, + anon_sym_POUND, + ACTIONS(4080), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, + sym_sym_lit, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, + aux_sym_list_lit_repeat1, + STATE(2202), 1, + sym_old_meta_lit, + STATE(2206), 1, + sym_meta_lit, + STATE(2237), 1, + sym__metadata_lit, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3235), 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, - 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, - [105026] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(3237), 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_RPAREN, + ACTIONS(785), 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, + ACTIONS(797), 2, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3239), 29, - anon_sym_POUND, + ACTIONS(1440), 2, + sym__ws, + sym_comment, + ACTIONS(4078), 3, 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_finally, - anon_sym_return, - anon_sym_initially, - [105085] = 3, + STATE(1564), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2003), 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, + [86805] = 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(3241), 22, - sym__ws, - sym_comment, - anon_sym_POUND_, + ACTIONS(524), 1, + anon_sym_COLON, + ACTIONS(526), 1, anon_sym_COLON_COLON, + ACTIONS(528), 1, anon_sym_DQUOTE, - anon_sym_CARET, - anon_sym_POUND_CARET, + ACTIONS(534), 1, + aux_sym_sym_lit_token1, + ACTIONS(536), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, + ACTIONS(542), 1, + anon_sym_POUND_QMARK, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, + ACTIONS(789), 1, anon_sym_SQUOTE, + ACTIONS(791), 1, anon_sym_BQUOTE, + ACTIONS(793), 1, anon_sym_COMMA_AT, + ACTIONS(795), 1, + anon_sym_COMMA, + ACTIONS(1442), 1, + anon_sym_POUND, + ACTIONS(4084), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, + sym_sym_lit, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, + aux_sym_list_lit_repeat1, + STATE(2202), 1, + sym_old_meta_lit, + STATE(2206), 1, + sym_meta_lit, + STATE(2237), 1, + sym__metadata_lit, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3243), 29, - anon_sym_POUND, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(1440), 2, + sym__ws, + sym_comment, + ACTIONS(4082), 3, 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_finally, - anon_sym_return, - anon_sym_initially, - [105144] = 3, + STATE(1564), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2002), 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, + [86940] = 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(3245), 22, - sym__ws, - sym_comment, - anon_sym_POUND_, + ACTIONS(524), 1, + anon_sym_COLON, + ACTIONS(526), 1, anon_sym_COLON_COLON, + ACTIONS(528), 1, anon_sym_DQUOTE, - anon_sym_CARET, - anon_sym_POUND_CARET, + ACTIONS(534), 1, + aux_sym_sym_lit_token1, + ACTIONS(536), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, + ACTIONS(542), 1, + anon_sym_POUND_QMARK, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, + ACTIONS(789), 1, anon_sym_SQUOTE, + ACTIONS(791), 1, anon_sym_BQUOTE, + ACTIONS(793), 1, anon_sym_COMMA_AT, + ACTIONS(795), 1, + anon_sym_COMMA, + ACTIONS(1442), 1, + anon_sym_POUND, + ACTIONS(4090), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, + sym_sym_lit, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, + aux_sym_list_lit_repeat1, + STATE(2202), 1, + sym_old_meta_lit, + STATE(2206), 1, + sym_meta_lit, + STATE(2237), 1, + sym__metadata_lit, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3247), 29, - anon_sym_POUND, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(4086), 2, + sym__ws, + sym_comment, + ACTIONS(4088), 3, 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_finally, - anon_sym_return, - anon_sym_initially, - [105203] = 3, + STATE(798), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2001), 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, + [87075] = 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(3249), 22, - sym__ws, - sym_comment, - anon_sym_POUND_, + ACTIONS(524), 1, + anon_sym_COLON, + ACTIONS(526), 1, anon_sym_COLON_COLON, + ACTIONS(528), 1, anon_sym_DQUOTE, - anon_sym_CARET, - anon_sym_POUND_CARET, + ACTIONS(534), 1, + aux_sym_sym_lit_token1, + ACTIONS(536), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, + ACTIONS(542), 1, + anon_sym_POUND_QMARK, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, + ACTIONS(789), 1, anon_sym_SQUOTE, + ACTIONS(791), 1, anon_sym_BQUOTE, + ACTIONS(793), 1, anon_sym_COMMA_AT, + ACTIONS(795), 1, + anon_sym_COMMA, + ACTIONS(1442), 1, + anon_sym_POUND, + ACTIONS(2780), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, + sym_sym_lit, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, + aux_sym_list_lit_repeat1, + STATE(2202), 1, + sym_old_meta_lit, + STATE(2206), 1, + sym_meta_lit, + STATE(2237), 1, + sym__metadata_lit, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3251), 29, - anon_sym_POUND, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(4092), 2, + sym__ws, + sym_comment, + ACTIONS(2778), 3, 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_finally, - anon_sym_return, - anon_sym_initially, - [105262] = 3, + STATE(782), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1896), 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, + [87210] = 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(3253), 22, - sym__ws, - sym_comment, - anon_sym_POUND_, + ACTIONS(524), 1, + anon_sym_COLON, + ACTIONS(526), 1, anon_sym_COLON_COLON, + ACTIONS(528), 1, anon_sym_DQUOTE, - anon_sym_CARET, - anon_sym_POUND_CARET, + ACTIONS(534), 1, + aux_sym_sym_lit_token1, + ACTIONS(536), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, + ACTIONS(542), 1, + anon_sym_POUND_QMARK, + ACTIONS(544), 1, anon_sym_POUND_QMARK_AT, + ACTIONS(556), 1, + anon_sym_cl, + ACTIONS(783), 1, + aux_sym_num_lit_token1, + ACTIONS(787), 1, anon_sym_POUND_SQUOTE, + ACTIONS(789), 1, anon_sym_SQUOTE, + ACTIONS(791), 1, anon_sym_BQUOTE, + ACTIONS(793), 1, anon_sym_COMMA_AT, + ACTIONS(795), 1, + anon_sym_COMMA, + ACTIONS(1442), 1, + anon_sym_POUND, + ACTIONS(2774), 1, + sym_self_referential_reader_macro, + STATE(1828), 1, + sym_sym_lit, + STATE(1902), 1, + sym__bare_set_lit, + STATE(2136), 1, + aux_sym_list_lit_repeat1, + STATE(2202), 1, + sym_old_meta_lit, + STATE(2206), 1, + sym_meta_lit, + STATE(2237), 1, + sym__metadata_lit, + ACTIONS(558), 2, anon_sym_POUNDP, anon_sym_POUNDp, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, + ACTIONS(564), 2, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3255), 29, - anon_sym_POUND, + ACTIONS(785), 2, + anon_sym_POUND0A, + anon_sym_POUND0a, + ACTIONS(797), 2, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + ACTIONS(4094), 2, + sym__ws, + sym_comment, + ACTIONS(2772), 3, 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_finally, - anon_sym_return, - anon_sym_initially, - [105321] = 3, + STATE(790), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1897), 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, + [87345] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3257), 22, + STATE(816), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(4096), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -92026,11 +86213,12 @@ static uint16_t ts_small_parse_table[] = { 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, - ACTIONS(3259), 29, + ACTIONS(4098), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -92060,13 +86248,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [105380] = 3, + [87410] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3261), 22, + ACTIONS(4103), 1, + anon_sym_POUND_, + ACTIONS(4100), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(813), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(4108), 20, anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, @@ -92082,11 +86276,12 @@ static uint16_t ts_small_parse_table[] = { 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, - ACTIONS(3263), 29, + ACTIONS(4106), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -92116,10 +86311,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [105439] = 3, + [87479] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3265), 22, + STATE(816), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(4110), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -92138,11 +86337,12 @@ static uint16_t ts_small_parse_table[] = { 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, - ACTIONS(3267), 29, + ACTIONS(4112), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -92172,13 +86372,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [105498] = 3, + [87544] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3269), 22, + ACTIONS(4117), 1, + anon_sym_POUND_, + ACTIONS(4114), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(816), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(4122), 20, anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, @@ -92194,11 +86400,12 @@ static uint16_t ts_small_parse_table[] = { 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, - ACTIONS(3271), 29, + ACTIONS(4120), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -92228,13 +86435,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [105557] = 3, + [87613] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3273), 22, + ACTIONS(4127), 1, + anon_sym_POUND_, + ACTIONS(4124), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(815), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(4132), 20, anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, @@ -92250,11 +86463,12 @@ static uint16_t ts_small_parse_table[] = { 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, - ACTIONS(3275), 29, + ACTIONS(4130), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -92284,10 +86498,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [105616] = 3, + [87682] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3277), 22, + ACTIONS(4138), 1, + aux_sym_num_lit_token2, + ACTIONS(4134), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -92306,11 +86522,12 @@ static uint16_t ts_small_parse_table[] = { 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, - ACTIONS(3279), 29, + ACTIONS(4136), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -92340,10 +86557,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [105675] = 3, + [87745] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3061), 22, + ACTIONS(4140), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -92362,11 +86579,12 @@ static uint16_t ts_small_parse_table[] = { 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, - ACTIONS(3063), 29, + ACTIONS(4142), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -92396,17 +86614,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [105734] = 5, + [87805] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3077), 1, - anon_sym_COLON, - ACTIONS(3079), 1, - anon_sym_COLON_COLON, - ACTIONS(3281), 21, + ACTIONS(4144), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -92421,14 +86636,16 @@ static uint16_t ts_small_parse_table[] = { 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, - ACTIONS(3283), 28, + ACTIONS(4146), 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, @@ -92454,10 +86671,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [105797] = 3, + [87865] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3285), 22, + ACTIONS(4148), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -92476,11 +86693,12 @@ static uint16_t ts_small_parse_table[] = { 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, - ACTIONS(3287), 29, + ACTIONS(4150), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -92510,10 +86728,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [105856] = 3, + [87925] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3289), 22, + ACTIONS(4152), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -92532,11 +86750,12 @@ static uint16_t ts_small_parse_table[] = { 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, - ACTIONS(3291), 29, + ACTIONS(4154), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -92566,10 +86785,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [105915] = 3, + [87985] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3073), 22, + ACTIONS(4156), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -92588,11 +86807,12 @@ static uint16_t ts_small_parse_table[] = { 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, - ACTIONS(3075), 29, + ACTIONS(4158), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -92622,10 +86842,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [105974] = 3, + [88045] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3293), 22, + ACTIONS(4160), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -92644,11 +86864,12 @@ static uint16_t ts_small_parse_table[] = { 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, - ACTIONS(3295), 29, + ACTIONS(4162), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -92678,10 +86899,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [106033] = 3, + [88105] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3297), 22, + ACTIONS(4164), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -92700,11 +86921,12 @@ static uint16_t ts_small_parse_table[] = { 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, - ACTIONS(3299), 29, + ACTIONS(4166), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -92734,10 +86956,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [106092] = 3, + [88165] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3301), 22, + ACTIONS(4168), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -92756,11 +86978,12 @@ static uint16_t ts_small_parse_table[] = { 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, - ACTIONS(3303), 29, + ACTIONS(4170), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -92790,10 +87013,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [106151] = 3, + [88225] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3305), 22, + ACTIONS(4172), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -92812,11 +87035,12 @@ static uint16_t ts_small_parse_table[] = { 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, - ACTIONS(3307), 29, + ACTIONS(4174), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -92846,10 +87070,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [106210] = 3, + [88285] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3309), 22, + ACTIONS(4176), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -92868,11 +87092,12 @@ static uint16_t ts_small_parse_table[] = { 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, - ACTIONS(3311), 29, + ACTIONS(4178), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -92902,10 +87127,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [106269] = 3, + [88345] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3305), 22, + ACTIONS(4180), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -92924,11 +87149,12 @@ static uint16_t ts_small_parse_table[] = { 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, - ACTIONS(3307), 29, + ACTIONS(4182), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -92958,10 +87184,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [106328] = 3, + [88405] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3309), 22, + ACTIONS(4184), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -92980,11 +87206,12 @@ static uint16_t ts_small_parse_table[] = { 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, - ACTIONS(3311), 29, + ACTIONS(4186), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -93014,10 +87241,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [106387] = 3, + [88465] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3313), 22, + ACTIONS(4188), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -93036,11 +87263,12 @@ static uint16_t ts_small_parse_table[] = { 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, - ACTIONS(3315), 29, + ACTIONS(4190), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -93070,10 +87298,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [106446] = 3, + [88525] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3317), 22, + ACTIONS(4192), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -93092,11 +87320,12 @@ static uint16_t ts_small_parse_table[] = { 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, - ACTIONS(3319), 29, + ACTIONS(4194), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -93126,10 +87355,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [106505] = 3, + [88585] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3321), 22, + ACTIONS(4196), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -93148,11 +87377,12 @@ static uint16_t ts_small_parse_table[] = { 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, - ACTIONS(3323), 29, + ACTIONS(4198), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -93182,10 +87412,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [106564] = 3, + [88645] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3325), 22, + ACTIONS(4200), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -93204,11 +87434,12 @@ static uint16_t ts_small_parse_table[] = { 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, - ACTIONS(3327), 29, + ACTIONS(4202), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -93238,10 +87469,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [106623] = 3, + [88705] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3329), 22, + ACTIONS(4204), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -93260,11 +87491,12 @@ static uint16_t ts_small_parse_table[] = { 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, - ACTIONS(3331), 29, + ACTIONS(4206), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -93294,10 +87526,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [106682] = 3, + [88765] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3333), 22, + ACTIONS(4208), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -93316,11 +87548,12 @@ static uint16_t ts_small_parse_table[] = { 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, - ACTIONS(3335), 29, + ACTIONS(4210), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -93350,10 +87583,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [106741] = 3, + [88825] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3333), 22, + ACTIONS(4212), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -93372,11 +87605,12 @@ static uint16_t ts_small_parse_table[] = { 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, - ACTIONS(3335), 29, + ACTIONS(4214), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -93406,10 +87640,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [106800] = 3, + [88885] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3337), 22, + ACTIONS(4216), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -93428,11 +87662,12 @@ static uint16_t ts_small_parse_table[] = { 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, - ACTIONS(3339), 29, + ACTIONS(4218), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -93462,10 +87697,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [106859] = 3, + [88945] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3337), 22, + ACTIONS(4220), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -93484,11 +87719,12 @@ static uint16_t ts_small_parse_table[] = { 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, - ACTIONS(3339), 29, + ACTIONS(4222), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -93518,10 +87754,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [106918] = 3, + [89005] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3341), 22, + ACTIONS(4224), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -93540,11 +87776,12 @@ static uint16_t ts_small_parse_table[] = { 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, - ACTIONS(3343), 29, + ACTIONS(4226), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -93574,10 +87811,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [106977] = 3, + [89065] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3345), 22, + ACTIONS(4228), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -93596,11 +87833,12 @@ static uint16_t ts_small_parse_table[] = { 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, - ACTIONS(3347), 29, + ACTIONS(4230), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -93630,10 +87868,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [107036] = 3, + [89125] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3349), 22, + ACTIONS(4232), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -93652,11 +87890,12 @@ static uint16_t ts_small_parse_table[] = { 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, - ACTIONS(3351), 29, + ACTIONS(4234), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -93686,10 +87925,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [107095] = 3, + [89185] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3353), 22, + ACTIONS(4236), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -93708,11 +87947,12 @@ static uint16_t ts_small_parse_table[] = { 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, - ACTIONS(3355), 29, + ACTIONS(4238), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -93742,10 +87982,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [107154] = 3, + [89245] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3357), 22, + ACTIONS(4240), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -93764,11 +88004,12 @@ static uint16_t ts_small_parse_table[] = { 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, - ACTIONS(3359), 29, + ACTIONS(4242), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -93798,10 +88039,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [107213] = 3, + [89305] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3361), 22, + ACTIONS(4244), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -93820,11 +88061,12 @@ static uint16_t ts_small_parse_table[] = { 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, - ACTIONS(3363), 29, + ACTIONS(4246), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -93854,10 +88096,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [107272] = 3, + [89365] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3365), 22, + ACTIONS(4248), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -93876,11 +88118,12 @@ static uint16_t ts_small_parse_table[] = { 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, - ACTIONS(3367), 29, + ACTIONS(4250), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -93910,10 +88153,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [107331] = 3, + [89425] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3369), 22, + ACTIONS(4252), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -93932,11 +88175,12 @@ static uint16_t ts_small_parse_table[] = { 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, - ACTIONS(3371), 29, + ACTIONS(4254), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -93966,10 +88210,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [107390] = 3, + [89485] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3369), 22, + ACTIONS(4256), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -93988,11 +88232,12 @@ static uint16_t ts_small_parse_table[] = { 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, - ACTIONS(3371), 29, + ACTIONS(4258), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -94022,10 +88267,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [107449] = 3, + [89545] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3361), 22, + ACTIONS(4260), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -94044,11 +88289,12 @@ static uint16_t ts_small_parse_table[] = { 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, - ACTIONS(3363), 29, + ACTIONS(4262), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -94078,10 +88324,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [107508] = 3, + [89605] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3365), 22, + ACTIONS(4264), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -94100,11 +88346,12 @@ static uint16_t ts_small_parse_table[] = { 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, - ACTIONS(3367), 29, + ACTIONS(4266), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -94134,10 +88381,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [107567] = 3, + [89665] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3369), 22, + ACTIONS(4232), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -94156,11 +88403,12 @@ static uint16_t ts_small_parse_table[] = { 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, - ACTIONS(3371), 29, + ACTIONS(4234), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -94190,10 +88438,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [107626] = 3, + [89725] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3369), 22, + ACTIONS(4268), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -94212,11 +88460,12 @@ static uint16_t ts_small_parse_table[] = { 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, - ACTIONS(3371), 29, + ACTIONS(4270), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -94246,10 +88495,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [107685] = 3, + [89785] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3373), 22, + ACTIONS(4272), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -94268,11 +88517,12 @@ static uint16_t ts_small_parse_table[] = { 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, - ACTIONS(3375), 29, + ACTIONS(4274), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -94302,10 +88552,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [107744] = 3, + [89845] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3377), 22, + ACTIONS(4276), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -94324,11 +88574,12 @@ static uint16_t ts_small_parse_table[] = { 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, - ACTIONS(3379), 29, + ACTIONS(4278), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -94358,10 +88609,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [107803] = 3, + [89905] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3381), 22, + ACTIONS(4280), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -94380,11 +88631,12 @@ static uint16_t ts_small_parse_table[] = { 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, - ACTIONS(3383), 29, + ACTIONS(4282), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -94414,10 +88666,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [107862] = 3, + [89965] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3385), 22, + ACTIONS(4284), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -94436,11 +88688,12 @@ static uint16_t ts_small_parse_table[] = { 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, - ACTIONS(3387), 29, + ACTIONS(4286), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -94470,10 +88723,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [107921] = 3, + [90025] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3389), 22, + ACTIONS(4288), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -94492,11 +88745,12 @@ static uint16_t ts_small_parse_table[] = { 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, - ACTIONS(3391), 29, + ACTIONS(4290), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -94526,10 +88780,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [107980] = 3, + [90085] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3393), 22, + ACTIONS(4288), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -94548,11 +88802,12 @@ static uint16_t ts_small_parse_table[] = { 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, - ACTIONS(3395), 29, + ACTIONS(4290), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -94582,10 +88837,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [108039] = 3, + [90145] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3397), 22, + ACTIONS(4292), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -94604,11 +88859,12 @@ static uint16_t ts_small_parse_table[] = { 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, - ACTIONS(3399), 29, + ACTIONS(4294), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -94638,10 +88894,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [108098] = 3, + [90205] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3393), 22, + ACTIONS(4296), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -94660,11 +88916,12 @@ static uint16_t ts_small_parse_table[] = { 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, - ACTIONS(3395), 29, + ACTIONS(4298), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -94694,10 +88951,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [108157] = 3, + [90265] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3397), 22, + ACTIONS(4300), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -94716,11 +88973,12 @@ static uint16_t ts_small_parse_table[] = { 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, - ACTIONS(3399), 29, + ACTIONS(4302), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -94750,10 +89008,69 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [108216] = 3, + [90325] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3401), 22, + ACTIONS(4308), 1, + anon_sym_COLON, + ACTIONS(4310), 1, + anon_sym_COLON_COLON, + ACTIONS(4304), 22, + sym__ws, + sym_comment, + anon_sym_POUND_, + 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, + ACTIONS(4306), 28, + 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, + 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, + [90389] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4312), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -94772,11 +89089,12 @@ static uint16_t ts_small_parse_table[] = { 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, - ACTIONS(3403), 29, + ACTIONS(4314), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -94806,10 +89124,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [108275] = 3, + [90449] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3385), 22, + ACTIONS(4316), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -94828,11 +89146,12 @@ static uint16_t ts_small_parse_table[] = { 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, - ACTIONS(3387), 29, + ACTIONS(4318), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -94862,10 +89181,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [108334] = 3, + [90509] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3393), 22, + ACTIONS(4300), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -94884,11 +89203,12 @@ static uint16_t ts_small_parse_table[] = { 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, - ACTIONS(3395), 29, + ACTIONS(4302), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -94918,10 +89238,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [108393] = 3, + [90569] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3397), 22, + ACTIONS(4316), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -94940,11 +89260,12 @@ static uint16_t ts_small_parse_table[] = { 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, - ACTIONS(3399), 29, + ACTIONS(4318), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -94974,10 +89295,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [108452] = 3, + [90629] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3393), 22, + ACTIONS(4320), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -94996,11 +89317,12 @@ static uint16_t ts_small_parse_table[] = { 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, - ACTIONS(3395), 29, + ACTIONS(4322), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -95030,10 +89352,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [108511] = 3, + [90689] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3397), 22, + ACTIONS(4324), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -95052,11 +89374,12 @@ static uint16_t ts_small_parse_table[] = { 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, - ACTIONS(3399), 29, + ACTIONS(4326), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -95086,10 +89409,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [108570] = 3, + [90749] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3401), 22, + ACTIONS(4328), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -95108,11 +89431,12 @@ static uint16_t ts_small_parse_table[] = { 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, - ACTIONS(3403), 29, + ACTIONS(4330), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -95142,10 +89466,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [108629] = 3, + [90809] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3405), 22, + ACTIONS(4332), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -95164,11 +89488,12 @@ static uint16_t ts_small_parse_table[] = { 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, - ACTIONS(3407), 29, + ACTIONS(4334), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -95198,10 +89523,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [108688] = 3, + [90869] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3409), 22, + ACTIONS(4336), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -95220,11 +89545,12 @@ static uint16_t ts_small_parse_table[] = { 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, - ACTIONS(3411), 29, + ACTIONS(4338), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -95254,10 +89580,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [108747] = 3, + [90929] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3409), 22, + ACTIONS(4340), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -95276,11 +89602,12 @@ static uint16_t ts_small_parse_table[] = { 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, - ACTIONS(3411), 29, + ACTIONS(4342), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -95310,10 +89637,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [108806] = 3, + [90989] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3413), 22, + ACTIONS(4344), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -95332,11 +89659,12 @@ static uint16_t ts_small_parse_table[] = { 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, - ACTIONS(3415), 29, + ACTIONS(4346), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -95366,10 +89694,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [108865] = 3, + [91049] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3417), 22, + ACTIONS(4348), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -95388,11 +89716,12 @@ static uint16_t ts_small_parse_table[] = { 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, - ACTIONS(3419), 29, + ACTIONS(4350), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -95422,10 +89751,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [108924] = 3, + [91109] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3409), 22, + ACTIONS(4352), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -95444,11 +89773,12 @@ static uint16_t ts_small_parse_table[] = { 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, - ACTIONS(3411), 29, + ACTIONS(4354), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -95478,10 +89808,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [108983] = 3, + [91169] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3409), 22, + ACTIONS(4356), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -95500,11 +89830,12 @@ static uint16_t ts_small_parse_table[] = { 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, - ACTIONS(3411), 29, + ACTIONS(4358), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -95534,10 +89865,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [109042] = 3, + [91229] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3413), 22, + ACTIONS(4360), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -95556,11 +89887,12 @@ static uint16_t ts_small_parse_table[] = { 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, - ACTIONS(3415), 29, + ACTIONS(4362), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -95590,10 +89922,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [109101] = 3, + [91289] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3417), 22, + ACTIONS(4364), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -95612,11 +89944,12 @@ static uint16_t ts_small_parse_table[] = { 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, - ACTIONS(3419), 29, + ACTIONS(4366), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -95646,10 +89979,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [109160] = 3, + [91349] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3421), 22, + ACTIONS(4364), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -95668,11 +90001,12 @@ static uint16_t ts_small_parse_table[] = { 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, - ACTIONS(3423), 29, + ACTIONS(4366), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -95702,10 +90036,69 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [109219] = 3, + [91409] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3421), 22, + ACTIONS(4308), 1, + anon_sym_COLON, + ACTIONS(4310), 1, + anon_sym_COLON_COLON, + ACTIONS(4340), 22, + sym__ws, + sym_comment, + anon_sym_POUND_, + 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, + ACTIONS(4342), 28, + 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, + 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, + [91473] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4368), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -95724,11 +90117,12 @@ static uint16_t ts_small_parse_table[] = { 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, - ACTIONS(3423), 29, + ACTIONS(4370), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -95758,10 +90152,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [109278] = 3, + [91533] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3425), 22, + ACTIONS(4372), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -95780,11 +90174,12 @@ static uint16_t ts_small_parse_table[] = { 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, - ACTIONS(3427), 29, + ACTIONS(4374), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -95814,10 +90209,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [109337] = 3, + [91593] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3429), 22, + ACTIONS(4368), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -95836,11 +90231,12 @@ static uint16_t ts_small_parse_table[] = { 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, - ACTIONS(3431), 29, + ACTIONS(4370), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -95870,10 +90266,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [109396] = 3, + [91653] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3433), 22, + ACTIONS(4376), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -95892,11 +90288,12 @@ static uint16_t ts_small_parse_table[] = { 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, - ACTIONS(3435), 29, + ACTIONS(4378), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -95926,24 +90323,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [109455] = 6, + [91713] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3440), 1, - anon_sym_POUND_, - ACTIONS(3437), 2, + ACTIONS(4380), 23, sym__ws, sym_comment, - STATE(940), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(3029), 19, + 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, @@ -95951,14 +90343,14 @@ static 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, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3027), 25, + ACTIONS(4382), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -95969,71 +90361,126 @@ static 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [109519] = 12, + 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, + [91773] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3446), 1, + ACTIONS(4384), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(3451), 1, + 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, + ACTIONS(4386), 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, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - ACTIONS(3454), 1, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, anon_sym_do, - STATE(292), 1, - sym_for_clause_word, - STATE(952), 1, - aux_sym_for_clause_repeat1, - STATE(1212), 1, - sym__for_part, - ACTIONS(297), 2, - anon_sym_in, - anon_sym_being, - ACTIONS(3443), 2, + 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, + [91833] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4388), 23, sym__ws, sym_comment, - STATE(2013), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(299), 14, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - ACTIONS(3449), 22, + 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, + 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, + ACTIONS(4390), 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, + 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, @@ -96047,56 +90494,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [109594] = 12, + [91893] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3459), 1, - anon_sym_POUND_, - ACTIONS(3464), 1, - anon_sym_cl, - ACTIONS(3467), 1, - anon_sym_do, - STATE(292), 1, - sym_for_clause_word, - STATE(952), 1, - aux_sym_for_clause_repeat1, - STATE(1212), 1, - sym__for_part, - ACTIONS(297), 2, - anon_sym_in, - anon_sym_being, - ACTIONS(3456), 2, + ACTIONS(4392), 23, sym__ws, sym_comment, - STATE(2013), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(299), 14, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - ACTIONS(3462), 22, + 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, + 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, + ACTIONS(4394), 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, + 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, @@ -96110,56 +90551,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [109669] = 12, + [91953] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3472), 1, - anon_sym_POUND_, - ACTIONS(3477), 1, - anon_sym_cl, - ACTIONS(3480), 1, - anon_sym_do, - STATE(292), 1, - sym_for_clause_word, - STATE(952), 1, - aux_sym_for_clause_repeat1, - STATE(1212), 1, - sym__for_part, - ACTIONS(297), 2, - anon_sym_in, - anon_sym_being, - ACTIONS(3469), 2, + ACTIONS(4396), 23, sym__ws, sym_comment, - STATE(2013), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(299), 14, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - ACTIONS(3475), 22, + 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, + 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, + ACTIONS(4398), 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, + 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, @@ -96173,56 +90608,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [109744] = 12, + [92013] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3485), 1, - anon_sym_POUND_, - ACTIONS(3490), 1, - anon_sym_cl, - ACTIONS(3493), 1, - anon_sym_do, - STATE(292), 1, - sym_for_clause_word, - STATE(952), 1, - aux_sym_for_clause_repeat1, - STATE(1212), 1, - sym__for_part, - ACTIONS(297), 2, - anon_sym_in, - anon_sym_being, - ACTIONS(3482), 2, + ACTIONS(4400), 23, sym__ws, sym_comment, - STATE(2013), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(299), 14, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - ACTIONS(3488), 22, + 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, + 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, + ACTIONS(4402), 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, + 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, @@ -96236,56 +90665,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [109819] = 12, + [92073] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3498), 1, - anon_sym_POUND_, - ACTIONS(3503), 1, - anon_sym_cl, - ACTIONS(3506), 1, - anon_sym_do, - STATE(292), 1, - sym_for_clause_word, - STATE(952), 1, - aux_sym_for_clause_repeat1, - STATE(1212), 1, - sym__for_part, - ACTIONS(297), 2, - anon_sym_in, - anon_sym_being, - ACTIONS(3495), 2, + ACTIONS(4404), 23, sym__ws, sym_comment, - STATE(2013), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(299), 14, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - ACTIONS(3501), 22, + 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, + 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, + ACTIONS(4406), 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, + 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, @@ -96299,56 +90722,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [109894] = 12, + [92133] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3472), 1, - anon_sym_POUND_, - ACTIONS(3477), 1, - anon_sym_cl, - ACTIONS(3480), 1, - anon_sym_do, - STATE(292), 1, - sym_for_clause_word, - STATE(952), 1, - aux_sym_for_clause_repeat1, - STATE(1212), 1, - sym__for_part, - ACTIONS(297), 2, - anon_sym_in, - anon_sym_being, - ACTIONS(3469), 2, + ACTIONS(4408), 23, sym__ws, sym_comment, - STATE(2013), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(299), 14, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - ACTIONS(3475), 22, + 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, + 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, + ACTIONS(4410), 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, + 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, @@ -96362,56 +90779,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [109969] = 12, + [92193] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3511), 1, - anon_sym_POUND_, - ACTIONS(3516), 1, - anon_sym_cl, - ACTIONS(3519), 1, - anon_sym_do, - STATE(292), 1, - sym_for_clause_word, - STATE(952), 1, - aux_sym_for_clause_repeat1, - STATE(1212), 1, - sym__for_part, - ACTIONS(297), 2, - anon_sym_in, - anon_sym_being, - ACTIONS(3508), 2, + ACTIONS(4412), 23, sym__ws, sym_comment, - STATE(2013), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(299), 14, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - ACTIONS(3514), 22, + 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, + 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, + ACTIONS(4414), 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, + 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, @@ -96425,56 +90836,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [110044] = 12, + [92253] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3511), 1, - anon_sym_POUND_, - ACTIONS(3516), 1, - anon_sym_cl, - ACTIONS(3519), 1, - anon_sym_do, - STATE(292), 1, - sym_for_clause_word, - STATE(952), 1, - aux_sym_for_clause_repeat1, - STATE(1212), 1, - sym__for_part, - ACTIONS(297), 2, - anon_sym_in, - anon_sym_being, - ACTIONS(3508), 2, + ACTIONS(4416), 23, sym__ws, sym_comment, - STATE(2013), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(299), 14, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - ACTIONS(3514), 22, + 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, + 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, + ACTIONS(4418), 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, + 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, @@ -96488,56 +90893,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [110119] = 12, + [92313] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3524), 1, - anon_sym_POUND_, - ACTIONS(3529), 1, - anon_sym_cl, - ACTIONS(3532), 1, - anon_sym_do, - STATE(292), 1, - sym_for_clause_word, - STATE(952), 1, - aux_sym_for_clause_repeat1, - STATE(1212), 1, - sym__for_part, - ACTIONS(297), 2, - anon_sym_in, - anon_sym_being, - ACTIONS(3521), 2, + ACTIONS(4372), 23, sym__ws, sym_comment, - STATE(2013), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(299), 14, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - ACTIONS(3527), 22, + 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, + 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, + ACTIONS(4374), 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, + 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, @@ -96551,56 +90950,107 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [110194] = 12, + [92373] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3537), 1, + ACTIONS(4420), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(3542), 1, + 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, + ACTIONS(4422), 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, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - ACTIONS(3545), 1, + aux_sym_accumulation_verb_token1, + anon_sym_for, + anon_sym_and, + anon_sym_as, + anon_sym_with, anon_sym_do, - STATE(292), 1, - sym_for_clause_word, - STATE(952), 1, - aux_sym_for_clause_repeat1, - STATE(1212), 1, - sym__for_part, - ACTIONS(297), 2, - anon_sym_in, - anon_sym_being, - ACTIONS(3534), 2, - sym__ws, - sym_comment, - STATE(2013), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(299), 14, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - ACTIONS(3540), 22, + 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, + [92433] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4424), 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_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, + ACTIONS(4426), 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, + 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, @@ -96614,56 +91064,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [110269] = 12, + [92493] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3550), 1, - anon_sym_POUND_, - ACTIONS(3555), 1, - anon_sym_cl, - ACTIONS(3558), 1, - anon_sym_do, - STATE(292), 1, - sym_for_clause_word, - STATE(952), 1, - aux_sym_for_clause_repeat1, - STATE(1212), 1, - sym__for_part, - ACTIONS(297), 2, - anon_sym_in, - anon_sym_being, - ACTIONS(3547), 2, + ACTIONS(4428), 23, sym__ws, sym_comment, - STATE(2013), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(299), 14, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - ACTIONS(3553), 22, + 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, + 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, + ACTIONS(4430), 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, + 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, @@ -96677,56 +91121,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [110344] = 12, + [92553] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3563), 1, - anon_sym_POUND_, - ACTIONS(3568), 1, - anon_sym_cl, - ACTIONS(3577), 1, - anon_sym_do, - STATE(292), 1, - sym_for_clause_word, - STATE(952), 1, - aux_sym_for_clause_repeat1, - STATE(1212), 1, - sym__for_part, - ACTIONS(3560), 2, + ACTIONS(4272), 23, sym__ws, sym_comment, - ACTIONS(3571), 2, - anon_sym_in, - anon_sym_being, - STATE(2013), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(3574), 14, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - ACTIONS(3566), 22, + 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, + 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, + ACTIONS(4274), 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, + 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, @@ -96740,56 +91178,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [110419] = 12, + [92613] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3524), 1, - anon_sym_POUND_, - ACTIONS(3529), 1, - anon_sym_cl, - ACTIONS(3532), 1, - anon_sym_do, - STATE(292), 1, - sym_for_clause_word, - STATE(952), 1, - aux_sym_for_clause_repeat1, - STATE(1212), 1, - sym__for_part, - ACTIONS(297), 2, - anon_sym_in, - anon_sym_being, - ACTIONS(3521), 2, + ACTIONS(4432), 23, sym__ws, sym_comment, - STATE(2013), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(299), 14, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - ACTIONS(3527), 22, + 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, + 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, + ACTIONS(4434), 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, + 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, @@ -96803,56 +91235,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [110494] = 12, + [92673] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3582), 1, - anon_sym_POUND_, - ACTIONS(3587), 1, - anon_sym_cl, - ACTIONS(3590), 1, - anon_sym_do, - STATE(292), 1, - sym_for_clause_word, - STATE(952), 1, - aux_sym_for_clause_repeat1, - STATE(1212), 1, - sym__for_part, - ACTIONS(297), 2, - anon_sym_in, - anon_sym_being, - ACTIONS(3579), 2, + ACTIONS(4436), 23, sym__ws, sym_comment, - STATE(2013), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(299), 14, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - ACTIONS(3585), 22, + 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, + 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, + ACTIONS(4438), 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, + 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, @@ -96866,56 +91292,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [110569] = 12, + [92733] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3446), 1, - anon_sym_POUND_, - ACTIONS(3451), 1, - anon_sym_cl, - ACTIONS(3454), 1, - anon_sym_do, - STATE(292), 1, - sym_for_clause_word, - STATE(952), 1, - aux_sym_for_clause_repeat1, - STATE(1212), 1, - sym__for_part, - ACTIONS(297), 2, - anon_sym_in, - anon_sym_being, - ACTIONS(3443), 2, + ACTIONS(4440), 23, sym__ws, sym_comment, - STATE(2013), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(299), 14, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - ACTIONS(3449), 22, + 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, + 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, + ACTIONS(4442), 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, + 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, @@ -96929,56 +91349,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [110644] = 12, + [92793] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3595), 1, - anon_sym_POUND_, - ACTIONS(3600), 1, - anon_sym_cl, - ACTIONS(3603), 1, - anon_sym_do, - STATE(292), 1, - sym_for_clause_word, - STATE(952), 1, - aux_sym_for_clause_repeat1, - STATE(1212), 1, - sym__for_part, - ACTIONS(297), 2, - anon_sym_in, - anon_sym_being, - ACTIONS(3592), 2, + ACTIONS(4444), 23, sym__ws, sym_comment, - STATE(2013), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(299), 14, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - ACTIONS(3598), 22, + 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, + 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, + ACTIONS(4446), 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, + 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, @@ -96992,56 +91406,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [110719] = 12, + [92853] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3608), 1, - anon_sym_POUND_, - ACTIONS(3613), 1, - anon_sym_cl, - ACTIONS(3616), 1, - anon_sym_do, - STATE(292), 1, - sym_for_clause_word, - STATE(952), 1, - aux_sym_for_clause_repeat1, - STATE(1212), 1, - sym__for_part, - ACTIONS(297), 2, - anon_sym_in, - anon_sym_being, - ACTIONS(3605), 2, + ACTIONS(4428), 23, sym__ws, sym_comment, - STATE(2013), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(299), 14, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - ACTIONS(3611), 22, + 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, + 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, + ACTIONS(4430), 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, + 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, @@ -97055,56 +91463,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [110794] = 12, + [92913] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3537), 1, - anon_sym_POUND_, - ACTIONS(3542), 1, - anon_sym_cl, - ACTIONS(3545), 1, - anon_sym_do, - STATE(292), 1, - sym_for_clause_word, - STATE(952), 1, - aux_sym_for_clause_repeat1, - STATE(1212), 1, - sym__for_part, - ACTIONS(297), 2, - anon_sym_in, - anon_sym_being, - ACTIONS(3534), 2, + ACTIONS(4416), 23, sym__ws, sym_comment, - STATE(2013), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(299), 14, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - ACTIONS(3540), 22, + 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, + 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, + ACTIONS(4418), 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, + 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, @@ -97118,56 +91520,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [110869] = 12, + [92973] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3459), 1, - anon_sym_POUND_, - ACTIONS(3464), 1, - anon_sym_cl, - ACTIONS(3467), 1, - anon_sym_do, - STATE(292), 1, - sym_for_clause_word, - STATE(952), 1, - aux_sym_for_clause_repeat1, - STATE(1212), 1, - sym__for_part, - ACTIONS(297), 2, - anon_sym_in, - anon_sym_being, - ACTIONS(3456), 2, + ACTIONS(4424), 23, sym__ws, sym_comment, - STATE(2013), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(299), 14, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - ACTIONS(3462), 22, + 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, + 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, + ACTIONS(4426), 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, + 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, @@ -97181,1380 +91577,1036 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [110944] = 26, + [93033] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(3620), 1, + ACTIONS(4448), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(3622), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(3624), 1, anon_sym_POUND_CARET, - ACTIONS(3626), 1, + anon_sym_LPAREN, anon_sym_RPAREN, - ACTIONS(3628), 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, + 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(4450), 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, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - ACTIONS(3630), 1, aux_sym_accumulation_verb_token1, - ACTIONS(3634), 1, + anon_sym_for, anon_sym_and, - ACTIONS(3636), 1, + anon_sym_as, anon_sym_with, - ACTIONS(3638), 1, anon_sym_do, - ACTIONS(3642), 1, - anon_sym_repeat, - ACTIONS(3646), 1, - anon_sym_else, - STATE(281), 1, - sym_accumulation_verb, - STATE(2236), 1, - sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, - sym_meta_lit, - STATE(2389), 1, - aux_sym_list_lit_repeat1, - ACTIONS(3618), 2, - sym__ws, - sym_comment, - ACTIONS(3632), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(3640), 2, anon_sym_while, anon_sym_until, - ACTIONS(3648), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(964), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(3644), 6, + anon_sym_repeat, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(1923), 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, - [111046] = 26, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [93093] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(3620), 1, + ACTIONS(4452), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(3622), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(3624), 1, anon_sym_POUND_CARET, - ACTIONS(3628), 1, + 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, + ACTIONS(4454), 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, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - ACTIONS(3630), 1, aux_sym_accumulation_verb_token1, - ACTIONS(3634), 1, + anon_sym_for, anon_sym_and, - ACTIONS(3636), 1, + anon_sym_as, anon_sym_with, - ACTIONS(3638), 1, anon_sym_do, - ACTIONS(3642), 1, - anon_sym_repeat, - ACTIONS(3646), 1, - anon_sym_else, - ACTIONS(3652), 1, - anon_sym_RPAREN, - STATE(281), 1, - sym_accumulation_verb, - STATE(2236), 1, - sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, - sym_meta_lit, - STATE(2389), 1, - aux_sym_list_lit_repeat1, - ACTIONS(3632), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(3640), 2, anon_sym_while, anon_sym_until, - ACTIONS(3650), 2, - sym__ws, - sym_comment, - ACTIONS(3648), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1013), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(3644), 6, + anon_sym_repeat, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(1923), 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, - [111148] = 26, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [93153] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(3620), 1, + ACTIONS(4428), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(3622), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(3624), 1, anon_sym_POUND_CARET, - ACTIONS(3628), 1, + 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, + ACTIONS(4430), 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, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - ACTIONS(3630), 1, aux_sym_accumulation_verb_token1, - ACTIONS(3634), 1, + anon_sym_for, anon_sym_and, - ACTIONS(3636), 1, + anon_sym_as, anon_sym_with, - ACTIONS(3638), 1, anon_sym_do, - ACTIONS(3642), 1, - anon_sym_repeat, - ACTIONS(3646), 1, - anon_sym_else, - ACTIONS(3656), 1, - anon_sym_RPAREN, - STATE(281), 1, - sym_accumulation_verb, - STATE(2236), 1, - sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, - sym_meta_lit, - STATE(2389), 1, - aux_sym_list_lit_repeat1, - ACTIONS(3632), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(3640), 2, anon_sym_while, anon_sym_until, - ACTIONS(3654), 2, - sym__ws, - sym_comment, - ACTIONS(3648), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(970), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(3644), 6, + anon_sym_repeat, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(1923), 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, - [111250] = 26, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [93213] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(3620), 1, + ACTIONS(4456), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(3622), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(3624), 1, anon_sym_POUND_CARET, - ACTIONS(3628), 1, + 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, + ACTIONS(4458), 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, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - ACTIONS(3630), 1, aux_sym_accumulation_verb_token1, - ACTIONS(3634), 1, + anon_sym_for, anon_sym_and, - ACTIONS(3636), 1, + anon_sym_as, anon_sym_with, - ACTIONS(3638), 1, anon_sym_do, - ACTIONS(3642), 1, - anon_sym_repeat, - ACTIONS(3646), 1, - anon_sym_else, - ACTIONS(3660), 1, - anon_sym_RPAREN, - STATE(281), 1, - sym_accumulation_verb, - STATE(2236), 1, - sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, - sym_meta_lit, - STATE(2389), 1, - aux_sym_list_lit_repeat1, - ACTIONS(3632), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(3640), 2, anon_sym_while, anon_sym_until, - ACTIONS(3658), 2, - sym__ws, - sym_comment, - ACTIONS(3648), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(981), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(3644), 6, + anon_sym_repeat, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(1923), 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, - [111352] = 26, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [93273] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(3620), 1, + ACTIONS(4460), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(3622), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(3624), 1, anon_sym_POUND_CARET, - ACTIONS(3628), 1, + 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, + ACTIONS(4462), 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, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - ACTIONS(3630), 1, aux_sym_accumulation_verb_token1, - ACTIONS(3634), 1, + anon_sym_for, anon_sym_and, - ACTIONS(3636), 1, + anon_sym_as, anon_sym_with, - ACTIONS(3638), 1, anon_sym_do, - ACTIONS(3642), 1, - anon_sym_repeat, - ACTIONS(3646), 1, - anon_sym_else, - ACTIONS(3662), 1, - anon_sym_RPAREN, - STATE(281), 1, - sym_accumulation_verb, - STATE(2236), 1, - sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, - sym_meta_lit, - STATE(2389), 1, - aux_sym_list_lit_repeat1, - ACTIONS(3632), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(3640), 2, anon_sym_while, anon_sym_until, - ACTIONS(3658), 2, - sym__ws, - sym_comment, - ACTIONS(3648), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(981), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(3644), 6, + anon_sym_repeat, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(1923), 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, - [111454] = 26, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [93333] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(3620), 1, + ACTIONS(4464), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(3622), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(3624), 1, anon_sym_POUND_CARET, - ACTIONS(3628), 1, + 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, + ACTIONS(4466), 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, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - ACTIONS(3630), 1, aux_sym_accumulation_verb_token1, - ACTIONS(3634), 1, + anon_sym_for, anon_sym_and, - ACTIONS(3636), 1, + anon_sym_as, anon_sym_with, - ACTIONS(3638), 1, anon_sym_do, - ACTIONS(3642), 1, - anon_sym_repeat, - ACTIONS(3646), 1, - anon_sym_else, - ACTIONS(3664), 1, - anon_sym_RPAREN, - STATE(281), 1, - sym_accumulation_verb, - STATE(2236), 1, - sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, - sym_meta_lit, - STATE(2389), 1, - aux_sym_list_lit_repeat1, - ACTIONS(3632), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(3640), 2, anon_sym_while, anon_sym_until, - ACTIONS(3658), 2, - sym__ws, - sym_comment, - ACTIONS(3648), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(981), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(3644), 6, + anon_sym_repeat, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(1923), 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, - [111556] = 26, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [93393] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(3620), 1, + ACTIONS(4468), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(3622), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(3624), 1, anon_sym_POUND_CARET, - ACTIONS(3628), 1, + 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, + ACTIONS(4470), 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, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - ACTIONS(3630), 1, aux_sym_accumulation_verb_token1, - ACTIONS(3634), 1, + anon_sym_for, anon_sym_and, - ACTIONS(3636), 1, + anon_sym_as, anon_sym_with, - ACTIONS(3638), 1, anon_sym_do, - ACTIONS(3642), 1, - anon_sym_repeat, - ACTIONS(3646), 1, - anon_sym_else, - ACTIONS(3668), 1, - anon_sym_RPAREN, - STATE(281), 1, - sym_accumulation_verb, - STATE(2236), 1, - sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, - sym_meta_lit, - STATE(2389), 1, - aux_sym_list_lit_repeat1, - ACTIONS(3632), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(3640), 2, anon_sym_while, anon_sym_until, - ACTIONS(3666), 2, - sym__ws, - sym_comment, - ACTIONS(3648), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1034), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(3644), 6, + anon_sym_repeat, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(1923), 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, - [111658] = 26, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [93453] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(3620), 1, + ACTIONS(4472), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(3622), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(3624), 1, anon_sym_POUND_CARET, - ACTIONS(3628), 1, + 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, + ACTIONS(4474), 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, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - ACTIONS(3630), 1, aux_sym_accumulation_verb_token1, - ACTIONS(3634), 1, + anon_sym_for, anon_sym_and, - ACTIONS(3636), 1, + anon_sym_as, anon_sym_with, - ACTIONS(3638), 1, anon_sym_do, - ACTIONS(3642), 1, - anon_sym_repeat, - ACTIONS(3646), 1, - anon_sym_else, - ACTIONS(3672), 1, - anon_sym_RPAREN, - STATE(281), 1, - sym_accumulation_verb, - STATE(2236), 1, - sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, - sym_meta_lit, - STATE(2389), 1, - aux_sym_list_lit_repeat1, - ACTIONS(3632), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(3640), 2, anon_sym_while, anon_sym_until, - ACTIONS(3670), 2, - sym__ws, - sym_comment, - ACTIONS(3648), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1000), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(3644), 6, + anon_sym_repeat, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(1923), 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, - [111760] = 26, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [93513] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(3620), 1, + ACTIONS(4476), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(3622), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(3624), 1, anon_sym_POUND_CARET, - ACTIONS(3628), 1, + 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, + ACTIONS(4478), 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, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - ACTIONS(3630), 1, aux_sym_accumulation_verb_token1, - ACTIONS(3634), 1, + anon_sym_for, anon_sym_and, - ACTIONS(3636), 1, + anon_sym_as, anon_sym_with, - ACTIONS(3638), 1, anon_sym_do, - ACTIONS(3642), 1, - anon_sym_repeat, - ACTIONS(3646), 1, - anon_sym_else, - ACTIONS(3674), 1, - anon_sym_RPAREN, - STATE(281), 1, - sym_accumulation_verb, - STATE(2236), 1, - sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, - sym_meta_lit, - STATE(2389), 1, - aux_sym_list_lit_repeat1, - ACTIONS(3632), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(3640), 2, anon_sym_while, anon_sym_until, - ACTIONS(3658), 2, - sym__ws, - sym_comment, - ACTIONS(3648), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(981), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(3644), 6, + anon_sym_repeat, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(1923), 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, - [111862] = 26, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [93573] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(3620), 1, + ACTIONS(4480), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(3622), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(3624), 1, anon_sym_POUND_CARET, - ACTIONS(3628), 1, + 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, + ACTIONS(4482), 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, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - ACTIONS(3630), 1, aux_sym_accumulation_verb_token1, - ACTIONS(3634), 1, + anon_sym_for, anon_sym_and, - ACTIONS(3636), 1, + anon_sym_as, anon_sym_with, - ACTIONS(3638), 1, anon_sym_do, - ACTIONS(3642), 1, - anon_sym_repeat, - ACTIONS(3646), 1, - anon_sym_else, - ACTIONS(3678), 1, - anon_sym_RPAREN, - STATE(281), 1, - sym_accumulation_verb, - STATE(2236), 1, - sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, - sym_meta_lit, - STATE(2389), 1, - aux_sym_list_lit_repeat1, - ACTIONS(3632), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(3640), 2, anon_sym_while, anon_sym_until, - ACTIONS(3676), 2, - sym__ws, - sym_comment, - ACTIONS(3648), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(975), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(3644), 6, + anon_sym_repeat, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(1923), 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, - [111964] = 26, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [93633] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(3620), 1, + ACTIONS(4428), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(3622), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(3624), 1, anon_sym_POUND_CARET, - ACTIONS(3628), 1, + 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, + ACTIONS(4430), 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, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - ACTIONS(3630), 1, aux_sym_accumulation_verb_token1, - ACTIONS(3634), 1, + anon_sym_for, anon_sym_and, - ACTIONS(3636), 1, + anon_sym_as, anon_sym_with, - ACTIONS(3638), 1, anon_sym_do, - ACTIONS(3642), 1, - anon_sym_repeat, - ACTIONS(3646), 1, - anon_sym_else, - ACTIONS(3678), 1, - anon_sym_RPAREN, - STATE(281), 1, - sym_accumulation_verb, - STATE(2236), 1, - sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, - sym_meta_lit, - STATE(2389), 1, - aux_sym_list_lit_repeat1, - ACTIONS(3632), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(3640), 2, anon_sym_while, anon_sym_until, - ACTIONS(3658), 2, - sym__ws, - sym_comment, - ACTIONS(3648), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(981), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(3644), 6, + anon_sym_repeat, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(1923), 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, - [112066] = 26, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [93693] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(3620), 1, + ACTIONS(4484), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(3622), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(3624), 1, anon_sym_POUND_CARET, - ACTIONS(3628), 1, + 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, + ACTIONS(4486), 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, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - ACTIONS(3630), 1, aux_sym_accumulation_verb_token1, - ACTIONS(3634), 1, + anon_sym_for, anon_sym_and, - ACTIONS(3636), 1, + anon_sym_as, anon_sym_with, - ACTIONS(3638), 1, anon_sym_do, - ACTIONS(3642), 1, - anon_sym_repeat, - ACTIONS(3646), 1, - anon_sym_else, - ACTIONS(3680), 1, - anon_sym_RPAREN, - STATE(281), 1, - sym_accumulation_verb, - STATE(2236), 1, - sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, - sym_meta_lit, - STATE(2389), 1, - aux_sym_list_lit_repeat1, - ACTIONS(3632), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(3640), 2, anon_sym_while, anon_sym_until, - ACTIONS(3658), 2, - sym__ws, - sym_comment, - ACTIONS(3648), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(981), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(3644), 6, + anon_sym_repeat, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(1923), 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, - [112168] = 26, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [93753] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(3620), 1, + ACTIONS(4488), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(3622), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(3624), 1, anon_sym_POUND_CARET, - ACTIONS(3628), 1, + 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, + ACTIONS(4490), 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, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - ACTIONS(3630), 1, aux_sym_accumulation_verb_token1, - ACTIONS(3634), 1, + anon_sym_for, anon_sym_and, - ACTIONS(3636), 1, + anon_sym_as, anon_sym_with, - ACTIONS(3638), 1, anon_sym_do, - ACTIONS(3642), 1, - anon_sym_repeat, - ACTIONS(3646), 1, - anon_sym_else, - ACTIONS(3684), 1, - anon_sym_RPAREN, - STATE(281), 1, - sym_accumulation_verb, - STATE(2236), 1, - sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, - sym_meta_lit, - STATE(2389), 1, - aux_sym_list_lit_repeat1, - ACTIONS(3632), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(3640), 2, anon_sym_while, anon_sym_until, - ACTIONS(3682), 2, - sym__ws, - sym_comment, - ACTIONS(3648), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(968), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(3644), 6, + anon_sym_repeat, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(1923), 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, - [112270] = 26, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [93813] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(3620), 1, + ACTIONS(4492), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(3622), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(3624), 1, anon_sym_POUND_CARET, - ACTIONS(3628), 1, + 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, + ACTIONS(4494), 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, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - ACTIONS(3630), 1, aux_sym_accumulation_verb_token1, - ACTIONS(3634), 1, + anon_sym_for, anon_sym_and, - ACTIONS(3636), 1, + anon_sym_as, anon_sym_with, - ACTIONS(3638), 1, anon_sym_do, - ACTIONS(3642), 1, - anon_sym_repeat, - ACTIONS(3646), 1, - anon_sym_else, - ACTIONS(3684), 1, - anon_sym_RPAREN, - STATE(281), 1, - sym_accumulation_verb, - STATE(2236), 1, - sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, - sym_meta_lit, - STATE(2389), 1, - aux_sym_list_lit_repeat1, - ACTIONS(3632), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(3640), 2, anon_sym_while, anon_sym_until, - ACTIONS(3658), 2, - sym__ws, - sym_comment, - ACTIONS(3648), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(981), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(3644), 6, + anon_sym_repeat, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(1923), 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, - [112372] = 26, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [93873] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(3620), 1, + ACTIONS(4496), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(3622), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(3624), 1, anon_sym_POUND_CARET, - ACTIONS(3628), 1, + 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, + ACTIONS(4498), 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, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - ACTIONS(3630), 1, aux_sym_accumulation_verb_token1, - ACTIONS(3634), 1, + anon_sym_for, anon_sym_and, - ACTIONS(3636), 1, + anon_sym_as, anon_sym_with, - ACTIONS(3638), 1, anon_sym_do, - ACTIONS(3642), 1, - anon_sym_repeat, - ACTIONS(3646), 1, - anon_sym_else, - ACTIONS(3680), 1, - anon_sym_RPAREN, - STATE(281), 1, - sym_accumulation_verb, - STATE(2236), 1, - sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, - sym_meta_lit, - STATE(2389), 1, - aux_sym_list_lit_repeat1, - ACTIONS(3632), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(3640), 2, anon_sym_while, anon_sym_until, - ACTIONS(3686), 2, - sym__ws, - sym_comment, - ACTIONS(3648), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(965), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(3644), 6, + anon_sym_repeat, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(1923), 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, - [112474] = 26, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [93933] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(3620), 1, + ACTIONS(4372), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(3622), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(3624), 1, anon_sym_POUND_CARET, - ACTIONS(3628), 1, + 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, + ACTIONS(4374), 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, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - ACTIONS(3630), 1, aux_sym_accumulation_verb_token1, - ACTIONS(3634), 1, + anon_sym_for, anon_sym_and, - ACTIONS(3636), 1, + anon_sym_as, anon_sym_with, - ACTIONS(3638), 1, anon_sym_do, - ACTIONS(3642), 1, - anon_sym_repeat, - ACTIONS(3646), 1, - anon_sym_else, - ACTIONS(3688), 1, - anon_sym_RPAREN, - STATE(281), 1, - sym_accumulation_verb, - STATE(2236), 1, - sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, - sym_meta_lit, - STATE(2389), 1, - aux_sym_list_lit_repeat1, - ACTIONS(3632), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(3640), 2, anon_sym_while, anon_sym_until, - ACTIONS(3658), 2, - sym__ws, - sym_comment, - ACTIONS(3648), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(981), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(3644), 6, + anon_sym_repeat, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(1923), 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, - [112576] = 26, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [93993] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(3620), 1, + ACTIONS(4440), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(3622), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(3624), 1, anon_sym_POUND_CARET, - ACTIONS(3628), 1, + 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, + ACTIONS(4442), 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, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - ACTIONS(3630), 1, aux_sym_accumulation_verb_token1, - ACTIONS(3634), 1, + anon_sym_for, anon_sym_and, - ACTIONS(3636), 1, + anon_sym_as, anon_sym_with, - ACTIONS(3638), 1, anon_sym_do, - ACTIONS(3642), 1, - anon_sym_repeat, - ACTIONS(3646), 1, - anon_sym_else, - ACTIONS(3688), 1, - anon_sym_RPAREN, - STATE(281), 1, - sym_accumulation_verb, - STATE(2236), 1, - sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, - sym_meta_lit, - STATE(2389), 1, - aux_sym_list_lit_repeat1, - ACTIONS(3632), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(3640), 2, anon_sym_while, anon_sym_until, - ACTIONS(3690), 2, - sym__ws, - sym_comment, - ACTIONS(3648), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(982), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(3644), 6, + anon_sym_repeat, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(1923), 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, - [112678] = 26, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [94053] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(3620), 1, + ACTIONS(4500), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(3622), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(3624), 1, anon_sym_POUND_CARET, - ACTIONS(3628), 1, + 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, + ACTIONS(4502), 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, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - ACTIONS(3630), 1, aux_sym_accumulation_verb_token1, - ACTIONS(3634), 1, + anon_sym_for, anon_sym_and, - ACTIONS(3636), 1, + anon_sym_as, anon_sym_with, - ACTIONS(3638), 1, anon_sym_do, - ACTIONS(3642), 1, - anon_sym_repeat, - ACTIONS(3646), 1, - anon_sym_else, - ACTIONS(3692), 1, - anon_sym_RPAREN, - STATE(281), 1, - sym_accumulation_verb, - STATE(2236), 1, - sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, - sym_meta_lit, - STATE(2389), 1, - aux_sym_list_lit_repeat1, - ACTIONS(3632), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(3640), 2, anon_sym_while, anon_sym_until, - ACTIONS(3658), 2, - sym__ws, - sym_comment, - ACTIONS(3648), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(981), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(3644), 6, + anon_sym_repeat, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(1923), 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, - [112780] = 4, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [94113] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3694), 1, - aux_sym_num_lit_token2, - ACTIONS(3055), 22, + ACTIONS(4504), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -98563,6 +92615,7 @@ static 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, @@ -98570,14 +92623,14 @@ static 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, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - ACTIONS(3057), 25, + ACTIONS(4506), 29, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -98588,2672 +92641,2201 @@ static 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [112838] = 26, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(3620), 1, - anon_sym_POUND_, - ACTIONS(3622), 1, - anon_sym_CARET, - ACTIONS(3624), 1, - anon_sym_POUND_CARET, - ACTIONS(3628), 1, - anon_sym_cl, - ACTIONS(3630), 1, aux_sym_accumulation_verb_token1, - ACTIONS(3634), 1, + anon_sym_for, anon_sym_and, - ACTIONS(3636), 1, + anon_sym_as, anon_sym_with, - ACTIONS(3638), 1, anon_sym_do, - ACTIONS(3642), 1, - anon_sym_repeat, - ACTIONS(3646), 1, - anon_sym_else, - ACTIONS(3692), 1, - anon_sym_RPAREN, - STATE(281), 1, - sym_accumulation_verb, - STATE(2236), 1, - sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, - sym_meta_lit, - STATE(2389), 1, - aux_sym_list_lit_repeat1, - ACTIONS(3632), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(3640), 2, anon_sym_while, anon_sym_until, - ACTIONS(3696), 2, - sym__ws, - sym_comment, - ACTIONS(3648), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(973), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(3644), 6, + anon_sym_repeat, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(1923), 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, - [112940] = 26, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [94173] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(3620), 1, + ACTIONS(4432), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(3622), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(3624), 1, anon_sym_POUND_CARET, - ACTIONS(3628), 1, + 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, + ACTIONS(4434), 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, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - ACTIONS(3630), 1, aux_sym_accumulation_verb_token1, - ACTIONS(3634), 1, + anon_sym_for, anon_sym_and, - ACTIONS(3636), 1, + anon_sym_as, anon_sym_with, - ACTIONS(3638), 1, anon_sym_do, - ACTIONS(3642), 1, - anon_sym_repeat, - ACTIONS(3646), 1, - anon_sym_else, - ACTIONS(3700), 1, - anon_sym_RPAREN, - STATE(281), 1, - sym_accumulation_verb, - STATE(2236), 1, - sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, - sym_meta_lit, - STATE(2389), 1, - aux_sym_list_lit_repeat1, - ACTIONS(3632), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(3640), 2, anon_sym_while, anon_sym_until, - ACTIONS(3698), 2, - sym__ws, - sym_comment, - ACTIONS(3648), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1040), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(3644), 6, + anon_sym_repeat, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(1923), 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, - [113042] = 26, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [94233] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3705), 1, + ACTIONS(4436), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(3708), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(3711), 1, anon_sym_POUND_CARET, - ACTIONS(3714), 1, anon_sym_LPAREN, - ACTIONS(3717), 1, anon_sym_RPAREN, - ACTIONS(3719), 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, + 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(4438), 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, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - ACTIONS(3722), 1, aux_sym_accumulation_verb_token1, - ACTIONS(3728), 1, + anon_sym_for, anon_sym_and, - ACTIONS(3731), 1, + anon_sym_as, anon_sym_with, - ACTIONS(3734), 1, anon_sym_do, - ACTIONS(3740), 1, - anon_sym_repeat, - ACTIONS(3746), 1, - anon_sym_else, - STATE(281), 1, - sym_accumulation_verb, - STATE(2236), 1, - sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, - sym_meta_lit, - STATE(2389), 1, - aux_sym_list_lit_repeat1, - ACTIONS(3702), 2, - sym__ws, - sym_comment, - ACTIONS(3725), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(3737), 2, anon_sym_while, anon_sym_until, - ACTIONS(3749), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(981), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(3743), 6, + anon_sym_repeat, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(1923), 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, - [113144] = 26, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [94293] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(3620), 1, + ACTIONS(4500), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(3622), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(3624), 1, anon_sym_POUND_CARET, - ACTIONS(3628), 1, + 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, + ACTIONS(4502), 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, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - ACTIONS(3630), 1, aux_sym_accumulation_verb_token1, - ACTIONS(3634), 1, + anon_sym_for, anon_sym_and, - ACTIONS(3636), 1, + anon_sym_as, anon_sym_with, - ACTIONS(3638), 1, anon_sym_do, - ACTIONS(3642), 1, - anon_sym_repeat, - ACTIONS(3646), 1, - anon_sym_else, - ACTIONS(3752), 1, - anon_sym_RPAREN, - STATE(281), 1, - sym_accumulation_verb, - STATE(2236), 1, - sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, - sym_meta_lit, - STATE(2389), 1, - aux_sym_list_lit_repeat1, - ACTIONS(3632), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(3640), 2, anon_sym_while, anon_sym_until, - ACTIONS(3658), 2, - sym__ws, - sym_comment, - ACTIONS(3648), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(981), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(3644), 6, + anon_sym_repeat, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(1923), 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, - [113246] = 26, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [94353] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(3620), 1, + ACTIONS(4504), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(3622), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(3624), 1, anon_sym_POUND_CARET, - ACTIONS(3626), 1, + anon_sym_LPAREN, anon_sym_RPAREN, - ACTIONS(3628), 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, + 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(4506), 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, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - ACTIONS(3630), 1, aux_sym_accumulation_verb_token1, - ACTIONS(3634), 1, + anon_sym_for, anon_sym_and, - ACTIONS(3636), 1, + anon_sym_as, anon_sym_with, - ACTIONS(3638), 1, anon_sym_do, - ACTIONS(3642), 1, - anon_sym_repeat, - ACTIONS(3646), 1, - anon_sym_else, - STATE(281), 1, - sym_accumulation_verb, - STATE(2236), 1, - sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, - sym_meta_lit, - STATE(2389), 1, - aux_sym_list_lit_repeat1, - ACTIONS(3632), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(3640), 2, anon_sym_while, anon_sym_until, - ACTIONS(3658), 2, - sym__ws, - sym_comment, - ACTIONS(3648), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(981), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(3644), 6, + anon_sym_repeat, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(1923), 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, - [113348] = 26, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [94413] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(3620), 1, + ACTIONS(4440), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(3622), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(3624), 1, anon_sym_POUND_CARET, - ACTIONS(3628), 1, + 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, + ACTIONS(4442), 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, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - ACTIONS(3630), 1, aux_sym_accumulation_verb_token1, - ACTIONS(3634), 1, + anon_sym_for, anon_sym_and, - ACTIONS(3636), 1, + anon_sym_as, anon_sym_with, - ACTIONS(3638), 1, anon_sym_do, - ACTIONS(3642), 1, - anon_sym_repeat, - ACTIONS(3646), 1, - anon_sym_else, - ACTIONS(3756), 1, - anon_sym_RPAREN, - STATE(281), 1, - sym_accumulation_verb, - STATE(2236), 1, - sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, - sym_meta_lit, - STATE(2389), 1, - aux_sym_list_lit_repeat1, - ACTIONS(3632), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(3640), 2, anon_sym_while, anon_sym_until, - ACTIONS(3754), 2, - sym__ws, - sym_comment, - ACTIONS(3648), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(999), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(3644), 6, + anon_sym_repeat, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(1923), 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, - [113450] = 26, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [94473] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(3620), 1, + ACTIONS(4508), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(3622), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(3624), 1, anon_sym_POUND_CARET, - ACTIONS(3628), 1, + 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, + ACTIONS(4510), 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, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - ACTIONS(3630), 1, aux_sym_accumulation_verb_token1, - ACTIONS(3634), 1, + anon_sym_for, anon_sym_and, - ACTIONS(3636), 1, + anon_sym_as, anon_sym_with, - ACTIONS(3638), 1, anon_sym_do, - ACTIONS(3642), 1, - anon_sym_repeat, - ACTIONS(3646), 1, - anon_sym_else, - ACTIONS(3760), 1, - anon_sym_RPAREN, - STATE(281), 1, - sym_accumulation_verb, - STATE(2236), 1, - sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, - sym_meta_lit, - STATE(2389), 1, - aux_sym_list_lit_repeat1, - ACTIONS(3632), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(3640), 2, anon_sym_while, anon_sym_until, - ACTIONS(3758), 2, - sym__ws, - sym_comment, - ACTIONS(3648), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(977), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(3644), 6, + anon_sym_repeat, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(1923), 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, - [113552] = 26, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [94533] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(3620), 1, + ACTIONS(4484), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(3622), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(3624), 1, anon_sym_POUND_CARET, - ACTIONS(3628), 1, + 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, + ACTIONS(4486), 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, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - ACTIONS(3630), 1, aux_sym_accumulation_verb_token1, - ACTIONS(3634), 1, + anon_sym_for, anon_sym_and, - ACTIONS(3636), 1, + anon_sym_as, anon_sym_with, - ACTIONS(3638), 1, anon_sym_do, - ACTIONS(3642), 1, - anon_sym_repeat, - ACTIONS(3646), 1, - anon_sym_else, - ACTIONS(3760), 1, - anon_sym_RPAREN, - STATE(281), 1, - sym_accumulation_verb, - STATE(2236), 1, - sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, - sym_meta_lit, - STATE(2389), 1, - aux_sym_list_lit_repeat1, - ACTIONS(3632), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(3640), 2, anon_sym_while, anon_sym_until, - ACTIONS(3658), 2, - sym__ws, - sym_comment, - ACTIONS(3648), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(981), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(3644), 6, + anon_sym_repeat, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(1923), 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, - [113654] = 26, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [94593] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(3620), 1, + ACTIONS(4440), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(3622), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(3624), 1, anon_sym_POUND_CARET, - ACTIONS(3628), 1, + 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, + ACTIONS(4442), 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, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - ACTIONS(3630), 1, aux_sym_accumulation_verb_token1, - ACTIONS(3634), 1, + anon_sym_for, anon_sym_and, - ACTIONS(3636), 1, + anon_sym_as, anon_sym_with, - ACTIONS(3638), 1, anon_sym_do, - ACTIONS(3642), 1, - anon_sym_repeat, - ACTIONS(3646), 1, - anon_sym_else, - ACTIONS(3764), 1, - anon_sym_RPAREN, - STATE(281), 1, - sym_accumulation_verb, - STATE(2236), 1, - sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, - sym_meta_lit, - STATE(2389), 1, - aux_sym_list_lit_repeat1, - ACTIONS(3632), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(3640), 2, anon_sym_while, anon_sym_until, - ACTIONS(3762), 2, - sym__ws, - sym_comment, - ACTIONS(3648), 3, + 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, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1014), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(3644), 6, + [94653] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4496), 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_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, + ACTIONS(4498), 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, + 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, - STATE(1923), 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, - [113756] = 26, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [94713] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(3620), 1, + ACTIONS(4500), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(3622), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(3624), 1, anon_sym_POUND_CARET, - ACTIONS(3628), 1, + 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, + ACTIONS(4502), 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, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - ACTIONS(3630), 1, aux_sym_accumulation_verb_token1, - ACTIONS(3634), 1, + anon_sym_for, anon_sym_and, - ACTIONS(3636), 1, + anon_sym_as, anon_sym_with, - ACTIONS(3638), 1, anon_sym_do, - ACTIONS(3642), 1, - anon_sym_repeat, - ACTIONS(3646), 1, - anon_sym_else, - ACTIONS(3768), 1, - anon_sym_RPAREN, - STATE(281), 1, - sym_accumulation_verb, - STATE(2236), 1, - sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, - sym_meta_lit, - STATE(2389), 1, - aux_sym_list_lit_repeat1, - ACTIONS(3632), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(3640), 2, anon_sym_while, anon_sym_until, - ACTIONS(3766), 2, - sym__ws, - sym_comment, - ACTIONS(3648), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1035), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(3644), 6, + anon_sym_repeat, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(1923), 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, - [113858] = 26, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [94773] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(3620), 1, + ACTIONS(4512), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(3622), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(3624), 1, anon_sym_POUND_CARET, - ACTIONS(3628), 1, + 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, + ACTIONS(4514), 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, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - ACTIONS(3630), 1, aux_sym_accumulation_verb_token1, - ACTIONS(3634), 1, + anon_sym_for, anon_sym_and, - ACTIONS(3636), 1, + anon_sym_as, anon_sym_with, - ACTIONS(3638), 1, anon_sym_do, - ACTIONS(3642), 1, - anon_sym_repeat, - ACTIONS(3646), 1, - anon_sym_else, - ACTIONS(3764), 1, - anon_sym_RPAREN, - STATE(281), 1, - sym_accumulation_verb, - STATE(2236), 1, - sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, - sym_meta_lit, - STATE(2389), 1, - aux_sym_list_lit_repeat1, - ACTIONS(3632), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(3640), 2, anon_sym_while, anon_sym_until, - ACTIONS(3658), 2, - sym__ws, - sym_comment, - ACTIONS(3648), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(981), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(3644), 6, + anon_sym_repeat, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(1923), 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, - [113960] = 26, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [94833] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(3620), 1, + ACTIONS(4504), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(3622), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(3624), 1, anon_sym_POUND_CARET, - ACTIONS(3628), 1, + 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, + ACTIONS(4506), 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, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - ACTIONS(3630), 1, aux_sym_accumulation_verb_token1, - ACTIONS(3634), 1, + anon_sym_for, anon_sym_and, - ACTIONS(3636), 1, + anon_sym_as, anon_sym_with, - ACTIONS(3638), 1, anon_sym_do, - ACTIONS(3642), 1, - anon_sym_repeat, - ACTIONS(3646), 1, - anon_sym_else, - ACTIONS(3672), 1, - anon_sym_RPAREN, - STATE(281), 1, - sym_accumulation_verb, - STATE(2236), 1, - sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, - sym_meta_lit, - STATE(2389), 1, - aux_sym_list_lit_repeat1, - ACTIONS(3632), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(3640), 2, anon_sym_while, anon_sym_until, - ACTIONS(3658), 2, - sym__ws, - sym_comment, - ACTIONS(3648), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(981), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(3644), 6, + anon_sym_repeat, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(1923), 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, - [114062] = 26, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [94893] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(3620), 1, + ACTIONS(4500), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(3622), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(3624), 1, anon_sym_POUND_CARET, - ACTIONS(3628), 1, + 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, + ACTIONS(4502), 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, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - ACTIONS(3630), 1, aux_sym_accumulation_verb_token1, - ACTIONS(3634), 1, + anon_sym_for, anon_sym_and, - ACTIONS(3636), 1, + anon_sym_as, anon_sym_with, - ACTIONS(3638), 1, anon_sym_do, - ACTIONS(3642), 1, - anon_sym_repeat, - ACTIONS(3646), 1, - anon_sym_else, - ACTIONS(3772), 1, - anon_sym_RPAREN, - STATE(281), 1, - sym_accumulation_verb, - STATE(2236), 1, - sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, - sym_meta_lit, - STATE(2389), 1, - aux_sym_list_lit_repeat1, - ACTIONS(3632), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(3640), 2, anon_sym_while, anon_sym_until, - ACTIONS(3770), 2, - sym__ws, - sym_comment, - ACTIONS(3648), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1007), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(3644), 6, + anon_sym_repeat, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(1923), 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, - [114164] = 26, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [94953] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(3620), 1, + ACTIONS(4504), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(3622), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(3624), 1, anon_sym_POUND_CARET, - ACTIONS(3628), 1, + 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, + ACTIONS(4506), 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, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - ACTIONS(3630), 1, aux_sym_accumulation_verb_token1, - ACTIONS(3634), 1, + anon_sym_for, anon_sym_and, - ACTIONS(3636), 1, + anon_sym_as, anon_sym_with, - ACTIONS(3638), 1, anon_sym_do, - ACTIONS(3642), 1, - anon_sym_repeat, - ACTIONS(3646), 1, - anon_sym_else, - ACTIONS(3774), 1, - anon_sym_RPAREN, - STATE(281), 1, - sym_accumulation_verb, - STATE(2236), 1, - sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, - sym_meta_lit, - STATE(2389), 1, - aux_sym_list_lit_repeat1, - ACTIONS(3632), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(3640), 2, anon_sym_while, anon_sym_until, - ACTIONS(3658), 2, - sym__ws, - sym_comment, - ACTIONS(3648), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(981), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(3644), 6, + anon_sym_repeat, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(1923), 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, - [114266] = 26, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [95013] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(3620), 1, + ACTIONS(4519), 1, anon_sym_POUND_, - ACTIONS(3622), 1, + ACTIONS(4516), 2, + sym__ws, + sym_comment, + STATE(940), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(4122), 20, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(3624), 1, anon_sym_POUND_CARET, - ACTIONS(3628), 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(4120), 25, + 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(3630), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(3634), 1, - anon_sym_and, - ACTIONS(3636), 1, - anon_sym_with, - ACTIONS(3638), 1, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [95078] = 12, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4525), 1, + anon_sym_POUND_, + ACTIONS(4530), 1, + anon_sym_cl, + ACTIONS(4533), 1, anon_sym_do, - ACTIONS(3642), 1, - anon_sym_repeat, - ACTIONS(3646), 1, - anon_sym_else, - ACTIONS(3778), 1, - anon_sym_RPAREN, - STATE(281), 1, - sym_accumulation_verb, - STATE(2236), 1, - sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, - sym_meta_lit, - STATE(2389), 1, - aux_sym_list_lit_repeat1, - ACTIONS(3632), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(3640), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(3776), 2, + STATE(292), 1, + sym_for_clause_word, + STATE(946), 1, + aux_sym_for_clause_repeat1, + STATE(1250), 1, + sym__for_part, + ACTIONS(308), 2, + anon_sym_in, + anon_sym_being, + ACTIONS(4522), 2, sym__ws, sym_comment, - ACTIONS(3648), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(986), 4, + STATE(2105), 3, sym__gap, sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(3644), 6, + aux_sym_dis_expr_repeat1, + ACTIONS(310), 14, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + ACTIONS(4528), 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, - STATE(1923), 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, - [114368] = 26, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [95153] = 12, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(3620), 1, + ACTIONS(4538), 1, anon_sym_POUND_, - ACTIONS(3622), 1, - anon_sym_CARET, - ACTIONS(3624), 1, - anon_sym_POUND_CARET, - ACTIONS(3628), 1, + ACTIONS(4543), 1, anon_sym_cl, - ACTIONS(3630), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(3634), 1, - anon_sym_and, - ACTIONS(3636), 1, - anon_sym_with, - ACTIONS(3638), 1, + ACTIONS(4546), 1, anon_sym_do, - ACTIONS(3642), 1, - anon_sym_repeat, - ACTIONS(3646), 1, - anon_sym_else, - ACTIONS(3782), 1, + STATE(292), 1, + sym_for_clause_word, + STATE(946), 1, + aux_sym_for_clause_repeat1, + STATE(1250), 1, + sym__for_part, + ACTIONS(308), 2, + anon_sym_in, + anon_sym_being, + ACTIONS(4535), 2, + sym__ws, + sym_comment, + STATE(2105), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(310), 14, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + ACTIONS(4541), 22, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, anon_sym_RPAREN, - STATE(281), 1, - sym_accumulation_verb, - STATE(2236), 1, - sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, - sym_meta_lit, - STATE(2389), 1, - aux_sym_list_lit_repeat1, - ACTIONS(3632), 2, + aux_sym_accumulation_verb_token1, anon_sym_for, + anon_sym_and, anon_sym_as, - ACTIONS(3640), 2, + anon_sym_with, anon_sym_while, anon_sym_until, - ACTIONS(3780), 2, - sym__ws, - sym_comment, - ACTIONS(3648), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(983), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(3644), 6, + anon_sym_repeat, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(1923), 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, - [114470] = 26, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [95228] = 12, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(3620), 1, + ACTIONS(4538), 1, anon_sym_POUND_, - ACTIONS(3622), 1, - anon_sym_CARET, - ACTIONS(3624), 1, - anon_sym_POUND_CARET, - ACTIONS(3628), 1, + ACTIONS(4543), 1, anon_sym_cl, - ACTIONS(3630), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(3634), 1, - anon_sym_and, - ACTIONS(3636), 1, - anon_sym_with, - ACTIONS(3638), 1, + ACTIONS(4546), 1, anon_sym_do, - ACTIONS(3642), 1, - anon_sym_repeat, - ACTIONS(3646), 1, - anon_sym_else, - ACTIONS(3782), 1, + STATE(292), 1, + sym_for_clause_word, + STATE(946), 1, + aux_sym_for_clause_repeat1, + STATE(1250), 1, + sym__for_part, + ACTIONS(308), 2, + anon_sym_in, + anon_sym_being, + ACTIONS(4535), 2, + sym__ws, + sym_comment, + STATE(2105), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(310), 14, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + ACTIONS(4541), 22, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, anon_sym_RPAREN, - STATE(281), 1, - sym_accumulation_verb, - STATE(2236), 1, - sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, - sym_meta_lit, - STATE(2389), 1, - aux_sym_list_lit_repeat1, - ACTIONS(3632), 2, + aux_sym_accumulation_verb_token1, anon_sym_for, + anon_sym_and, anon_sym_as, - ACTIONS(3640), 2, + anon_sym_with, anon_sym_while, anon_sym_until, - ACTIONS(3658), 2, - sym__ws, - sym_comment, - ACTIONS(3648), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(981), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(3644), 6, + anon_sym_repeat, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(1923), 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, - [114572] = 26, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [95303] = 12, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(3620), 1, + ACTIONS(4551), 1, anon_sym_POUND_, - ACTIONS(3622), 1, - anon_sym_CARET, - ACTIONS(3624), 1, - anon_sym_POUND_CARET, - ACTIONS(3628), 1, + ACTIONS(4556), 1, anon_sym_cl, - ACTIONS(3630), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(3634), 1, - anon_sym_and, - ACTIONS(3636), 1, - anon_sym_with, - ACTIONS(3638), 1, + ACTIONS(4559), 1, anon_sym_do, - ACTIONS(3642), 1, - anon_sym_repeat, - ACTIONS(3646), 1, - anon_sym_else, - ACTIONS(3784), 1, + STATE(292), 1, + sym_for_clause_word, + STATE(946), 1, + aux_sym_for_clause_repeat1, + STATE(1250), 1, + sym__for_part, + ACTIONS(308), 2, + anon_sym_in, + anon_sym_being, + ACTIONS(4548), 2, + sym__ws, + sym_comment, + STATE(2105), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(310), 14, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + ACTIONS(4554), 22, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, anon_sym_RPAREN, - STATE(281), 1, - sym_accumulation_verb, - STATE(2236), 1, - sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, - sym_meta_lit, - STATE(2389), 1, - aux_sym_list_lit_repeat1, - ACTIONS(3632), 2, + aux_sym_accumulation_verb_token1, anon_sym_for, + anon_sym_and, anon_sym_as, - ACTIONS(3640), 2, + anon_sym_with, anon_sym_while, anon_sym_until, - ACTIONS(3658), 2, - sym__ws, - sym_comment, - ACTIONS(3648), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(981), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(3644), 6, + anon_sym_repeat, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(1923), 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, - [114674] = 26, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [95378] = 12, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(3620), 1, + ACTIONS(4564), 1, anon_sym_POUND_, - ACTIONS(3622), 1, - anon_sym_CARET, - ACTIONS(3624), 1, - anon_sym_POUND_CARET, - ACTIONS(3628), 1, + ACTIONS(4569), 1, anon_sym_cl, - ACTIONS(3630), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(3634), 1, - anon_sym_and, - ACTIONS(3636), 1, - anon_sym_with, - ACTIONS(3638), 1, + ACTIONS(4572), 1, anon_sym_do, - ACTIONS(3642), 1, - anon_sym_repeat, - ACTIONS(3646), 1, - anon_sym_else, - ACTIONS(3788), 1, + STATE(292), 1, + sym_for_clause_word, + STATE(946), 1, + aux_sym_for_clause_repeat1, + STATE(1250), 1, + sym__for_part, + ACTIONS(308), 2, + anon_sym_in, + anon_sym_being, + ACTIONS(4561), 2, + sym__ws, + sym_comment, + STATE(2105), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(310), 14, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + ACTIONS(4567), 22, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, anon_sym_RPAREN, - STATE(281), 1, - sym_accumulation_verb, - STATE(2236), 1, - sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, - sym_meta_lit, - STATE(2389), 1, - aux_sym_list_lit_repeat1, - ACTIONS(3632), 2, + aux_sym_accumulation_verb_token1, anon_sym_for, + anon_sym_and, anon_sym_as, - ACTIONS(3640), 2, + anon_sym_with, anon_sym_while, anon_sym_until, - ACTIONS(3786), 2, - sym__ws, - sym_comment, - ACTIONS(3648), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(971), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(3644), 6, + anon_sym_repeat, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(1923), 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, - [114776] = 26, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [95453] = 12, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(3620), 1, + ACTIONS(4577), 1, anon_sym_POUND_, - ACTIONS(3622), 1, - anon_sym_CARET, - ACTIONS(3624), 1, - anon_sym_POUND_CARET, - ACTIONS(3628), 1, + ACTIONS(4582), 1, anon_sym_cl, - ACTIONS(3630), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(3634), 1, - anon_sym_and, - ACTIONS(3636), 1, - anon_sym_with, - ACTIONS(3638), 1, + ACTIONS(4591), 1, anon_sym_do, - ACTIONS(3642), 1, - anon_sym_repeat, - ACTIONS(3646), 1, - anon_sym_else, - ACTIONS(3792), 1, + STATE(292), 1, + sym_for_clause_word, + STATE(946), 1, + aux_sym_for_clause_repeat1, + STATE(1250), 1, + sym__for_part, + ACTIONS(4574), 2, + sym__ws, + sym_comment, + ACTIONS(4585), 2, + anon_sym_in, + anon_sym_being, + STATE(2105), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(4588), 14, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + ACTIONS(4580), 22, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, anon_sym_RPAREN, - STATE(281), 1, - sym_accumulation_verb, - STATE(2236), 1, - sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, - sym_meta_lit, - STATE(2389), 1, - aux_sym_list_lit_repeat1, - ACTIONS(3632), 2, + aux_sym_accumulation_verb_token1, anon_sym_for, + anon_sym_and, anon_sym_as, - ACTIONS(3640), 2, + anon_sym_with, anon_sym_while, anon_sym_until, - ACTIONS(3790), 2, - sym__ws, - sym_comment, - ACTIONS(3648), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1001), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(3644), 6, + anon_sym_repeat, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(1923), 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, - [114878] = 26, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [95528] = 12, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(3620), 1, + ACTIONS(4564), 1, anon_sym_POUND_, - ACTIONS(3622), 1, - anon_sym_CARET, - ACTIONS(3624), 1, - anon_sym_POUND_CARET, - ACTIONS(3628), 1, + ACTIONS(4569), 1, anon_sym_cl, - ACTIONS(3630), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(3634), 1, - anon_sym_and, - ACTIONS(3636), 1, - anon_sym_with, - ACTIONS(3638), 1, + ACTIONS(4572), 1, anon_sym_do, - ACTIONS(3642), 1, - anon_sym_repeat, - ACTIONS(3646), 1, - anon_sym_else, - ACTIONS(3652), 1, + STATE(292), 1, + sym_for_clause_word, + STATE(946), 1, + aux_sym_for_clause_repeat1, + STATE(1250), 1, + sym__for_part, + ACTIONS(308), 2, + anon_sym_in, + anon_sym_being, + ACTIONS(4561), 2, + sym__ws, + sym_comment, + STATE(2105), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(310), 14, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + ACTIONS(4567), 22, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, anon_sym_RPAREN, - STATE(281), 1, - sym_accumulation_verb, - STATE(2236), 1, - sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, - sym_meta_lit, - STATE(2389), 1, - aux_sym_list_lit_repeat1, - ACTIONS(3632), 2, + aux_sym_accumulation_verb_token1, anon_sym_for, + anon_sym_and, anon_sym_as, - ACTIONS(3640), 2, + anon_sym_with, anon_sym_while, anon_sym_until, - ACTIONS(3658), 2, - sym__ws, - sym_comment, - ACTIONS(3648), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(981), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(3644), 6, + anon_sym_repeat, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(1923), 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, - [114980] = 26, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [95603] = 12, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(3620), 1, + ACTIONS(4596), 1, anon_sym_POUND_, - ACTIONS(3622), 1, + ACTIONS(4601), 1, + anon_sym_cl, + ACTIONS(4604), 1, + anon_sym_do, + STATE(292), 1, + sym_for_clause_word, + STATE(946), 1, + aux_sym_for_clause_repeat1, + STATE(1250), 1, + sym__for_part, + ACTIONS(308), 2, + anon_sym_in, + anon_sym_being, + ACTIONS(4593), 2, + sym__ws, + sym_comment, + STATE(2105), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(310), 14, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + ACTIONS(4599), 22, anon_sym_CARET, - ACTIONS(3624), 1, anon_sym_POUND_CARET, - ACTIONS(3628), 1, - anon_sym_cl, - ACTIONS(3630), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(3634), 1, - anon_sym_and, - ACTIONS(3636), 1, - anon_sym_with, - ACTIONS(3638), 1, - anon_sym_do, - ACTIONS(3642), 1, - anon_sym_repeat, - ACTIONS(3646), 1, - anon_sym_else, - ACTIONS(3794), 1, + anon_sym_LPAREN, anon_sym_RPAREN, - STATE(281), 1, - sym_accumulation_verb, - STATE(2236), 1, - sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, - sym_meta_lit, - STATE(2389), 1, - aux_sym_list_lit_repeat1, - ACTIONS(3632), 2, + aux_sym_accumulation_verb_token1, anon_sym_for, + anon_sym_and, anon_sym_as, - ACTIONS(3640), 2, + anon_sym_with, anon_sym_while, anon_sym_until, - ACTIONS(3658), 2, - sym__ws, - sym_comment, - ACTIONS(3648), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(981), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(3644), 6, + anon_sym_repeat, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(1923), 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, - [115082] = 26, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [95678] = 12, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(3620), 1, + ACTIONS(4551), 1, anon_sym_POUND_, - ACTIONS(3622), 1, - anon_sym_CARET, - ACTIONS(3624), 1, - anon_sym_POUND_CARET, - ACTIONS(3628), 1, + ACTIONS(4556), 1, anon_sym_cl, - ACTIONS(3630), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(3634), 1, - anon_sym_and, - ACTIONS(3636), 1, - anon_sym_with, - ACTIONS(3638), 1, + ACTIONS(4559), 1, anon_sym_do, - ACTIONS(3642), 1, - anon_sym_repeat, - ACTIONS(3646), 1, - anon_sym_else, - ACTIONS(3656), 1, + STATE(292), 1, + sym_for_clause_word, + STATE(946), 1, + aux_sym_for_clause_repeat1, + STATE(1250), 1, + sym__for_part, + ACTIONS(308), 2, + anon_sym_in, + anon_sym_being, + ACTIONS(4548), 2, + sym__ws, + sym_comment, + STATE(2105), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(310), 14, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + ACTIONS(4554), 22, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, anon_sym_RPAREN, - STATE(281), 1, - sym_accumulation_verb, - STATE(2236), 1, - sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, - sym_meta_lit, - STATE(2389), 1, - aux_sym_list_lit_repeat1, - ACTIONS(3632), 2, + aux_sym_accumulation_verb_token1, anon_sym_for, + anon_sym_and, anon_sym_as, - ACTIONS(3640), 2, + anon_sym_with, anon_sym_while, anon_sym_until, - ACTIONS(3658), 2, - sym__ws, - sym_comment, - ACTIONS(3648), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(981), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(3644), 6, + anon_sym_repeat, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(1923), 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, - [115184] = 26, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [95753] = 12, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(3620), 1, + ACTIONS(4609), 1, anon_sym_POUND_, - ACTIONS(3622), 1, - anon_sym_CARET, - ACTIONS(3624), 1, - anon_sym_POUND_CARET, - ACTIONS(3628), 1, + ACTIONS(4614), 1, anon_sym_cl, - ACTIONS(3630), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(3634), 1, - anon_sym_and, - ACTIONS(3636), 1, - anon_sym_with, - ACTIONS(3638), 1, + ACTIONS(4617), 1, anon_sym_do, - ACTIONS(3642), 1, - anon_sym_repeat, - ACTIONS(3646), 1, - anon_sym_else, - ACTIONS(3796), 1, + STATE(292), 1, + sym_for_clause_word, + STATE(946), 1, + aux_sym_for_clause_repeat1, + STATE(1250), 1, + sym__for_part, + ACTIONS(308), 2, + anon_sym_in, + anon_sym_being, + ACTIONS(4606), 2, + sym__ws, + sym_comment, + STATE(2105), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(310), 14, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + ACTIONS(4612), 22, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, anon_sym_RPAREN, - STATE(281), 1, - sym_accumulation_verb, - STATE(2236), 1, - sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, - sym_meta_lit, - STATE(2389), 1, - aux_sym_list_lit_repeat1, - ACTIONS(3632), 2, + aux_sym_accumulation_verb_token1, anon_sym_for, + anon_sym_and, anon_sym_as, - ACTIONS(3640), 2, + anon_sym_with, anon_sym_while, anon_sym_until, - ACTIONS(3658), 2, - sym__ws, - sym_comment, - ACTIONS(3648), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(981), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(3644), 6, + anon_sym_repeat, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(1923), 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, - [115286] = 26, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [95828] = 12, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(3620), 1, + ACTIONS(4622), 1, anon_sym_POUND_, - ACTIONS(3622), 1, - anon_sym_CARET, - ACTIONS(3624), 1, - anon_sym_POUND_CARET, - ACTIONS(3628), 1, + ACTIONS(4627), 1, anon_sym_cl, - ACTIONS(3630), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(3634), 1, - anon_sym_and, - ACTIONS(3636), 1, - anon_sym_with, - ACTIONS(3638), 1, + ACTIONS(4630), 1, anon_sym_do, - ACTIONS(3642), 1, - anon_sym_repeat, - ACTIONS(3646), 1, - anon_sym_else, - ACTIONS(3784), 1, + STATE(292), 1, + sym_for_clause_word, + STATE(946), 1, + aux_sym_for_clause_repeat1, + STATE(1250), 1, + sym__for_part, + ACTIONS(308), 2, + anon_sym_in, + anon_sym_being, + ACTIONS(4619), 2, + sym__ws, + sym_comment, + STATE(2105), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(310), 14, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + ACTIONS(4625), 22, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, anon_sym_RPAREN, - STATE(281), 1, - sym_accumulation_verb, - STATE(2236), 1, - sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, - sym_meta_lit, - STATE(2389), 1, - aux_sym_list_lit_repeat1, - ACTIONS(3632), 2, + aux_sym_accumulation_verb_token1, anon_sym_for, + anon_sym_and, anon_sym_as, - ACTIONS(3640), 2, + anon_sym_with, anon_sym_while, anon_sym_until, - ACTIONS(3798), 2, - sym__ws, - sym_comment, - ACTIONS(3648), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1020), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(3644), 6, + anon_sym_repeat, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(1923), 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, - [115388] = 26, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [95903] = 12, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(3620), 1, + ACTIONS(4635), 1, anon_sym_POUND_, - ACTIONS(3622), 1, - anon_sym_CARET, - ACTIONS(3624), 1, - anon_sym_POUND_CARET, - ACTIONS(3628), 1, + ACTIONS(4640), 1, anon_sym_cl, - ACTIONS(3630), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(3634), 1, - anon_sym_and, - ACTIONS(3636), 1, - anon_sym_with, - ACTIONS(3638), 1, + ACTIONS(4643), 1, anon_sym_do, - ACTIONS(3642), 1, - anon_sym_repeat, - ACTIONS(3646), 1, - anon_sym_else, - ACTIONS(3802), 1, + STATE(292), 1, + sym_for_clause_word, + STATE(946), 1, + aux_sym_for_clause_repeat1, + STATE(1250), 1, + sym__for_part, + ACTIONS(308), 2, + anon_sym_in, + anon_sym_being, + ACTIONS(4632), 2, + sym__ws, + sym_comment, + STATE(2105), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(310), 14, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + ACTIONS(4638), 22, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, anon_sym_RPAREN, - STATE(281), 1, - sym_accumulation_verb, - STATE(2236), 1, - sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, - sym_meta_lit, - STATE(2389), 1, - aux_sym_list_lit_repeat1, - ACTIONS(3632), 2, + aux_sym_accumulation_verb_token1, anon_sym_for, + anon_sym_and, anon_sym_as, - ACTIONS(3640), 2, + anon_sym_with, anon_sym_while, anon_sym_until, - ACTIONS(3800), 2, - sym__ws, - sym_comment, - ACTIONS(3648), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1002), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(3644), 6, + anon_sym_repeat, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(1923), 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, - [115490] = 26, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [95978] = 12, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(3620), 1, + ACTIONS(4648), 1, anon_sym_POUND_, - ACTIONS(3622), 1, - anon_sym_CARET, - ACTIONS(3624), 1, - anon_sym_POUND_CARET, - ACTIONS(3628), 1, + ACTIONS(4653), 1, anon_sym_cl, - ACTIONS(3630), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(3634), 1, - anon_sym_and, - ACTIONS(3636), 1, - anon_sym_with, - ACTIONS(3638), 1, + ACTIONS(4656), 1, anon_sym_do, - ACTIONS(3642), 1, - anon_sym_repeat, - ACTIONS(3646), 1, - anon_sym_else, - ACTIONS(3802), 1, + STATE(292), 1, + sym_for_clause_word, + STATE(946), 1, + aux_sym_for_clause_repeat1, + STATE(1250), 1, + sym__for_part, + ACTIONS(308), 2, + anon_sym_in, + anon_sym_being, + ACTIONS(4645), 2, + sym__ws, + sym_comment, + STATE(2105), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(310), 14, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + ACTIONS(4651), 22, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, anon_sym_RPAREN, - STATE(281), 1, - sym_accumulation_verb, - STATE(2236), 1, - sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, - sym_meta_lit, - STATE(2389), 1, - aux_sym_list_lit_repeat1, - ACTIONS(3632), 2, + aux_sym_accumulation_verb_token1, anon_sym_for, + anon_sym_and, anon_sym_as, - ACTIONS(3640), 2, + anon_sym_with, anon_sym_while, anon_sym_until, - ACTIONS(3658), 2, - sym__ws, - sym_comment, - ACTIONS(3648), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(981), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(3644), 6, + anon_sym_repeat, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(1923), 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, - [115592] = 26, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [96053] = 12, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(3620), 1, + ACTIONS(4661), 1, anon_sym_POUND_, - ACTIONS(3622), 1, - anon_sym_CARET, - ACTIONS(3624), 1, - anon_sym_POUND_CARET, - ACTIONS(3628), 1, + ACTIONS(4666), 1, anon_sym_cl, - ACTIONS(3630), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(3634), 1, - anon_sym_and, - ACTIONS(3636), 1, - anon_sym_with, - ACTIONS(3638), 1, + ACTIONS(4669), 1, anon_sym_do, - ACTIONS(3642), 1, - anon_sym_repeat, - ACTIONS(3646), 1, - anon_sym_else, - ACTIONS(3662), 1, + STATE(292), 1, + sym_for_clause_word, + STATE(946), 1, + aux_sym_for_clause_repeat1, + STATE(1250), 1, + sym__for_part, + ACTIONS(308), 2, + anon_sym_in, + anon_sym_being, + ACTIONS(4658), 2, + sym__ws, + sym_comment, + STATE(2105), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(310), 14, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + ACTIONS(4664), 22, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, anon_sym_RPAREN, - STATE(281), 1, - sym_accumulation_verb, - STATE(2236), 1, - sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, - sym_meta_lit, - STATE(2389), 1, - aux_sym_list_lit_repeat1, - ACTIONS(3632), 2, + aux_sym_accumulation_verb_token1, anon_sym_for, + anon_sym_and, anon_sym_as, - ACTIONS(3640), 2, + anon_sym_with, anon_sym_while, anon_sym_until, - ACTIONS(3804), 2, - sym__ws, - sym_comment, - ACTIONS(3648), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(963), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(3644), 6, + anon_sym_repeat, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(1923), 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, - [115694] = 26, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [96128] = 12, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(3620), 1, + ACTIONS(4674), 1, anon_sym_POUND_, - ACTIONS(3622), 1, - anon_sym_CARET, - ACTIONS(3624), 1, - anon_sym_POUND_CARET, - ACTIONS(3628), 1, + ACTIONS(4679), 1, anon_sym_cl, - ACTIONS(3630), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(3634), 1, - anon_sym_and, - ACTIONS(3636), 1, - anon_sym_with, - ACTIONS(3638), 1, + ACTIONS(4682), 1, anon_sym_do, - ACTIONS(3642), 1, - anon_sym_repeat, - ACTIONS(3646), 1, - anon_sym_else, - ACTIONS(3806), 1, - anon_sym_RPAREN, - STATE(281), 1, - sym_accumulation_verb, - STATE(2236), 1, - sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, - sym_meta_lit, - STATE(2389), 1, - aux_sym_list_lit_repeat1, - ACTIONS(3632), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(3640), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(3658), 2, + STATE(292), 1, + sym_for_clause_word, + STATE(946), 1, + aux_sym_for_clause_repeat1, + STATE(1250), 1, + sym__for_part, + ACTIONS(308), 2, + anon_sym_in, + anon_sym_being, + ACTIONS(4671), 2, sym__ws, sym_comment, - ACTIONS(3648), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(981), 4, + STATE(2105), 3, sym__gap, sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(3644), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(1923), 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, - [115796] = 26, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(3620), 1, - anon_sym_POUND_, - ACTIONS(3622), 1, + aux_sym_dis_expr_repeat1, + ACTIONS(310), 14, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + ACTIONS(4677), 22, anon_sym_CARET, - ACTIONS(3624), 1, anon_sym_POUND_CARET, - ACTIONS(3628), 1, - anon_sym_cl, - ACTIONS(3630), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(3634), 1, - anon_sym_and, - ACTIONS(3636), 1, - anon_sym_with, - ACTIONS(3638), 1, - anon_sym_do, - ACTIONS(3642), 1, - anon_sym_repeat, - ACTIONS(3646), 1, - anon_sym_else, - ACTIONS(3806), 1, + anon_sym_LPAREN, anon_sym_RPAREN, - STATE(281), 1, - sym_accumulation_verb, - STATE(2236), 1, - sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, - sym_meta_lit, - STATE(2389), 1, - aux_sym_list_lit_repeat1, - ACTIONS(3632), 2, + aux_sym_accumulation_verb_token1, anon_sym_for, + anon_sym_and, anon_sym_as, - ACTIONS(3640), 2, + anon_sym_with, anon_sym_while, anon_sym_until, - ACTIONS(3808), 2, - sym__ws, - sym_comment, - ACTIONS(3648), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1015), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(3644), 6, + anon_sym_repeat, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(1923), 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, - [115898] = 26, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [96203] = 12, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(3620), 1, + ACTIONS(4648), 1, anon_sym_POUND_, - ACTIONS(3622), 1, - anon_sym_CARET, - ACTIONS(3624), 1, - anon_sym_POUND_CARET, - ACTIONS(3628), 1, + ACTIONS(4653), 1, anon_sym_cl, - ACTIONS(3630), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(3634), 1, - anon_sym_and, - ACTIONS(3636), 1, - anon_sym_with, - ACTIONS(3638), 1, + ACTIONS(4656), 1, anon_sym_do, - ACTIONS(3642), 1, - anon_sym_repeat, - ACTIONS(3646), 1, - anon_sym_else, - ACTIONS(3810), 1, + STATE(292), 1, + sym_for_clause_word, + STATE(946), 1, + aux_sym_for_clause_repeat1, + STATE(1250), 1, + sym__for_part, + ACTIONS(308), 2, + anon_sym_in, + anon_sym_being, + ACTIONS(4645), 2, + sym__ws, + sym_comment, + STATE(2105), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(310), 14, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + ACTIONS(4651), 22, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, anon_sym_RPAREN, - STATE(281), 1, - sym_accumulation_verb, - STATE(2236), 1, - sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, - sym_meta_lit, - STATE(2389), 1, - aux_sym_list_lit_repeat1, - ACTIONS(3632), 2, + aux_sym_accumulation_verb_token1, anon_sym_for, + anon_sym_and, anon_sym_as, - ACTIONS(3640), 2, + anon_sym_with, anon_sym_while, anon_sym_until, - ACTIONS(3658), 2, - sym__ws, - sym_comment, - ACTIONS(3648), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(981), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(3644), 6, + anon_sym_repeat, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(1923), 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, - [116000] = 26, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [96278] = 12, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(3620), 1, + ACTIONS(4661), 1, anon_sym_POUND_, - ACTIONS(3622), 1, - anon_sym_CARET, - ACTIONS(3624), 1, - anon_sym_POUND_CARET, - ACTIONS(3628), 1, + ACTIONS(4666), 1, anon_sym_cl, - ACTIONS(3630), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(3634), 1, - anon_sym_and, - ACTIONS(3636), 1, - anon_sym_with, - ACTIONS(3638), 1, + ACTIONS(4669), 1, anon_sym_do, - ACTIONS(3642), 1, - anon_sym_repeat, - ACTIONS(3646), 1, - anon_sym_else, - ACTIONS(3810), 1, + STATE(292), 1, + sym_for_clause_word, + STATE(946), 1, + aux_sym_for_clause_repeat1, + STATE(1250), 1, + sym__for_part, + ACTIONS(308), 2, + anon_sym_in, + anon_sym_being, + ACTIONS(4658), 2, + sym__ws, + sym_comment, + STATE(2105), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(310), 14, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + ACTIONS(4664), 22, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, anon_sym_RPAREN, - STATE(281), 1, - sym_accumulation_verb, - STATE(2236), 1, - sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, - sym_meta_lit, - STATE(2389), 1, - aux_sym_list_lit_repeat1, - ACTIONS(3632), 2, + aux_sym_accumulation_verb_token1, anon_sym_for, + anon_sym_and, anon_sym_as, - ACTIONS(3640), 2, + anon_sym_with, anon_sym_while, anon_sym_until, - ACTIONS(3812), 2, - sym__ws, - sym_comment, - ACTIONS(3648), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1005), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(3644), 6, + anon_sym_repeat, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(1923), 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, - [116102] = 26, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [96353] = 12, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(3620), 1, + ACTIONS(4596), 1, anon_sym_POUND_, - ACTIONS(3622), 1, - anon_sym_CARET, - ACTIONS(3624), 1, - anon_sym_POUND_CARET, - ACTIONS(3628), 1, + ACTIONS(4601), 1, anon_sym_cl, - ACTIONS(3630), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(3634), 1, - anon_sym_and, - ACTIONS(3636), 1, - anon_sym_with, - ACTIONS(3638), 1, + ACTIONS(4604), 1, anon_sym_do, - ACTIONS(3642), 1, - anon_sym_repeat, - ACTIONS(3646), 1, - anon_sym_else, - ACTIONS(3816), 1, + STATE(292), 1, + sym_for_clause_word, + STATE(946), 1, + aux_sym_for_clause_repeat1, + STATE(1250), 1, + sym__for_part, + ACTIONS(308), 2, + anon_sym_in, + anon_sym_being, + ACTIONS(4593), 2, + sym__ws, + sym_comment, + STATE(2105), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(310), 14, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + ACTIONS(4599), 22, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, anon_sym_RPAREN, - STATE(281), 1, - sym_accumulation_verb, - STATE(2236), 1, - sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, - sym_meta_lit, - STATE(2389), 1, - aux_sym_list_lit_repeat1, - ACTIONS(3632), 2, + aux_sym_accumulation_verb_token1, anon_sym_for, + anon_sym_and, anon_sym_as, - ACTIONS(3640), 2, + anon_sym_with, anon_sym_while, anon_sym_until, - ACTIONS(3814), 2, - sym__ws, - sym_comment, - ACTIONS(3648), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1038), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(3644), 6, + anon_sym_repeat, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(1923), 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, - [116204] = 26, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [96428] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(3620), 1, + ACTIONS(4684), 1, + aux_sym_num_lit_token2, + ACTIONS(4134), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(3622), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(3624), 1, anon_sym_POUND_CARET, - ACTIONS(3628), 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(4136), 25, + 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(3630), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(3634), 1, - anon_sym_and, - ACTIONS(3636), 1, - anon_sym_with, - ACTIONS(3638), 1, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [96487] = 12, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4689), 1, + anon_sym_POUND_, + ACTIONS(4694), 1, + anon_sym_cl, + ACTIONS(4697), 1, anon_sym_do, - ACTIONS(3642), 1, - anon_sym_repeat, - ACTIONS(3646), 1, - anon_sym_else, - ACTIONS(3820), 1, - anon_sym_RPAREN, - STATE(281), 1, - sym_accumulation_verb, - STATE(2236), 1, - sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, - sym_meta_lit, - STATE(2389), 1, - aux_sym_list_lit_repeat1, - ACTIONS(3632), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(3640), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(3818), 2, + STATE(292), 1, + sym_for_clause_word, + STATE(946), 1, + aux_sym_for_clause_repeat1, + STATE(1250), 1, + sym__for_part, + ACTIONS(308), 2, + anon_sym_in, + anon_sym_being, + ACTIONS(4686), 2, sym__ws, sym_comment, - ACTIONS(3648), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1016), 4, + STATE(2105), 3, sym__gap, sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(3644), 6, + aux_sym_dis_expr_repeat1, + ACTIONS(310), 14, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + ACTIONS(4692), 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, - STATE(1923), 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, - [116306] = 26, + anon_sym_else, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [96562] = 26, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(3620), 1, + ACTIONS(4701), 1, anon_sym_POUND_, - ACTIONS(3622), 1, + ACTIONS(4703), 1, anon_sym_CARET, - ACTIONS(3624), 1, + ACTIONS(4705), 1, anon_sym_POUND_CARET, - ACTIONS(3628), 1, + ACTIONS(4707), 1, + anon_sym_RPAREN, + ACTIONS(4709), 1, anon_sym_cl, - ACTIONS(3630), 1, + ACTIONS(4711), 1, aux_sym_accumulation_verb_token1, - ACTIONS(3634), 1, + ACTIONS(4715), 1, anon_sym_and, - ACTIONS(3636), 1, + ACTIONS(4717), 1, anon_sym_with, - ACTIONS(3638), 1, + ACTIONS(4719), 1, anon_sym_do, - ACTIONS(3642), 1, + ACTIONS(4723), 1, anon_sym_repeat, - ACTIONS(3646), 1, + ACTIONS(4727), 1, anon_sym_else, - ACTIONS(3822), 1, - anon_sym_RPAREN, - STATE(281), 1, + STATE(169), 1, sym_accumulation_verb, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, + STATE(2352), 1, sym_meta_lit, - STATE(2389), 1, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2419), 1, aux_sym_list_lit_repeat1, - ACTIONS(3632), 2, + ACTIONS(4699), 2, + sym__ws, + sym_comment, + ACTIONS(4713), 2, anon_sym_for, anon_sym_as, - ACTIONS(3640), 2, + ACTIONS(4721), 2, anon_sym_while, anon_sym_until, - ACTIONS(3658), 2, - sym__ws, - sym_comment, - ACTIONS(3648), 3, + ACTIONS(4729), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1330), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(981), 4, + STATE(1084), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(3644), 6, + ACTIONS(4725), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(1923), 9, + STATE(2073), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -101263,73 +94845,179 @@ static uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [116408] = 26, + [96664] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, + ACTIONS(4444), 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, - ACTIONS(3620), 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(4446), 25, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [96720] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4396), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(3622), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(3624), 1, anon_sym_POUND_CARET, - ACTIONS(3628), 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(4398), 25, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [96776] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(4701), 1, + anon_sym_POUND_, + ACTIONS(4703), 1, + anon_sym_CARET, + ACTIONS(4705), 1, + anon_sym_POUND_CARET, + ACTIONS(4709), 1, anon_sym_cl, - ACTIONS(3630), 1, + ACTIONS(4711), 1, aux_sym_accumulation_verb_token1, - ACTIONS(3634), 1, + ACTIONS(4715), 1, anon_sym_and, - ACTIONS(3636), 1, + ACTIONS(4717), 1, anon_sym_with, - ACTIONS(3638), 1, + ACTIONS(4719), 1, anon_sym_do, - ACTIONS(3642), 1, + ACTIONS(4723), 1, anon_sym_repeat, - ACTIONS(3646), 1, + ACTIONS(4727), 1, anon_sym_else, - ACTIONS(3668), 1, + ACTIONS(4733), 1, anon_sym_RPAREN, - STATE(281), 1, + STATE(169), 1, sym_accumulation_verb, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, + STATE(2352), 1, sym_meta_lit, - STATE(2389), 1, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2419), 1, aux_sym_list_lit_repeat1, - ACTIONS(3632), 2, + ACTIONS(4713), 2, anon_sym_for, anon_sym_as, - ACTIONS(3640), 2, + ACTIONS(4721), 2, anon_sym_while, anon_sym_until, - ACTIONS(3658), 2, + ACTIONS(4731), 2, sym__ws, sym_comment, - ACTIONS(3648), 3, + ACTIONS(4729), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1330), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(981), 4, + STATE(966), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(3644), 6, + ACTIONS(4725), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(1923), 9, + STATE(2073), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -101339,73 +95027,126 @@ static uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [116510] = 26, + [96878] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, + ACTIONS(4380), 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, - ACTIONS(3620), 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(4382), 25, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [96934] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(4701), 1, anon_sym_POUND_, - ACTIONS(3622), 1, + ACTIONS(4703), 1, anon_sym_CARET, - ACTIONS(3624), 1, + ACTIONS(4705), 1, anon_sym_POUND_CARET, - ACTIONS(3628), 1, + ACTIONS(4709), 1, anon_sym_cl, - ACTIONS(3630), 1, + ACTIONS(4711), 1, aux_sym_accumulation_verb_token1, - ACTIONS(3634), 1, + ACTIONS(4715), 1, anon_sym_and, - ACTIONS(3636), 1, + ACTIONS(4717), 1, anon_sym_with, - ACTIONS(3638), 1, + ACTIONS(4719), 1, anon_sym_do, - ACTIONS(3642), 1, + ACTIONS(4723), 1, anon_sym_repeat, - ACTIONS(3646), 1, + ACTIONS(4727), 1, anon_sym_else, - ACTIONS(3820), 1, + ACTIONS(4737), 1, anon_sym_RPAREN, - STATE(281), 1, + STATE(169), 1, sym_accumulation_verb, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, + STATE(2352), 1, sym_meta_lit, - STATE(2389), 1, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2419), 1, aux_sym_list_lit_repeat1, - ACTIONS(3632), 2, + ACTIONS(4713), 2, anon_sym_for, anon_sym_as, - ACTIONS(3640), 2, + ACTIONS(4721), 2, anon_sym_while, anon_sym_until, - ACTIONS(3658), 2, + ACTIONS(4735), 2, sym__ws, sym_comment, - ACTIONS(3648), 3, + ACTIONS(4729), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1330), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(981), 4, + STATE(1128), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(3644), 6, + ACTIONS(4725), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(1923), 9, + STATE(2073), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -101415,73 +95156,73 @@ static uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [116612] = 26, + [97036] = 26, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(3620), 1, + ACTIONS(4701), 1, anon_sym_POUND_, - ACTIONS(3622), 1, + ACTIONS(4703), 1, anon_sym_CARET, - ACTIONS(3624), 1, + ACTIONS(4705), 1, anon_sym_POUND_CARET, - ACTIONS(3628), 1, + ACTIONS(4709), 1, anon_sym_cl, - ACTIONS(3630), 1, + ACTIONS(4711), 1, aux_sym_accumulation_verb_token1, - ACTIONS(3634), 1, + ACTIONS(4715), 1, anon_sym_and, - ACTIONS(3636), 1, + ACTIONS(4717), 1, anon_sym_with, - ACTIONS(3638), 1, + ACTIONS(4719), 1, anon_sym_do, - ACTIONS(3642), 1, + ACTIONS(4723), 1, anon_sym_repeat, - ACTIONS(3646), 1, + ACTIONS(4727), 1, anon_sym_else, - ACTIONS(3824), 1, + ACTIONS(4739), 1, anon_sym_RPAREN, - STATE(281), 1, + STATE(169), 1, sym_accumulation_verb, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, + STATE(2352), 1, sym_meta_lit, - STATE(2389), 1, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2419), 1, aux_sym_list_lit_repeat1, - ACTIONS(3632), 2, + ACTIONS(4713), 2, anon_sym_for, anon_sym_as, - ACTIONS(3640), 2, + ACTIONS(4721), 2, anon_sym_while, anon_sym_until, - ACTIONS(3658), 2, + ACTIONS(4735), 2, sym__ws, sym_comment, - ACTIONS(3648), 3, + ACTIONS(4729), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1330), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(981), 4, + STATE(1128), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(3644), 6, + ACTIONS(4725), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(1923), 9, + STATE(2073), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -101491,73 +95232,126 @@ static uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [116714] = 26, + [97138] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, + ACTIONS(4368), 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, - ACTIONS(3620), 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(4370), 25, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [97194] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(4701), 1, anon_sym_POUND_, - ACTIONS(3622), 1, + ACTIONS(4703), 1, anon_sym_CARET, - ACTIONS(3624), 1, + ACTIONS(4705), 1, anon_sym_POUND_CARET, - ACTIONS(3628), 1, + ACTIONS(4709), 1, anon_sym_cl, - ACTIONS(3630), 1, + ACTIONS(4711), 1, aux_sym_accumulation_verb_token1, - ACTIONS(3634), 1, + ACTIONS(4715), 1, anon_sym_and, - ACTIONS(3636), 1, + ACTIONS(4717), 1, anon_sym_with, - ACTIONS(3638), 1, + ACTIONS(4719), 1, anon_sym_do, - ACTIONS(3642), 1, + ACTIONS(4723), 1, anon_sym_repeat, - ACTIONS(3646), 1, + ACTIONS(4727), 1, anon_sym_else, - ACTIONS(3824), 1, + ACTIONS(4737), 1, anon_sym_RPAREN, - STATE(281), 1, + STATE(169), 1, sym_accumulation_verb, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, + STATE(2352), 1, sym_meta_lit, - STATE(2389), 1, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2419), 1, aux_sym_list_lit_repeat1, - ACTIONS(3632), 2, + ACTIONS(4713), 2, anon_sym_for, anon_sym_as, - ACTIONS(3640), 2, + ACTIONS(4721), 2, anon_sym_while, anon_sym_until, - ACTIONS(3826), 2, + ACTIONS(4741), 2, sym__ws, sym_comment, - ACTIONS(3648), 3, + ACTIONS(4729), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1330), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1024), 4, + STATE(975), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(3644), 6, + ACTIONS(4725), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(1923), 9, + STATE(2073), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -101567,73 +95361,73 @@ static uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [116816] = 26, + [97296] = 26, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(3620), 1, + ACTIONS(4701), 1, anon_sym_POUND_, - ACTIONS(3622), 1, + ACTIONS(4703), 1, anon_sym_CARET, - ACTIONS(3624), 1, + ACTIONS(4705), 1, anon_sym_POUND_CARET, - ACTIONS(3628), 1, + ACTIONS(4709), 1, anon_sym_cl, - ACTIONS(3630), 1, + ACTIONS(4711), 1, aux_sym_accumulation_verb_token1, - ACTIONS(3634), 1, + ACTIONS(4715), 1, anon_sym_and, - ACTIONS(3636), 1, + ACTIONS(4717), 1, anon_sym_with, - ACTIONS(3638), 1, + ACTIONS(4719), 1, anon_sym_do, - ACTIONS(3642), 1, + ACTIONS(4723), 1, anon_sym_repeat, - ACTIONS(3646), 1, + ACTIONS(4727), 1, anon_sym_else, - ACTIONS(3830), 1, + ACTIONS(4745), 1, anon_sym_RPAREN, - STATE(281), 1, + STATE(169), 1, sym_accumulation_verb, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, + STATE(2352), 1, sym_meta_lit, - STATE(2389), 1, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2419), 1, aux_sym_list_lit_repeat1, - ACTIONS(3632), 2, + ACTIONS(4713), 2, anon_sym_for, anon_sym_as, - ACTIONS(3640), 2, + ACTIONS(4721), 2, anon_sym_while, anon_sym_until, - ACTIONS(3828), 2, + ACTIONS(4743), 2, sym__ws, sym_comment, - ACTIONS(3648), 3, + ACTIONS(4729), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1330), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1009), 4, + STATE(984), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(3644), 6, + ACTIONS(4725), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(1923), 9, + STATE(2073), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -101643,73 +95437,73 @@ static uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [116918] = 26, + [97398] = 26, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(3620), 1, + ACTIONS(4701), 1, anon_sym_POUND_, - ACTIONS(3622), 1, + ACTIONS(4703), 1, anon_sym_CARET, - ACTIONS(3624), 1, + ACTIONS(4705), 1, anon_sym_POUND_CARET, - ACTIONS(3628), 1, + ACTIONS(4709), 1, anon_sym_cl, - ACTIONS(3630), 1, + ACTIONS(4711), 1, aux_sym_accumulation_verb_token1, - ACTIONS(3634), 1, + ACTIONS(4715), 1, anon_sym_and, - ACTIONS(3636), 1, + ACTIONS(4717), 1, anon_sym_with, - ACTIONS(3638), 1, + ACTIONS(4719), 1, anon_sym_do, - ACTIONS(3642), 1, + ACTIONS(4723), 1, anon_sym_repeat, - ACTIONS(3646), 1, + ACTIONS(4727), 1, anon_sym_else, - ACTIONS(3834), 1, + ACTIONS(4749), 1, anon_sym_RPAREN, - STATE(281), 1, + STATE(169), 1, sym_accumulation_verb, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, + STATE(2352), 1, sym_meta_lit, - STATE(2389), 1, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2419), 1, aux_sym_list_lit_repeat1, - ACTIONS(3632), 2, + ACTIONS(4713), 2, anon_sym_for, anon_sym_as, - ACTIONS(3640), 2, + ACTIONS(4721), 2, anon_sym_while, anon_sym_until, - ACTIONS(3832), 2, + ACTIONS(4747), 2, sym__ws, sym_comment, - ACTIONS(3648), 3, + ACTIONS(4729), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1330), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(995), 4, + STATE(978), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(3644), 6, + ACTIONS(4725), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(1923), 9, + STATE(2073), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -101719,73 +95513,179 @@ static uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [117020] = 26, + [97500] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, + ACTIONS(4368), 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, - ACTIONS(3620), 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(4370), 25, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [97556] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4364), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(3622), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(3624), 1, anon_sym_POUND_CARET, - ACTIONS(3628), 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(4366), 25, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [97612] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(4701), 1, + anon_sym_POUND_, + ACTIONS(4703), 1, + anon_sym_CARET, + ACTIONS(4705), 1, + anon_sym_POUND_CARET, + ACTIONS(4709), 1, anon_sym_cl, - ACTIONS(3630), 1, + ACTIONS(4711), 1, aux_sym_accumulation_verb_token1, - ACTIONS(3634), 1, + ACTIONS(4715), 1, anon_sym_and, - ACTIONS(3636), 1, + ACTIONS(4717), 1, anon_sym_with, - ACTIONS(3638), 1, + ACTIONS(4719), 1, anon_sym_do, - ACTIONS(3642), 1, + ACTIONS(4723), 1, anon_sym_repeat, - ACTIONS(3646), 1, + ACTIONS(4727), 1, anon_sym_else, - ACTIONS(3836), 1, + ACTIONS(4751), 1, anon_sym_RPAREN, - STATE(281), 1, + STATE(169), 1, sym_accumulation_verb, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, + STATE(2352), 1, sym_meta_lit, - STATE(2389), 1, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2419), 1, aux_sym_list_lit_repeat1, - ACTIONS(3632), 2, + ACTIONS(4713), 2, anon_sym_for, anon_sym_as, - ACTIONS(3640), 2, + ACTIONS(4721), 2, anon_sym_while, anon_sym_until, - ACTIONS(3658), 2, + ACTIONS(4735), 2, sym__ws, sym_comment, - ACTIONS(3648), 3, + ACTIONS(4729), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1330), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(981), 4, + STATE(1128), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(3644), 6, + ACTIONS(4725), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(1923), 9, + STATE(2073), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -101795,73 +95695,73 @@ static uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [117122] = 26, + [97714] = 26, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(3620), 1, + ACTIONS(4701), 1, anon_sym_POUND_, - ACTIONS(3622), 1, + ACTIONS(4703), 1, anon_sym_CARET, - ACTIONS(3624), 1, + ACTIONS(4705), 1, anon_sym_POUND_CARET, - ACTIONS(3628), 1, + ACTIONS(4709), 1, anon_sym_cl, - ACTIONS(3630), 1, + ACTIONS(4711), 1, aux_sym_accumulation_verb_token1, - ACTIONS(3634), 1, + ACTIONS(4715), 1, anon_sym_and, - ACTIONS(3636), 1, + ACTIONS(4717), 1, anon_sym_with, - ACTIONS(3638), 1, + ACTIONS(4719), 1, anon_sym_do, - ACTIONS(3642), 1, + ACTIONS(4723), 1, anon_sym_repeat, - ACTIONS(3646), 1, + ACTIONS(4727), 1, anon_sym_else, - ACTIONS(3788), 1, + ACTIONS(4749), 1, anon_sym_RPAREN, - STATE(281), 1, + STATE(169), 1, sym_accumulation_verb, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, + STATE(2352), 1, sym_meta_lit, - STATE(2389), 1, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2419), 1, aux_sym_list_lit_repeat1, - ACTIONS(3632), 2, + ACTIONS(4713), 2, anon_sym_for, anon_sym_as, - ACTIONS(3640), 2, + ACTIONS(4721), 2, anon_sym_while, anon_sym_until, - ACTIONS(3658), 2, + ACTIONS(4735), 2, sym__ws, sym_comment, - ACTIONS(3648), 3, + ACTIONS(4729), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1330), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(981), 4, + STATE(1128), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(3644), 6, + ACTIONS(4725), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(1923), 9, + STATE(2073), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -101871,73 +95771,179 @@ static uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [117224] = 26, + [97816] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4364), 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(4366), 25, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [97872] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4352), 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(4354), 25, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [97928] = 26, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(3620), 1, + ACTIONS(4701), 1, anon_sym_POUND_, - ACTIONS(3622), 1, + ACTIONS(4703), 1, anon_sym_CARET, - ACTIONS(3624), 1, + ACTIONS(4705), 1, anon_sym_POUND_CARET, - ACTIONS(3628), 1, + ACTIONS(4709), 1, anon_sym_cl, - ACTIONS(3630), 1, + ACTIONS(4711), 1, aux_sym_accumulation_verb_token1, - ACTIONS(3634), 1, + ACTIONS(4715), 1, anon_sym_and, - ACTIONS(3636), 1, + ACTIONS(4717), 1, anon_sym_with, - ACTIONS(3638), 1, + ACTIONS(4719), 1, anon_sym_do, - ACTIONS(3642), 1, + ACTIONS(4723), 1, anon_sym_repeat, - ACTIONS(3646), 1, + ACTIONS(4727), 1, anon_sym_else, - ACTIONS(3840), 1, + ACTIONS(4753), 1, anon_sym_RPAREN, - STATE(281), 1, + STATE(169), 1, sym_accumulation_verb, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, + STATE(2352), 1, sym_meta_lit, - STATE(2389), 1, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2419), 1, aux_sym_list_lit_repeat1, - ACTIONS(3632), 2, + ACTIONS(4713), 2, anon_sym_for, anon_sym_as, - ACTIONS(3640), 2, + ACTIONS(4721), 2, anon_sym_while, anon_sym_until, - ACTIONS(3838), 2, + ACTIONS(4735), 2, sym__ws, sym_comment, - ACTIONS(3648), 3, + ACTIONS(4729), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1330), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1030), 4, + STATE(1128), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(3644), 6, + ACTIONS(4725), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(1923), 9, + STATE(2073), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -101947,73 +95953,179 @@ static uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [117326] = 26, + [98030] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, + ACTIONS(4344), 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, - ACTIONS(3620), 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(4346), 25, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [98086] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4328), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(3622), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(3624), 1, anon_sym_POUND_CARET, - ACTIONS(3628), 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(4330), 25, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [98142] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(4701), 1, + anon_sym_POUND_, + ACTIONS(4703), 1, + anon_sym_CARET, + ACTIONS(4705), 1, + anon_sym_POUND_CARET, + ACTIONS(4709), 1, anon_sym_cl, - ACTIONS(3630), 1, + ACTIONS(4711), 1, aux_sym_accumulation_verb_token1, - ACTIONS(3634), 1, + ACTIONS(4715), 1, anon_sym_and, - ACTIONS(3636), 1, + ACTIONS(4717), 1, anon_sym_with, - ACTIONS(3638), 1, + ACTIONS(4719), 1, anon_sym_do, - ACTIONS(3642), 1, + ACTIONS(4723), 1, anon_sym_repeat, - ACTIONS(3646), 1, + ACTIONS(4727), 1, anon_sym_else, - ACTIONS(3842), 1, + ACTIONS(4755), 1, anon_sym_RPAREN, - STATE(281), 1, + STATE(169), 1, sym_accumulation_verb, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, + STATE(2352), 1, sym_meta_lit, - STATE(2389), 1, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2419), 1, aux_sym_list_lit_repeat1, - ACTIONS(3632), 2, + ACTIONS(4713), 2, anon_sym_for, anon_sym_as, - ACTIONS(3640), 2, + ACTIONS(4721), 2, anon_sym_while, anon_sym_until, - ACTIONS(3658), 2, + ACTIONS(4735), 2, sym__ws, sym_comment, - ACTIONS(3648), 3, + ACTIONS(4729), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1330), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(981), 4, + STATE(1128), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(3644), 6, + ACTIONS(4725), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(1923), 9, + STATE(2073), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -102023,73 +96135,179 @@ static uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [117428] = 26, + [98244] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, + ACTIONS(4324), 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, - ACTIONS(3620), 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(4326), 25, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [98300] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4320), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(3622), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(3624), 1, anon_sym_POUND_CARET, - ACTIONS(3628), 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(4322), 25, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [98356] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(4701), 1, + anon_sym_POUND_, + ACTIONS(4703), 1, + anon_sym_CARET, + ACTIONS(4705), 1, + anon_sym_POUND_CARET, + ACTIONS(4709), 1, anon_sym_cl, - ACTIONS(3630), 1, + ACTIONS(4711), 1, aux_sym_accumulation_verb_token1, - ACTIONS(3634), 1, + ACTIONS(4715), 1, anon_sym_and, - ACTIONS(3636), 1, + ACTIONS(4717), 1, anon_sym_with, - ACTIONS(3638), 1, + ACTIONS(4719), 1, anon_sym_do, - ACTIONS(3642), 1, + ACTIONS(4723), 1, anon_sym_repeat, - ACTIONS(3646), 1, + ACTIONS(4727), 1, anon_sym_else, - ACTIONS(3844), 1, + ACTIONS(4757), 1, anon_sym_RPAREN, - STATE(281), 1, + STATE(169), 1, sym_accumulation_verb, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, + STATE(2352), 1, sym_meta_lit, - STATE(2389), 1, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2419), 1, aux_sym_list_lit_repeat1, - ACTIONS(3632), 2, + ACTIONS(4713), 2, anon_sym_for, anon_sym_as, - ACTIONS(3640), 2, + ACTIONS(4721), 2, anon_sym_while, anon_sym_until, - ACTIONS(3658), 2, + ACTIONS(4735), 2, sym__ws, sym_comment, - ACTIONS(3648), 3, + ACTIONS(4729), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1330), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(981), 4, + STATE(1128), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(3644), 6, + ACTIONS(4725), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(1923), 9, + STATE(2073), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -102099,73 +96317,73 @@ static uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [117530] = 26, + [98458] = 26, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(3620), 1, + ACTIONS(4701), 1, anon_sym_POUND_, - ACTIONS(3622), 1, + ACTIONS(4703), 1, anon_sym_CARET, - ACTIONS(3624), 1, + ACTIONS(4705), 1, anon_sym_POUND_CARET, - ACTIONS(3628), 1, + ACTIONS(4709), 1, anon_sym_cl, - ACTIONS(3630), 1, + ACTIONS(4711), 1, aux_sym_accumulation_verb_token1, - ACTIONS(3634), 1, + ACTIONS(4715), 1, anon_sym_and, - ACTIONS(3636), 1, + ACTIONS(4717), 1, anon_sym_with, - ACTIONS(3638), 1, + ACTIONS(4719), 1, anon_sym_do, - ACTIONS(3642), 1, + ACTIONS(4723), 1, anon_sym_repeat, - ACTIONS(3646), 1, + ACTIONS(4727), 1, anon_sym_else, - ACTIONS(3822), 1, + ACTIONS(4761), 1, anon_sym_RPAREN, - STATE(281), 1, + STATE(169), 1, sym_accumulation_verb, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, + STATE(2352), 1, sym_meta_lit, - STATE(2389), 1, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2419), 1, aux_sym_list_lit_repeat1, - ACTIONS(3632), 2, + ACTIONS(4713), 2, anon_sym_for, anon_sym_as, - ACTIONS(3640), 2, + ACTIONS(4721), 2, anon_sym_while, anon_sym_until, - ACTIONS(3846), 2, + ACTIONS(4759), 2, sym__ws, sym_comment, - ACTIONS(3648), 3, + ACTIONS(4729), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1330), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(996), 4, + STATE(993), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(3644), 6, + ACTIONS(4725), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(1923), 9, + STATE(2073), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -102175,149 +96393,444 @@ static uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [117632] = 26, + [98560] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4316), 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(4318), 25, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [98616] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4300), 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(4302), 25, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [98672] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4316), 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(4318), 25, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [98728] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4300), 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(4302), 25, + 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_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(4296), 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(4298), 25, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [98840] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4292), 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(4294), 25, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [98896] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(3620), 1, + ACTIONS(4288), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(3622), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(3624), 1, anon_sym_POUND_CARET, - ACTIONS(3628), 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(4290), 25, + 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(3630), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(3634), 1, - anon_sym_and, - ACTIONS(3636), 1, - anon_sym_with, - ACTIONS(3638), 1, - anon_sym_do, - ACTIONS(3642), 1, - anon_sym_repeat, - ACTIONS(3646), 1, - anon_sym_else, - ACTIONS(3850), 1, - anon_sym_RPAREN, - STATE(281), 1, - sym_accumulation_verb, - STATE(2236), 1, - sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, - sym_meta_lit, - STATE(2389), 1, - aux_sym_list_lit_repeat1, - ACTIONS(3632), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(3640), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(3848), 2, - sym__ws, - sym_comment, - ACTIONS(3648), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1032), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(3644), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(1923), 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, - [117734] = 26, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [98952] = 26, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(3620), 1, + ACTIONS(4701), 1, anon_sym_POUND_, - ACTIONS(3622), 1, + ACTIONS(4703), 1, anon_sym_CARET, - ACTIONS(3624), 1, + ACTIONS(4705), 1, anon_sym_POUND_CARET, - ACTIONS(3628), 1, + ACTIONS(4709), 1, anon_sym_cl, - ACTIONS(3630), 1, + ACTIONS(4711), 1, aux_sym_accumulation_verb_token1, - ACTIONS(3634), 1, + ACTIONS(4715), 1, anon_sym_and, - ACTIONS(3636), 1, + ACTIONS(4717), 1, anon_sym_with, - ACTIONS(3638), 1, + ACTIONS(4719), 1, anon_sym_do, - ACTIONS(3642), 1, + ACTIONS(4723), 1, anon_sym_repeat, - ACTIONS(3646), 1, + ACTIONS(4727), 1, anon_sym_else, - ACTIONS(3852), 1, + ACTIONS(4763), 1, anon_sym_RPAREN, - STATE(281), 1, + STATE(169), 1, sym_accumulation_verb, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, + STATE(2352), 1, sym_meta_lit, - STATE(2389), 1, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2419), 1, aux_sym_list_lit_repeat1, - ACTIONS(3632), 2, + ACTIONS(4713), 2, anon_sym_for, anon_sym_as, - ACTIONS(3640), 2, + ACTIONS(4721), 2, anon_sym_while, anon_sym_until, - ACTIONS(3658), 2, + ACTIONS(4735), 2, sym__ws, sym_comment, - ACTIONS(3648), 3, + ACTIONS(4729), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1330), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(981), 4, + STATE(1128), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(3644), 6, + ACTIONS(4725), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(1923), 9, + STATE(2073), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -102327,73 +96840,73 @@ static uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [117836] = 26, + [99054] = 26, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(3620), 1, + ACTIONS(4701), 1, anon_sym_POUND_, - ACTIONS(3622), 1, + ACTIONS(4703), 1, anon_sym_CARET, - ACTIONS(3624), 1, + ACTIONS(4705), 1, anon_sym_POUND_CARET, - ACTIONS(3628), 1, + ACTIONS(4709), 1, anon_sym_cl, - ACTIONS(3630), 1, + ACTIONS(4711), 1, aux_sym_accumulation_verb_token1, - ACTIONS(3634), 1, + ACTIONS(4715), 1, anon_sym_and, - ACTIONS(3636), 1, + ACTIONS(4717), 1, anon_sym_with, - ACTIONS(3638), 1, + ACTIONS(4719), 1, anon_sym_do, - ACTIONS(3642), 1, + ACTIONS(4723), 1, anon_sym_repeat, - ACTIONS(3646), 1, + ACTIONS(4727), 1, anon_sym_else, - ACTIONS(3856), 1, + ACTIONS(4763), 1, anon_sym_RPAREN, - STATE(281), 1, + STATE(169), 1, sym_accumulation_verb, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, + STATE(2352), 1, sym_meta_lit, - STATE(2389), 1, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2419), 1, aux_sym_list_lit_repeat1, - ACTIONS(3632), 2, + ACTIONS(4713), 2, anon_sym_for, anon_sym_as, - ACTIONS(3640), 2, + ACTIONS(4721), 2, anon_sym_while, anon_sym_until, - ACTIONS(3854), 2, + ACTIONS(4765), 2, sym__ws, sym_comment, - ACTIONS(3648), 3, + ACTIONS(4729), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1330), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1027), 4, + STATE(997), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(3644), 6, + ACTIONS(4725), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(1923), 9, + STATE(2073), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -102403,149 +96916,126 @@ static uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [117938] = 26, + [99156] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(3620), 1, + ACTIONS(4288), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(3622), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(3624), 1, anon_sym_POUND_CARET, - ACTIONS(3628), 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(4290), 25, + 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(3630), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(3634), 1, - anon_sym_and, - ACTIONS(3636), 1, - anon_sym_with, - ACTIONS(3638), 1, - anon_sym_do, - ACTIONS(3642), 1, - anon_sym_repeat, - ACTIONS(3646), 1, - anon_sym_else, - ACTIONS(3856), 1, - anon_sym_RPAREN, - STATE(281), 1, - sym_accumulation_verb, - STATE(2236), 1, - sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, - sym_meta_lit, - STATE(2389), 1, - aux_sym_list_lit_repeat1, - ACTIONS(3632), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(3640), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(3658), 2, - sym__ws, - sym_comment, - ACTIONS(3648), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(981), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(3644), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(1923), 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, - [118040] = 26, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [99212] = 26, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(3620), 1, + ACTIONS(4701), 1, anon_sym_POUND_, - ACTIONS(3622), 1, + ACTIONS(4703), 1, anon_sym_CARET, - ACTIONS(3624), 1, + ACTIONS(4705), 1, anon_sym_POUND_CARET, - ACTIONS(3628), 1, + ACTIONS(4709), 1, anon_sym_cl, - ACTIONS(3630), 1, + ACTIONS(4711), 1, aux_sym_accumulation_verb_token1, - ACTIONS(3634), 1, + ACTIONS(4715), 1, anon_sym_and, - ACTIONS(3636), 1, + ACTIONS(4717), 1, anon_sym_with, - ACTIONS(3638), 1, + ACTIONS(4719), 1, anon_sym_do, - ACTIONS(3642), 1, + ACTIONS(4723), 1, anon_sym_repeat, - ACTIONS(3646), 1, + ACTIONS(4727), 1, anon_sym_else, - ACTIONS(3858), 1, + ACTIONS(4769), 1, anon_sym_RPAREN, - STATE(281), 1, + STATE(169), 1, sym_accumulation_verb, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, + STATE(2352), 1, sym_meta_lit, - STATE(2389), 1, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2419), 1, aux_sym_list_lit_repeat1, - ACTIONS(3632), 2, + ACTIONS(4713), 2, anon_sym_for, anon_sym_as, - ACTIONS(3640), 2, + ACTIONS(4721), 2, anon_sym_while, anon_sym_until, - ACTIONS(3658), 2, + ACTIONS(4767), 2, sym__ws, sym_comment, - ACTIONS(3648), 3, + ACTIONS(4729), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1330), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(981), 4, + STATE(1008), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(3644), 6, + ACTIONS(4725), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(1923), 9, + STATE(2073), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -102555,73 +97045,73 @@ static uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [118142] = 26, + [99314] = 26, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(3620), 1, + ACTIONS(4701), 1, anon_sym_POUND_, - ACTIONS(3622), 1, + ACTIONS(4703), 1, anon_sym_CARET, - ACTIONS(3624), 1, + ACTIONS(4705), 1, anon_sym_POUND_CARET, - ACTIONS(3628), 1, + ACTIONS(4709), 1, anon_sym_cl, - ACTIONS(3630), 1, + ACTIONS(4711), 1, aux_sym_accumulation_verb_token1, - ACTIONS(3634), 1, + ACTIONS(4715), 1, anon_sym_and, - ACTIONS(3636), 1, + ACTIONS(4717), 1, anon_sym_with, - ACTIONS(3638), 1, + ACTIONS(4719), 1, anon_sym_do, - ACTIONS(3642), 1, + ACTIONS(4723), 1, anon_sym_repeat, - ACTIONS(3646), 1, + ACTIONS(4727), 1, anon_sym_else, - ACTIONS(3858), 1, + ACTIONS(4769), 1, anon_sym_RPAREN, - STATE(281), 1, + STATE(169), 1, sym_accumulation_verb, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, + STATE(2352), 1, sym_meta_lit, - STATE(2389), 1, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2419), 1, aux_sym_list_lit_repeat1, - ACTIONS(3632), 2, + ACTIONS(4713), 2, anon_sym_for, anon_sym_as, - ACTIONS(3640), 2, + ACTIONS(4721), 2, anon_sym_while, anon_sym_until, - ACTIONS(3860), 2, + ACTIONS(4735), 2, sym__ws, sym_comment, - ACTIONS(3648), 3, + ACTIONS(4729), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1330), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1029), 4, + STATE(1128), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(3644), 6, + ACTIONS(4725), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(1923), 9, + STATE(2073), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -102631,73 +97121,73 @@ static uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [118244] = 26, + [99416] = 26, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(3620), 1, + ACTIONS(4701), 1, anon_sym_POUND_, - ACTIONS(3622), 1, + ACTIONS(4703), 1, anon_sym_CARET, - ACTIONS(3624), 1, + ACTIONS(4705), 1, anon_sym_POUND_CARET, - ACTIONS(3628), 1, + ACTIONS(4709), 1, anon_sym_cl, - ACTIONS(3630), 1, + ACTIONS(4711), 1, aux_sym_accumulation_verb_token1, - ACTIONS(3634), 1, + ACTIONS(4715), 1, anon_sym_and, - ACTIONS(3636), 1, + ACTIONS(4717), 1, anon_sym_with, - ACTIONS(3638), 1, + ACTIONS(4719), 1, anon_sym_do, - ACTIONS(3642), 1, + ACTIONS(4723), 1, anon_sym_repeat, - ACTIONS(3646), 1, + ACTIONS(4727), 1, anon_sym_else, - ACTIONS(3840), 1, + ACTIONS(4771), 1, anon_sym_RPAREN, - STATE(281), 1, + STATE(169), 1, sym_accumulation_verb, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, + STATE(2352), 1, sym_meta_lit, - STATE(2389), 1, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2419), 1, aux_sym_list_lit_repeat1, - ACTIONS(3632), 2, + ACTIONS(4713), 2, anon_sym_for, anon_sym_as, - ACTIONS(3640), 2, + ACTIONS(4721), 2, anon_sym_while, anon_sym_until, - ACTIONS(3658), 2, + ACTIONS(4735), 2, sym__ws, sym_comment, - ACTIONS(3648), 3, + ACTIONS(4729), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1330), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(981), 4, + STATE(1128), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(3644), 6, + ACTIONS(4725), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(1923), 9, + STATE(2073), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -102707,149 +97197,126 @@ static uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [118346] = 26, + [99518] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(3620), 1, + ACTIONS(4284), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(3622), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(3624), 1, anon_sym_POUND_CARET, - ACTIONS(3628), 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(4286), 25, + 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(3630), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(3634), 1, - anon_sym_and, - ACTIONS(3636), 1, - anon_sym_with, - ACTIONS(3638), 1, - anon_sym_do, - ACTIONS(3642), 1, - anon_sym_repeat, - ACTIONS(3646), 1, - anon_sym_else, - ACTIONS(3794), 1, - anon_sym_RPAREN, - STATE(281), 1, - sym_accumulation_verb, - STATE(2236), 1, - sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, - sym_meta_lit, - STATE(2389), 1, - aux_sym_list_lit_repeat1, - ACTIONS(3632), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(3640), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(3862), 2, - sym__ws, - sym_comment, - ACTIONS(3648), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(1023), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(3644), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(1923), 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, - [118448] = 26, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [99574] = 26, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(3620), 1, + ACTIONS(4701), 1, anon_sym_POUND_, - ACTIONS(3622), 1, + ACTIONS(4703), 1, anon_sym_CARET, - ACTIONS(3624), 1, + ACTIONS(4705), 1, anon_sym_POUND_CARET, - ACTIONS(3628), 1, + ACTIONS(4709), 1, anon_sym_cl, - ACTIONS(3630), 1, + ACTIONS(4711), 1, aux_sym_accumulation_verb_token1, - ACTIONS(3634), 1, + ACTIONS(4715), 1, anon_sym_and, - ACTIONS(3636), 1, + ACTIONS(4717), 1, anon_sym_with, - ACTIONS(3638), 1, + ACTIONS(4719), 1, anon_sym_do, - ACTIONS(3642), 1, + ACTIONS(4723), 1, anon_sym_repeat, - ACTIONS(3646), 1, + ACTIONS(4727), 1, anon_sym_else, - ACTIONS(3864), 1, + ACTIONS(4771), 1, anon_sym_RPAREN, - STATE(281), 1, + STATE(169), 1, sym_accumulation_verb, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, + STATE(2352), 1, sym_meta_lit, - STATE(2389), 1, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2419), 1, aux_sym_list_lit_repeat1, - ACTIONS(3632), 2, + ACTIONS(4713), 2, anon_sym_for, anon_sym_as, - ACTIONS(3640), 2, + ACTIONS(4721), 2, anon_sym_while, anon_sym_until, - ACTIONS(3658), 2, + ACTIONS(4773), 2, sym__ws, sym_comment, - ACTIONS(3648), 3, + ACTIONS(4729), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1330), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(981), 4, + STATE(974), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(3644), 6, + ACTIONS(4725), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(1923), 9, + STATE(2073), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -102859,149 +97326,179 @@ static uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [118550] = 26, + [99676] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(3620), 1, + ACTIONS(4404), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(3622), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(3624), 1, anon_sym_POUND_CARET, - ACTIONS(3628), 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(4406), 25, + 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(3630), 1, - aux_sym_accumulation_verb_token1, - ACTIONS(3634), 1, - anon_sym_and, - ACTIONS(3636), 1, - anon_sym_with, - ACTIONS(3638), 1, - anon_sym_do, - ACTIONS(3642), 1, - anon_sym_repeat, - ACTIONS(3646), 1, - anon_sym_else, - ACTIONS(3866), 1, - anon_sym_RPAREN, - STATE(281), 1, - sym_accumulation_verb, - STATE(2236), 1, - sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, - sym_meta_lit, - STATE(2389), 1, - aux_sym_list_lit_repeat1, - ACTIONS(3632), 2, - anon_sym_for, - anon_sym_as, - ACTIONS(3640), 2, - anon_sym_while, - anon_sym_until, - ACTIONS(3658), 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [99732] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4280), 23, sym__ws, sym_comment, - ACTIONS(3648), 3, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(981), 4, - sym__gap, - sym_dis_expr, - sym_loop_clause, - aux_sym_loop_macro_repeat1, - ACTIONS(3644), 6, - anon_sym_when, - anon_sym_if, - anon_sym_unless, - anon_sym_always, - anon_sym_thereis, - anon_sym_never, - STATE(1923), 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, - [118652] = 26, + 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(4282), 25, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [99788] = 26, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(3620), 1, + ACTIONS(4701), 1, anon_sym_POUND_, - ACTIONS(3622), 1, + ACTIONS(4703), 1, anon_sym_CARET, - ACTIONS(3624), 1, + ACTIONS(4705), 1, anon_sym_POUND_CARET, - ACTIONS(3628), 1, + ACTIONS(4709), 1, anon_sym_cl, - ACTIONS(3630), 1, + ACTIONS(4711), 1, aux_sym_accumulation_verb_token1, - ACTIONS(3634), 1, + ACTIONS(4715), 1, anon_sym_and, - ACTIONS(3636), 1, + ACTIONS(4717), 1, anon_sym_with, - ACTIONS(3638), 1, + ACTIONS(4719), 1, anon_sym_do, - ACTIONS(3642), 1, + ACTIONS(4723), 1, anon_sym_repeat, - ACTIONS(3646), 1, + ACTIONS(4727), 1, anon_sym_else, - ACTIONS(3866), 1, + ACTIONS(4753), 1, anon_sym_RPAREN, - STATE(281), 1, + STATE(169), 1, sym_accumulation_verb, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, + STATE(2352), 1, sym_meta_lit, - STATE(2389), 1, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2419), 1, aux_sym_list_lit_repeat1, - ACTIONS(3632), 2, + ACTIONS(4713), 2, anon_sym_for, anon_sym_as, - ACTIONS(3640), 2, + ACTIONS(4721), 2, anon_sym_while, anon_sym_until, - ACTIONS(3868), 2, + ACTIONS(4775), 2, sym__ws, sym_comment, - ACTIONS(3648), 3, + ACTIONS(4729), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1330), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(990), 4, + STATE(981), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(3644), 6, + ACTIONS(4725), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(1923), 9, + STATE(2073), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -103011,73 +97508,73 @@ static uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [118754] = 26, + [99890] = 26, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(3620), 1, + ACTIONS(4701), 1, anon_sym_POUND_, - ACTIONS(3622), 1, + ACTIONS(4703), 1, anon_sym_CARET, - ACTIONS(3624), 1, + ACTIONS(4705), 1, anon_sym_POUND_CARET, - ACTIONS(3628), 1, + ACTIONS(4709), 1, anon_sym_cl, - ACTIONS(3630), 1, + ACTIONS(4711), 1, aux_sym_accumulation_verb_token1, - ACTIONS(3634), 1, + ACTIONS(4715), 1, anon_sym_and, - ACTIONS(3636), 1, + ACTIONS(4717), 1, anon_sym_with, - ACTIONS(3638), 1, + ACTIONS(4719), 1, anon_sym_do, - ACTIONS(3642), 1, + ACTIONS(4723), 1, anon_sym_repeat, - ACTIONS(3646), 1, + ACTIONS(4727), 1, anon_sym_else, - ACTIONS(3872), 1, + ACTIONS(4757), 1, anon_sym_RPAREN, - STATE(281), 1, + STATE(169), 1, sym_accumulation_verb, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, + STATE(2352), 1, sym_meta_lit, - STATE(2389), 1, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2419), 1, aux_sym_list_lit_repeat1, - ACTIONS(3632), 2, + ACTIONS(4713), 2, anon_sym_for, anon_sym_as, - ACTIONS(3640), 2, + ACTIONS(4721), 2, anon_sym_while, anon_sym_until, - ACTIONS(3870), 2, + ACTIONS(4777), 2, sym__ws, sym_comment, - ACTIONS(3648), 3, + ACTIONS(4729), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1330), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(989), 4, + STATE(1129), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(3644), 6, + ACTIONS(4725), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(1923), 9, + STATE(2073), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -103087,73 +97584,232 @@ static uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [118856] = 26, + [99992] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, + ACTIONS(4232), 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, - ACTIONS(3620), 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(4234), 25, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [100048] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4232), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(3622), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(3624), 1, anon_sym_POUND_CARET, - ACTIONS(3628), 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(4234), 25, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [100104] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4196), 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(4198), 25, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [100160] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(4701), 1, + anon_sym_POUND_, + ACTIONS(4703), 1, + anon_sym_CARET, + ACTIONS(4705), 1, + anon_sym_POUND_CARET, + ACTIONS(4709), 1, anon_sym_cl, - ACTIONS(3630), 1, + ACTIONS(4711), 1, aux_sym_accumulation_verb_token1, - ACTIONS(3634), 1, + ACTIONS(4715), 1, anon_sym_and, - ACTIONS(3636), 1, + ACTIONS(4717), 1, anon_sym_with, - ACTIONS(3638), 1, + ACTIONS(4719), 1, anon_sym_do, - ACTIONS(3642), 1, + ACTIONS(4723), 1, anon_sym_repeat, - ACTIONS(3646), 1, + ACTIONS(4727), 1, anon_sym_else, - ACTIONS(3874), 1, + ACTIONS(4779), 1, anon_sym_RPAREN, - STATE(281), 1, + STATE(169), 1, sym_accumulation_verb, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, + STATE(2352), 1, sym_meta_lit, - STATE(2389), 1, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2419), 1, aux_sym_list_lit_repeat1, - ACTIONS(3632), 2, + ACTIONS(4713), 2, anon_sym_for, anon_sym_as, - ACTIONS(3640), 2, + ACTIONS(4721), 2, anon_sym_while, anon_sym_until, - ACTIONS(3658), 2, + ACTIONS(4735), 2, sym__ws, sym_comment, - ACTIONS(3648), 3, + ACTIONS(4729), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1330), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(981), 4, + STATE(1128), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(3644), 6, + ACTIONS(4725), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(1923), 9, + STATE(2073), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -103163,73 +97819,179 @@ static uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [118958] = 26, + [100262] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, + ACTIONS(4228), 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, - ACTIONS(3620), 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(4230), 25, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [100318] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4216), 23, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(3622), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, - ACTIONS(3624), 1, anon_sym_POUND_CARET, - ACTIONS(3628), 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(4218), 25, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [100374] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(4701), 1, + anon_sym_POUND_, + ACTIONS(4703), 1, + anon_sym_CARET, + ACTIONS(4705), 1, + anon_sym_POUND_CARET, + ACTIONS(4709), 1, anon_sym_cl, - ACTIONS(3630), 1, + ACTIONS(4711), 1, aux_sym_accumulation_verb_token1, - ACTIONS(3634), 1, + ACTIONS(4715), 1, anon_sym_and, - ACTIONS(3636), 1, + ACTIONS(4717), 1, anon_sym_with, - ACTIONS(3638), 1, + ACTIONS(4719), 1, anon_sym_do, - ACTIONS(3642), 1, + ACTIONS(4723), 1, anon_sym_repeat, - ACTIONS(3646), 1, + ACTIONS(4727), 1, anon_sym_else, - ACTIONS(3874), 1, + ACTIONS(4783), 1, anon_sym_RPAREN, - STATE(281), 1, + STATE(169), 1, sym_accumulation_verb, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, + STATE(2352), 1, sym_meta_lit, - STATE(2389), 1, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2419), 1, aux_sym_list_lit_repeat1, - ACTIONS(3632), 2, + ACTIONS(4713), 2, anon_sym_for, anon_sym_as, - ACTIONS(3640), 2, + ACTIONS(4721), 2, anon_sym_while, anon_sym_until, - ACTIONS(3876), 2, + ACTIONS(4781), 2, sym__ws, sym_comment, - ACTIONS(3648), 3, + ACTIONS(4729), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1330), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(1021), 4, + STATE(998), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(3644), 6, + ACTIONS(4725), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(1923), 9, + STATE(2073), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -103239,73 +98001,73 @@ static uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [119060] = 26, + [100476] = 26, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(3620), 1, + ACTIONS(4701), 1, anon_sym_POUND_, - ACTIONS(3622), 1, + ACTIONS(4703), 1, anon_sym_CARET, - ACTIONS(3624), 1, + ACTIONS(4705), 1, anon_sym_POUND_CARET, - ACTIONS(3628), 1, + ACTIONS(4709), 1, anon_sym_cl, - ACTIONS(3630), 1, + ACTIONS(4711), 1, aux_sym_accumulation_verb_token1, - ACTIONS(3634), 1, + ACTIONS(4715), 1, anon_sym_and, - ACTIONS(3636), 1, + ACTIONS(4717), 1, anon_sym_with, - ACTIONS(3638), 1, + ACTIONS(4719), 1, anon_sym_do, - ACTIONS(3642), 1, + ACTIONS(4723), 1, anon_sym_repeat, - ACTIONS(3646), 1, + ACTIONS(4727), 1, anon_sym_else, - ACTIONS(3830), 1, + ACTIONS(4779), 1, anon_sym_RPAREN, - STATE(281), 1, + STATE(169), 1, sym_accumulation_verb, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, + STATE(2352), 1, sym_meta_lit, - STATE(2389), 1, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2419), 1, aux_sym_list_lit_repeat1, - ACTIONS(3632), 2, + ACTIONS(4713), 2, anon_sym_for, anon_sym_as, - ACTIONS(3640), 2, + ACTIONS(4721), 2, anon_sym_while, anon_sym_until, - ACTIONS(3658), 2, + ACTIONS(4785), 2, sym__ws, sym_comment, - ACTIONS(3648), 3, + ACTIONS(4729), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1330), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(981), 4, + STATE(1013), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(3644), 6, + ACTIONS(4725), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(1923), 9, + STATE(2073), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -103315,73 +98077,73 @@ static uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [119162] = 26, + [100578] = 26, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(3620), 1, + ACTIONS(4701), 1, anon_sym_POUND_, - ACTIONS(3622), 1, + ACTIONS(4703), 1, anon_sym_CARET, - ACTIONS(3624), 1, + ACTIONS(4705), 1, anon_sym_POUND_CARET, - ACTIONS(3628), 1, + ACTIONS(4709), 1, anon_sym_cl, - ACTIONS(3630), 1, + ACTIONS(4711), 1, aux_sym_accumulation_verb_token1, - ACTIONS(3634), 1, + ACTIONS(4715), 1, anon_sym_and, - ACTIONS(3636), 1, + ACTIONS(4717), 1, anon_sym_with, - ACTIONS(3638), 1, + ACTIONS(4719), 1, anon_sym_do, - ACTIONS(3642), 1, + ACTIONS(4723), 1, anon_sym_repeat, - ACTIONS(3646), 1, + ACTIONS(4727), 1, anon_sym_else, - ACTIONS(3864), 1, + ACTIONS(4787), 1, anon_sym_RPAREN, - STATE(281), 1, + STATE(169), 1, sym_accumulation_verb, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, + STATE(2352), 1, sym_meta_lit, - STATE(2389), 1, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2419), 1, aux_sym_list_lit_repeat1, - ACTIONS(3632), 2, + ACTIONS(4713), 2, anon_sym_for, anon_sym_as, - ACTIONS(3640), 2, + ACTIONS(4721), 2, anon_sym_while, anon_sym_until, - ACTIONS(3878), 2, + ACTIONS(4735), 2, sym__ws, sym_comment, - ACTIONS(3648), 3, + ACTIONS(4729), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - STATE(1330), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(992), 4, + STATE(1128), 4, sym__gap, sym_dis_expr, sym_loop_clause, aux_sym_loop_macro_repeat1, - ACTIONS(3644), 6, + ACTIONS(4725), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - STATE(1923), 9, + STATE(2073), 9, sym_list_lit, sym_for_clause, sym_with_clause, @@ -103391,10 +98153,10 @@ static uint16_t ts_small_parse_table[] = { sym_condition_clause, sym_accumulation_clause, sym_termination_clause, - [119264] = 3, + [100680] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3289), 22, + ACTIONS(4204), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -103413,11 +98175,12 @@ static uint16_t ts_small_parse_table[] = { 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(3291), 25, + ACTIONS(4206), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -103443,10 +98206,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [119319] = 3, + [100736] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3229), 22, + ACTIONS(4140), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -103465,11 +98228,12 @@ static uint16_t ts_small_parse_table[] = { 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(3231), 25, + ACTIONS(4142), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -103495,64 +98259,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [119374] = 5, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(3880), 1, - anon_sym_COLON, - ACTIONS(3882), 1, - anon_sym_COLON_COLON, - ACTIONS(3073), 21, - 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, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3075), 24, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [119433] = 3, + [100792] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3069), 22, + ACTIONS(4508), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -103571,11 +98281,12 @@ static uint16_t ts_small_parse_table[] = { 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(3071), 25, + ACTIONS(4510), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -103601,10 +98312,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [119488] = 3, + [100848] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3101), 22, + ACTIONS(4192), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -103623,11 +98334,12 @@ static uint16_t ts_small_parse_table[] = { 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(3103), 25, + ACTIONS(4194), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -103653,114 +98365,86 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [119543] = 3, + [100904] = 26, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3073), 22, - sym__ws, - sym_comment, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(4701), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(4703), 1, anon_sym_CARET, + ACTIONS(4705), 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, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3075), 25, - 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(4709), 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [119598] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(3093), 22, + ACTIONS(4711), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4715), 1, + anon_sym_and, + ACTIONS(4717), 1, + anon_sym_with, + ACTIONS(4719), 1, + anon_sym_do, + ACTIONS(4723), 1, + anon_sym_repeat, + ACTIONS(4727), 1, + anon_sym_else, + ACTIONS(4791), 1, + anon_sym_RPAREN, + STATE(169), 1, + sym_accumulation_verb, + STATE(2237), 1, + sym__metadata_lit, + STATE(2352), 1, + sym_meta_lit, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2419), 1, + aux_sym_list_lit_repeat1, + ACTIONS(4713), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(4721), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(4789), 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, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3095), 25, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [119653] = 3, + ACTIONS(4729), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1021), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(4725), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2073), 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, + [101006] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3105), 22, + ACTIONS(4156), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -103779,11 +98463,12 @@ static uint16_t ts_small_parse_table[] = { 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(3107), 25, + ACTIONS(4158), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -103809,10 +98494,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [119708] = 3, + [101062] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3293), 22, + ACTIONS(4164), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -103831,11 +98516,12 @@ static uint16_t ts_small_parse_table[] = { 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(3295), 25, + ACTIONS(4166), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -103861,10 +98547,86 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [119763] = 3, + [101118] = 26, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3081), 22, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(4701), 1, + anon_sym_POUND_, + ACTIONS(4703), 1, + anon_sym_CARET, + ACTIONS(4705), 1, + anon_sym_POUND_CARET, + ACTIONS(4709), 1, + anon_sym_cl, + ACTIONS(4711), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4715), 1, + anon_sym_and, + ACTIONS(4717), 1, + anon_sym_with, + ACTIONS(4719), 1, + anon_sym_do, + ACTIONS(4723), 1, + anon_sym_repeat, + ACTIONS(4727), 1, + anon_sym_else, + ACTIONS(4793), 1, + anon_sym_RPAREN, + STATE(169), 1, + sym_accumulation_verb, + STATE(2237), 1, + sym__metadata_lit, + STATE(2352), 1, + sym_meta_lit, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2419), 1, + aux_sym_list_lit_repeat1, + ACTIONS(4713), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(4721), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(4735), 2, + sym__ws, + sym_comment, + ACTIONS(4729), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1128), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(4725), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2073), 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, + [101220] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4400), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -103883,11 +98645,12 @@ static uint16_t ts_small_parse_table[] = { 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(3083), 25, + ACTIONS(4402), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -103913,10 +98676,86 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [119818] = 3, + [101276] = 26, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3085), 22, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(4701), 1, + anon_sym_POUND_, + ACTIONS(4703), 1, + anon_sym_CARET, + ACTIONS(4705), 1, + anon_sym_POUND_CARET, + ACTIONS(4709), 1, + anon_sym_cl, + ACTIONS(4711), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4715), 1, + anon_sym_and, + ACTIONS(4717), 1, + anon_sym_with, + ACTIONS(4719), 1, + anon_sym_do, + ACTIONS(4723), 1, + anon_sym_repeat, + ACTIONS(4727), 1, + anon_sym_else, + ACTIONS(4783), 1, + anon_sym_RPAREN, + STATE(169), 1, + sym_accumulation_verb, + STATE(2237), 1, + sym__metadata_lit, + STATE(2352), 1, + sym_meta_lit, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2419), 1, + aux_sym_list_lit_repeat1, + ACTIONS(4713), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(4721), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(4735), 2, + sym__ws, + sym_comment, + ACTIONS(4729), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1128), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(4725), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2073), 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, + [101378] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4160), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -103935,11 +98774,12 @@ static uint16_t ts_small_parse_table[] = { 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(3087), 25, + ACTIONS(4162), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -103965,10 +98805,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [119873] = 3, + [101434] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3097), 22, + ACTIONS(4172), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -103987,11 +98827,12 @@ static uint16_t ts_small_parse_table[] = { 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(3099), 25, + ACTIONS(4174), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -104017,10 +98858,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [119928] = 3, + [101490] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3245), 22, + ACTIONS(4152), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -104039,11 +98880,12 @@ static uint16_t ts_small_parse_table[] = { 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(3247), 25, + ACTIONS(4154), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -104069,10 +98911,86 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [119983] = 3, + [101546] = 26, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3425), 22, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(4701), 1, + anon_sym_POUND_, + ACTIONS(4703), 1, + anon_sym_CARET, + ACTIONS(4705), 1, + anon_sym_POUND_CARET, + ACTIONS(4709), 1, + anon_sym_cl, + ACTIONS(4711), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4715), 1, + anon_sym_and, + ACTIONS(4717), 1, + anon_sym_with, + ACTIONS(4719), 1, + anon_sym_do, + ACTIONS(4723), 1, + anon_sym_repeat, + ACTIONS(4727), 1, + anon_sym_else, + ACTIONS(4797), 1, + anon_sym_RPAREN, + STATE(169), 1, + sym_accumulation_verb, + STATE(2237), 1, + sym__metadata_lit, + STATE(2352), 1, + sym_meta_lit, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2419), 1, + aux_sym_list_lit_repeat1, + ACTIONS(4713), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(4721), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(4795), 2, + sym__ws, + sym_comment, + ACTIONS(4729), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1139), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(4725), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2073), 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, + [101648] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4148), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -104091,11 +99009,12 @@ static uint16_t ts_small_parse_table[] = { 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(3427), 25, + ACTIONS(4150), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -104121,10 +99040,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [120038] = 3, + [101704] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3109), 22, + ACTIONS(4168), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -104143,11 +99062,12 @@ static uint16_t ts_small_parse_table[] = { 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(3111), 25, + ACTIONS(4170), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -104173,10 +99093,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [120093] = 3, + [101760] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3429), 22, + ACTIONS(4180), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -104195,11 +99115,12 @@ static uint16_t ts_small_parse_table[] = { 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(3431), 25, + ACTIONS(4182), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -104225,10 +99146,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [120148] = 3, + [101816] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3433), 22, + ACTIONS(4184), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -104247,11 +99168,12 @@ static uint16_t ts_small_parse_table[] = { 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(3435), 25, + ACTIONS(4186), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -104277,17 +99199,67 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [120203] = 5, + [101872] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3880), 1, - anon_sym_COLON, - ACTIONS(3882), 1, + ACTIONS(4188), 23, + sym__ws, + sym_comment, + anon_sym_POUND_, anon_sym_COLON_COLON, - ACTIONS(3281), 21, + 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(4190), 25, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [101928] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4200), 23, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -104302,14 +99274,16 @@ static uint16_t ts_small_parse_table[] = { 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(3283), 24, + ACTIONS(4202), 25, 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, @@ -104331,10 +99305,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [120262] = 3, + [101984] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3389), 22, + ACTIONS(4208), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -104353,11 +99327,12 @@ static uint16_t ts_small_parse_table[] = { 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(3391), 25, + ACTIONS(4210), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -104383,10 +99358,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [120317] = 3, + [102040] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3113), 22, + ACTIONS(4212), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -104405,11 +99380,12 @@ static uint16_t ts_small_parse_table[] = { 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(3115), 25, + ACTIONS(4214), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -104435,10 +99411,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [120372] = 3, + [102096] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3117), 22, + ACTIONS(4220), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -104457,11 +99433,12 @@ static uint16_t ts_small_parse_table[] = { 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(3119), 25, + ACTIONS(4222), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -104487,10 +99464,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [120427] = 3, + [102152] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3121), 22, + ACTIONS(4224), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -104509,11 +99486,12 @@ static uint16_t ts_small_parse_table[] = { 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(3123), 25, + ACTIONS(4226), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -104539,10 +99517,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [120482] = 3, + [102208] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3125), 22, + ACTIONS(4236), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -104561,11 +99539,12 @@ static uint16_t ts_small_parse_table[] = { 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(3127), 25, + ACTIONS(4238), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -104591,10 +99570,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [120537] = 3, + [102264] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3129), 22, + ACTIONS(4240), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -104613,11 +99592,12 @@ static uint16_t ts_small_parse_table[] = { 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(3131), 25, + ACTIONS(4242), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -104643,10 +99623,86 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [120592] = 3, + [102320] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(4701), 1, + anon_sym_POUND_, + ACTIONS(4703), 1, + anon_sym_CARET, + ACTIONS(4705), 1, + anon_sym_POUND_CARET, + ACTIONS(4709), 1, + anon_sym_cl, + ACTIONS(4711), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4715), 1, + anon_sym_and, + ACTIONS(4717), 1, + anon_sym_with, + ACTIONS(4719), 1, + anon_sym_do, + ACTIONS(4723), 1, + anon_sym_repeat, + ACTIONS(4727), 1, + anon_sym_else, + ACTIONS(4793), 1, + anon_sym_RPAREN, + STATE(169), 1, + sym_accumulation_verb, + STATE(2237), 1, + sym__metadata_lit, + STATE(2352), 1, + sym_meta_lit, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2419), 1, + aux_sym_list_lit_repeat1, + ACTIONS(4713), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(4721), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(4799), 2, + sym__ws, + sym_comment, + ACTIONS(4729), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1083), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(4725), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2073), 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, + [102422] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3133), 22, + ACTIONS(4244), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -104665,11 +99721,12 @@ static uint16_t ts_small_parse_table[] = { 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(3135), 25, + ACTIONS(4246), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -104695,10 +99752,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [120647] = 3, + [102478] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3137), 22, + ACTIONS(4248), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -104717,11 +99774,12 @@ static uint16_t ts_small_parse_table[] = { 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(3139), 25, + ACTIONS(4250), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -104747,10 +99805,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [120702] = 3, + [102534] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3141), 22, + ACTIONS(4252), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -104769,11 +99827,12 @@ static uint16_t ts_small_parse_table[] = { 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(3143), 25, + ACTIONS(4254), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -104799,10 +99858,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [120757] = 3, + [102590] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3285), 22, + ACTIONS(4256), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -104821,11 +99880,12 @@ static uint16_t ts_small_parse_table[] = { 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(3287), 25, + ACTIONS(4258), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -104851,10 +99911,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [120812] = 3, + [102646] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3145), 22, + ACTIONS(4264), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -104873,11 +99933,12 @@ static uint16_t ts_small_parse_table[] = { 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(3147), 25, + ACTIONS(4266), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -104903,10 +99964,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [120867] = 3, + [102702] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3081), 22, + ACTIONS(4268), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -104925,11 +99986,12 @@ static uint16_t ts_small_parse_table[] = { 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(3083), 25, + ACTIONS(4270), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -104955,10 +100017,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [120922] = 3, + [102758] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3149), 22, + ACTIONS(4276), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -104977,11 +100039,12 @@ static uint16_t ts_small_parse_table[] = { 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(3151), 25, + ACTIONS(4278), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -105007,10 +100070,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [120977] = 3, + [102814] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3153), 22, + ACTIONS(4356), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -105029,11 +100092,12 @@ static uint16_t ts_small_parse_table[] = { 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(3155), 25, + ACTIONS(4358), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -105059,10 +100123,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [121032] = 3, + [102870] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3157), 22, + ACTIONS(4360), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -105081,11 +100145,12 @@ static uint16_t ts_small_parse_table[] = { 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(3159), 25, + ACTIONS(4362), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -105111,10 +100176,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [121087] = 3, + [102926] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3249), 22, + ACTIONS(4372), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -105133,11 +100198,12 @@ static uint16_t ts_small_parse_table[] = { 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(3251), 25, + ACTIONS(4374), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -105163,10 +100229,86 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [121142] = 3, + [102982] = 26, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3161), 22, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(4701), 1, + anon_sym_POUND_, + ACTIONS(4703), 1, + anon_sym_CARET, + ACTIONS(4705), 1, + anon_sym_POUND_CARET, + ACTIONS(4709), 1, + anon_sym_cl, + ACTIONS(4711), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4715), 1, + anon_sym_and, + ACTIONS(4717), 1, + anon_sym_with, + ACTIONS(4719), 1, + anon_sym_do, + ACTIONS(4723), 1, + anon_sym_repeat, + ACTIONS(4727), 1, + anon_sym_else, + ACTIONS(4803), 1, + anon_sym_RPAREN, + STATE(169), 1, + sym_accumulation_verb, + STATE(2237), 1, + sym__metadata_lit, + STATE(2352), 1, + sym_meta_lit, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2419), 1, + aux_sym_list_lit_repeat1, + ACTIONS(4713), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(4721), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(4801), 2, + sym__ws, + sym_comment, + ACTIONS(4729), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1085), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(4725), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2073), 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, + [103084] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4408), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -105185,11 +100327,12 @@ static uint16_t ts_small_parse_table[] = { 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(3163), 25, + ACTIONS(4410), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -105215,10 +100358,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [121197] = 3, + [103140] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3253), 22, + ACTIONS(4480), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -105237,11 +100380,12 @@ static uint16_t ts_small_parse_table[] = { 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(3255), 25, + ACTIONS(4482), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -105267,10 +100411,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [121252] = 3, + [103196] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3065), 22, + ACTIONS(4476), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -105289,11 +100433,12 @@ static uint16_t ts_small_parse_table[] = { 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(3067), 25, + ACTIONS(4478), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -105319,10 +100464,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [121307] = 3, + [103252] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3257), 22, + ACTIONS(4472), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -105341,11 +100486,12 @@ static uint16_t ts_small_parse_table[] = { 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(3259), 25, + ACTIONS(4474), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -105371,10 +100517,86 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [121362] = 3, + [103308] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(4701), 1, + anon_sym_POUND_, + ACTIONS(4703), 1, + anon_sym_CARET, + ACTIONS(4705), 1, + anon_sym_POUND_CARET, + ACTIONS(4709), 1, + anon_sym_cl, + ACTIONS(4711), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4715), 1, + anon_sym_and, + ACTIONS(4717), 1, + anon_sym_with, + ACTIONS(4719), 1, + anon_sym_do, + ACTIONS(4723), 1, + anon_sym_repeat, + ACTIONS(4727), 1, + anon_sym_else, + ACTIONS(4797), 1, + anon_sym_RPAREN, + STATE(169), 1, + sym_accumulation_verb, + STATE(2237), 1, + sym__metadata_lit, + STATE(2352), 1, + sym_meta_lit, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2419), 1, + aux_sym_list_lit_repeat1, + ACTIONS(4713), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(4721), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(4735), 2, + sym__ws, + sym_comment, + ACTIONS(4729), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1128), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(4725), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2073), 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, + [103410] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3165), 22, + ACTIONS(4468), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -105393,11 +100615,12 @@ static uint16_t ts_small_parse_table[] = { 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(3167), 25, + ACTIONS(4470), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -105423,10 +100646,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [121417] = 3, + [103466] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3169), 22, + ACTIONS(4464), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -105445,11 +100668,12 @@ static uint16_t ts_small_parse_table[] = { 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(3171), 25, + ACTIONS(4466), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -105475,10 +100699,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [121472] = 3, + [103522] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3261), 22, + ACTIONS(4460), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -105497,11 +100721,12 @@ static uint16_t ts_small_parse_table[] = { 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(3263), 25, + ACTIONS(4462), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -105527,10 +100752,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [121527] = 3, + [103578] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3173), 22, + ACTIONS(4456), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -105549,11 +100774,12 @@ static uint16_t ts_small_parse_table[] = { 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(3175), 25, + ACTIONS(4458), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -105579,10 +100805,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [121582] = 3, + [103634] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3265), 22, + ACTIONS(4452), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -105601,11 +100827,12 @@ static uint16_t ts_small_parse_table[] = { 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(3267), 25, + ACTIONS(4454), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -105631,10 +100858,86 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [121637] = 3, + [103690] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(4701), 1, + anon_sym_POUND_, + ACTIONS(4703), 1, + anon_sym_CARET, + ACTIONS(4705), 1, + anon_sym_POUND_CARET, + ACTIONS(4709), 1, + anon_sym_cl, + ACTIONS(4711), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4715), 1, + anon_sym_and, + ACTIONS(4717), 1, + anon_sym_with, + ACTIONS(4719), 1, + anon_sym_do, + ACTIONS(4723), 1, + anon_sym_repeat, + ACTIONS(4727), 1, + anon_sym_else, + ACTIONS(4807), 1, + anon_sym_RPAREN, + STATE(169), 1, + sym_accumulation_verb, + STATE(2237), 1, + sym__metadata_lit, + STATE(2352), 1, + sym_meta_lit, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2419), 1, + aux_sym_list_lit_repeat1, + ACTIONS(4713), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(4721), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(4805), 2, + sym__ws, + sym_comment, + ACTIONS(4729), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1056), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(4725), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2073), 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, + [103792] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3269), 22, + ACTIONS(4448), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -105653,11 +100956,12 @@ static uint16_t ts_small_parse_table[] = { 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(3271), 25, + ACTIONS(4450), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -105683,10 +100987,86 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [121692] = 3, + [103848] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(4701), 1, + anon_sym_POUND_, + ACTIONS(4703), 1, + anon_sym_CARET, + ACTIONS(4705), 1, + anon_sym_POUND_CARET, + ACTIONS(4709), 1, + anon_sym_cl, + ACTIONS(4711), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4715), 1, + anon_sym_and, + ACTIONS(4717), 1, + anon_sym_with, + ACTIONS(4719), 1, + anon_sym_do, + ACTIONS(4723), 1, + anon_sym_repeat, + ACTIONS(4727), 1, + anon_sym_else, + ACTIONS(4751), 1, + anon_sym_RPAREN, + STATE(169), 1, + sym_accumulation_verb, + STATE(2237), 1, + sym__metadata_lit, + STATE(2352), 1, + sym_meta_lit, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2419), 1, + aux_sym_list_lit_repeat1, + ACTIONS(4713), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(4721), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(4809), 2, + sym__ws, + sym_comment, + ACTIONS(4729), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(967), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(4725), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2073), 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, + [103950] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3273), 22, + ACTIONS(4420), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -105705,11 +101085,12 @@ static uint16_t ts_small_parse_table[] = { 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(3275), 25, + ACTIONS(4422), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -105735,10 +101116,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [121747] = 3, + [104006] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3177), 22, + ACTIONS(4372), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -105757,11 +101138,12 @@ static uint16_t ts_small_parse_table[] = { 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(3179), 25, + ACTIONS(4374), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -105787,10 +101169,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [121802] = 3, + [104062] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3181), 22, + ACTIONS(4144), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -105809,11 +101191,12 @@ static uint16_t ts_small_parse_table[] = { 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(3183), 25, + ACTIONS(4146), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -105839,10 +101222,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [121857] = 3, + [104118] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3277), 22, + ACTIONS(4392), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -105861,11 +101244,12 @@ static uint16_t ts_small_parse_table[] = { 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(3279), 25, + ACTIONS(4394), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -105891,10 +101275,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [121912] = 3, + [104174] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3185), 22, + ACTIONS(4388), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -105913,11 +101297,12 @@ static uint16_t ts_small_parse_table[] = { 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(3187), 25, + ACTIONS(4390), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -105943,10 +101328,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [121967] = 3, + [104230] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3061), 22, + ACTIONS(4384), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -105965,11 +101350,12 @@ static uint16_t ts_small_parse_table[] = { 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(3063), 25, + ACTIONS(4386), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -105995,10 +101381,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [122022] = 3, + [104286] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3189), 22, + ACTIONS(4376), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -106017,11 +101403,12 @@ static uint16_t ts_small_parse_table[] = { 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(3191), 25, + ACTIONS(4378), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -106047,10 +101434,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [122077] = 3, + [104342] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3193), 22, + ACTIONS(4372), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -106069,11 +101456,12 @@ static uint16_t ts_small_parse_table[] = { 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(3195), 25, + ACTIONS(4374), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -106099,10 +101487,65 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [122132] = 3, + [104398] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3197), 22, + ACTIONS(4811), 1, + anon_sym_COLON, + ACTIONS(4813), 1, + anon_sym_COLON_COLON, + ACTIONS(4340), 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(4342), 24, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [104458] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4348), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -106121,11 +101564,12 @@ static uint16_t ts_small_parse_table[] = { 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(3199), 25, + ACTIONS(4350), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -106151,10 +101595,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [122187] = 3, + [104514] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3089), 22, + ACTIONS(4340), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -106173,11 +101617,12 @@ static uint16_t ts_small_parse_table[] = { 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(3091), 25, + ACTIONS(4342), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -106203,10 +101648,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [122242] = 3, + [104570] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3201), 22, + ACTIONS(4336), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -106225,11 +101670,12 @@ static uint16_t ts_small_parse_table[] = { 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(3203), 25, + ACTIONS(4338), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -106255,10 +101701,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [122297] = 3, + [104626] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3205), 22, + ACTIONS(4332), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -106277,11 +101723,12 @@ static uint16_t ts_small_parse_table[] = { 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(3207), 25, + ACTIONS(4334), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -106307,10 +101754,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [122352] = 3, + [104682] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3209), 22, + ACTIONS(4312), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -106329,11 +101776,12 @@ static uint16_t ts_small_parse_table[] = { 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(3211), 25, + ACTIONS(4314), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -106359,14 +101807,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [122407] = 3, + [104738] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3213), 22, + ACTIONS(4811), 1, + anon_sym_COLON, + ACTIONS(4813), 1, + anon_sym_COLON_COLON, + ACTIONS(4304), 22, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -106381,15 +101832,15 @@ static uint16_t ts_small_parse_table[] = { 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(3215), 25, + ACTIONS(4306), 24, 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, @@ -106411,10 +101862,694 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [122462] = 3, + [104798] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(4701), 1, + anon_sym_POUND_, + ACTIONS(4703), 1, + anon_sym_CARET, + ACTIONS(4705), 1, + anon_sym_POUND_CARET, + ACTIONS(4709), 1, + anon_sym_cl, + ACTIONS(4711), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4715), 1, + anon_sym_and, + ACTIONS(4717), 1, + anon_sym_with, + ACTIONS(4719), 1, + anon_sym_do, + ACTIONS(4723), 1, + anon_sym_repeat, + ACTIONS(4727), 1, + anon_sym_else, + ACTIONS(4815), 1, + anon_sym_RPAREN, + STATE(169), 1, + sym_accumulation_verb, + STATE(2237), 1, + sym__metadata_lit, + STATE(2352), 1, + sym_meta_lit, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2419), 1, + aux_sym_list_lit_repeat1, + ACTIONS(4713), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(4721), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(4735), 2, + sym__ws, + sym_comment, + ACTIONS(4729), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1128), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(4725), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2073), 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, + [104900] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(4701), 1, + anon_sym_POUND_, + ACTIONS(4703), 1, + anon_sym_CARET, + ACTIONS(4705), 1, + anon_sym_POUND_CARET, + ACTIONS(4709), 1, + anon_sym_cl, + ACTIONS(4711), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4715), 1, + anon_sym_and, + ACTIONS(4717), 1, + anon_sym_with, + ACTIONS(4719), 1, + anon_sym_do, + ACTIONS(4723), 1, + anon_sym_repeat, + ACTIONS(4727), 1, + anon_sym_else, + ACTIONS(4817), 1, + anon_sym_RPAREN, + STATE(169), 1, + sym_accumulation_verb, + STATE(2237), 1, + sym__metadata_lit, + STATE(2352), 1, + sym_meta_lit, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2419), 1, + aux_sym_list_lit_repeat1, + ACTIONS(4713), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(4721), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(4735), 2, + sym__ws, + sym_comment, + ACTIONS(4729), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1128), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(4725), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2073), 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, + [105002] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(4701), 1, + anon_sym_POUND_, + ACTIONS(4703), 1, + anon_sym_CARET, + ACTIONS(4705), 1, + anon_sym_POUND_CARET, + ACTIONS(4709), 1, + anon_sym_cl, + ACTIONS(4711), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4715), 1, + anon_sym_and, + ACTIONS(4717), 1, + anon_sym_with, + ACTIONS(4719), 1, + anon_sym_do, + ACTIONS(4723), 1, + anon_sym_repeat, + ACTIONS(4727), 1, + anon_sym_else, + ACTIONS(4821), 1, + anon_sym_RPAREN, + STATE(169), 1, + sym_accumulation_verb, + STATE(2237), 1, + sym__metadata_lit, + STATE(2352), 1, + sym_meta_lit, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2419), 1, + aux_sym_list_lit_repeat1, + ACTIONS(4713), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(4721), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(4819), 2, + sym__ws, + sym_comment, + ACTIONS(4729), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1080), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(4725), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2073), 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, + [105104] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(4701), 1, + anon_sym_POUND_, + ACTIONS(4703), 1, + anon_sym_CARET, + ACTIONS(4705), 1, + anon_sym_POUND_CARET, + ACTIONS(4709), 1, + anon_sym_cl, + ACTIONS(4711), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4715), 1, + anon_sym_and, + ACTIONS(4717), 1, + anon_sym_with, + ACTIONS(4719), 1, + anon_sym_do, + ACTIONS(4723), 1, + anon_sym_repeat, + ACTIONS(4727), 1, + anon_sym_else, + ACTIONS(4803), 1, + anon_sym_RPAREN, + STATE(169), 1, + sym_accumulation_verb, + STATE(2237), 1, + sym__metadata_lit, + STATE(2352), 1, + sym_meta_lit, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2419), 1, + aux_sym_list_lit_repeat1, + ACTIONS(4713), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(4721), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(4735), 2, + sym__ws, + sym_comment, + ACTIONS(4729), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1128), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(4725), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2073), 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, + [105206] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(4701), 1, + anon_sym_POUND_, + ACTIONS(4703), 1, + anon_sym_CARET, + ACTIONS(4705), 1, + anon_sym_POUND_CARET, + ACTIONS(4709), 1, + anon_sym_cl, + ACTIONS(4711), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4715), 1, + anon_sym_and, + ACTIONS(4717), 1, + anon_sym_with, + ACTIONS(4719), 1, + anon_sym_do, + ACTIONS(4723), 1, + anon_sym_repeat, + ACTIONS(4727), 1, + anon_sym_else, + ACTIONS(4821), 1, + anon_sym_RPAREN, + STATE(169), 1, + sym_accumulation_verb, + STATE(2237), 1, + sym__metadata_lit, + STATE(2352), 1, + sym_meta_lit, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2419), 1, + aux_sym_list_lit_repeat1, + ACTIONS(4713), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(4721), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(4735), 2, + sym__ws, + sym_comment, + ACTIONS(4729), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1128), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(4725), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2073), 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, + [105308] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(4701), 1, + anon_sym_POUND_, + ACTIONS(4703), 1, + anon_sym_CARET, + ACTIONS(4705), 1, + anon_sym_POUND_CARET, + ACTIONS(4709), 1, + anon_sym_cl, + ACTIONS(4711), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4715), 1, + anon_sym_and, + ACTIONS(4717), 1, + anon_sym_with, + ACTIONS(4719), 1, + anon_sym_do, + ACTIONS(4723), 1, + anon_sym_repeat, + ACTIONS(4727), 1, + anon_sym_else, + ACTIONS(4823), 1, + anon_sym_RPAREN, + STATE(169), 1, + sym_accumulation_verb, + STATE(2237), 1, + sym__metadata_lit, + STATE(2352), 1, + sym_meta_lit, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2419), 1, + aux_sym_list_lit_repeat1, + ACTIONS(4713), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(4721), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(4735), 2, + sym__ws, + sym_comment, + ACTIONS(4729), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1128), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(4725), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2073), 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, + [105410] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(4701), 1, + anon_sym_POUND_, + ACTIONS(4703), 1, + anon_sym_CARET, + ACTIONS(4705), 1, + anon_sym_POUND_CARET, + ACTIONS(4709), 1, + anon_sym_cl, + ACTIONS(4711), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4715), 1, + anon_sym_and, + ACTIONS(4717), 1, + anon_sym_with, + ACTIONS(4719), 1, + anon_sym_do, + ACTIONS(4723), 1, + anon_sym_repeat, + ACTIONS(4727), 1, + anon_sym_else, + ACTIONS(4823), 1, + anon_sym_RPAREN, + STATE(169), 1, + sym_accumulation_verb, + STATE(2237), 1, + sym__metadata_lit, + STATE(2352), 1, + sym_meta_lit, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2419), 1, + aux_sym_list_lit_repeat1, + ACTIONS(4713), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(4721), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(4825), 2, + sym__ws, + sym_comment, + ACTIONS(4729), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1097), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(4725), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2073), 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, + [105512] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(4701), 1, + anon_sym_POUND_, + ACTIONS(4703), 1, + anon_sym_CARET, + ACTIONS(4705), 1, + anon_sym_POUND_CARET, + ACTIONS(4709), 1, + anon_sym_cl, + ACTIONS(4711), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4715), 1, + anon_sym_and, + ACTIONS(4717), 1, + anon_sym_with, + ACTIONS(4719), 1, + anon_sym_do, + ACTIONS(4723), 1, + anon_sym_repeat, + ACTIONS(4727), 1, + anon_sym_else, + ACTIONS(4827), 1, + anon_sym_RPAREN, + STATE(169), 1, + sym_accumulation_verb, + STATE(2237), 1, + sym__metadata_lit, + STATE(2352), 1, + sym_meta_lit, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2419), 1, + aux_sym_list_lit_repeat1, + ACTIONS(4713), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(4721), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(4735), 2, + sym__ws, + sym_comment, + ACTIONS(4729), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1128), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(4725), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2073), 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, + [105614] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(4701), 1, + anon_sym_POUND_, + ACTIONS(4703), 1, + anon_sym_CARET, + ACTIONS(4705), 1, + anon_sym_POUND_CARET, + ACTIONS(4709), 1, + anon_sym_cl, + ACTIONS(4711), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4715), 1, + anon_sym_and, + ACTIONS(4717), 1, + anon_sym_with, + ACTIONS(4719), 1, + anon_sym_do, + ACTIONS(4723), 1, + anon_sym_repeat, + ACTIONS(4727), 1, + anon_sym_else, + ACTIONS(4831), 1, + anon_sym_RPAREN, + STATE(169), 1, + sym_accumulation_verb, + STATE(2237), 1, + sym__metadata_lit, + STATE(2352), 1, + sym_meta_lit, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2419), 1, + aux_sym_list_lit_repeat1, + ACTIONS(4713), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(4721), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(4829), 2, + sym__ws, + sym_comment, + ACTIONS(4729), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1162), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(4725), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2073), 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, + [105716] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3061), 22, + ACTIONS(4260), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -106433,11 +102568,12 @@ static uint16_t ts_small_parse_table[] = { 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(3063), 25, + ACTIONS(4262), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -106463,10 +102599,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [122517] = 3, + [105772] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3217), 22, + ACTIONS(4412), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -106485,11 +102621,12 @@ static uint16_t ts_small_parse_table[] = { 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(3219), 25, + ACTIONS(4414), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -106515,10 +102652,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [122572] = 3, + [105828] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3089), 22, + ACTIONS(4416), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -106537,11 +102674,12 @@ static uint16_t ts_small_parse_table[] = { 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(3091), 25, + ACTIONS(4418), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -106567,10 +102705,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [122627] = 3, + [105884] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3221), 22, + ACTIONS(4424), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -106589,11 +102727,12 @@ static uint16_t ts_small_parse_table[] = { 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(3223), 25, + ACTIONS(4426), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -106619,10 +102758,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [122682] = 3, + [105940] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3225), 22, + ACTIONS(4428), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -106641,11 +102780,12 @@ static uint16_t ts_small_parse_table[] = { 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(3227), 25, + ACTIONS(4430), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -106671,10 +102811,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [122737] = 3, + [105996] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3081), 22, + ACTIONS(4428), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -106693,11 +102833,12 @@ static uint16_t ts_small_parse_table[] = { 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(3083), 25, + ACTIONS(4430), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -106723,10 +102864,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [122792] = 3, + [106052] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3233), 22, + ACTIONS(4416), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -106745,11 +102886,12 @@ static uint16_t ts_small_parse_table[] = { 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(3235), 25, + ACTIONS(4418), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -106775,10 +102917,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [122847] = 3, + [106108] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3237), 22, + ACTIONS(4424), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -106797,11 +102939,12 @@ static uint16_t ts_small_parse_table[] = { 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(3239), 25, + ACTIONS(4426), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -106827,10 +102970,86 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [122902] = 3, + [106164] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(4701), 1, + anon_sym_POUND_, + ACTIONS(4703), 1, + anon_sym_CARET, + ACTIONS(4705), 1, + anon_sym_POUND_CARET, + ACTIONS(4709), 1, + anon_sym_cl, + ACTIONS(4711), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4715), 1, + anon_sym_and, + ACTIONS(4717), 1, + anon_sym_with, + ACTIONS(4719), 1, + anon_sym_do, + ACTIONS(4723), 1, + anon_sym_repeat, + ACTIONS(4727), 1, + anon_sym_else, + ACTIONS(4833), 1, + anon_sym_RPAREN, + STATE(169), 1, + sym_accumulation_verb, + STATE(2237), 1, + sym__metadata_lit, + STATE(2352), 1, + sym_meta_lit, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2419), 1, + aux_sym_list_lit_repeat1, + ACTIONS(4713), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(4721), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(4735), 2, + sym__ws, + sym_comment, + ACTIONS(4729), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1128), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(4725), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2073), 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, + [106266] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3421), 22, + ACTIONS(4428), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -106849,11 +103068,12 @@ static uint16_t ts_small_parse_table[] = { 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(3423), 25, + ACTIONS(4430), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -106879,10 +103099,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [122957] = 3, + [106322] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3241), 22, + ACTIONS(4428), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -106901,11 +103121,12 @@ static uint16_t ts_small_parse_table[] = { 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(3243), 25, + ACTIONS(4430), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -106931,10 +103152,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [123012] = 3, + [106378] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3421), 22, + ACTIONS(4176), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -106953,11 +103174,12 @@ static uint16_t ts_small_parse_table[] = { 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(3423), 25, + ACTIONS(4178), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -106983,10 +103205,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [123067] = 3, + [106434] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3417), 22, + ACTIONS(4488), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -107005,11 +103227,12 @@ static uint16_t ts_small_parse_table[] = { 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(3419), 25, + ACTIONS(4490), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -107035,10 +103258,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [123122] = 3, + [106490] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3413), 22, + ACTIONS(4492), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -107057,11 +103280,12 @@ static uint16_t ts_small_parse_table[] = { 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(3415), 25, + ACTIONS(4494), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -107087,10 +103311,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [123177] = 3, + [106546] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3409), 22, + ACTIONS(4496), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -107109,11 +103333,12 @@ static uint16_t ts_small_parse_table[] = { 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(3411), 25, + ACTIONS(4498), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -107139,10 +103364,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [123232] = 3, + [106602] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3409), 22, + ACTIONS(4500), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -107161,11 +103386,12 @@ static uint16_t ts_small_parse_table[] = { 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(3411), 25, + ACTIONS(4502), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -107191,10 +103417,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [123287] = 3, + [106658] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3417), 22, + ACTIONS(4504), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -107213,11 +103439,12 @@ static uint16_t ts_small_parse_table[] = { 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(3419), 25, + ACTIONS(4506), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -107243,10 +103470,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [123342] = 3, + [106714] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3413), 22, + ACTIONS(4500), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -107265,11 +103492,12 @@ static uint16_t ts_small_parse_table[] = { 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(3415), 25, + ACTIONS(4502), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -107295,10 +103523,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [123397] = 3, + [106770] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3409), 22, + ACTIONS(4504), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -107317,11 +103545,12 @@ static uint16_t ts_small_parse_table[] = { 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(3411), 25, + ACTIONS(4506), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -107347,10 +103576,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [123452] = 3, + [106826] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3409), 22, + ACTIONS(4484), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -107369,11 +103598,12 @@ static uint16_t ts_small_parse_table[] = { 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(3411), 25, + ACTIONS(4486), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -107399,10 +103629,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [123507] = 3, + [106882] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3405), 22, + ACTIONS(4496), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -107421,11 +103651,12 @@ static uint16_t ts_small_parse_table[] = { 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(3407), 25, + ACTIONS(4498), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -107451,10 +103682,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [123562] = 3, + [106938] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3401), 22, + ACTIONS(4500), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -107473,11 +103704,12 @@ static uint16_t ts_small_parse_table[] = { 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(3403), 25, + ACTIONS(4502), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -107503,10 +103735,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [123617] = 3, + [106994] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3397), 22, + ACTIONS(4504), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -107525,11 +103757,12 @@ static uint16_t ts_small_parse_table[] = { 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(3399), 25, + ACTIONS(4506), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -107555,10 +103788,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [123672] = 3, + [107050] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3393), 22, + ACTIONS(4500), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -107577,11 +103810,12 @@ static uint16_t ts_small_parse_table[] = { 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(3395), 25, + ACTIONS(4502), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -107607,10 +103841,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [123727] = 3, + [107106] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3397), 22, + ACTIONS(4504), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -107629,11 +103863,12 @@ static uint16_t ts_small_parse_table[] = { 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(3399), 25, + ACTIONS(4506), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -107659,10 +103894,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [123782] = 3, + [107162] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3393), 22, + ACTIONS(4484), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -107681,11 +103916,12 @@ static uint16_t ts_small_parse_table[] = { 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(3395), 25, + ACTIONS(4486), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -107711,10 +103947,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [123837] = 3, + [107218] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3385), 22, + ACTIONS(4512), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -107733,11 +103969,12 @@ static uint16_t ts_small_parse_table[] = { 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(3387), 25, + ACTIONS(4514), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -107763,10 +104000,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [123892] = 3, + [107274] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3401), 22, + ACTIONS(4440), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -107785,11 +104022,12 @@ static uint16_t ts_small_parse_table[] = { 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(3403), 25, + ACTIONS(4442), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -107815,10 +104053,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [123947] = 3, + [107330] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3397), 22, + ACTIONS(4440), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -107837,11 +104075,12 @@ static uint16_t ts_small_parse_table[] = { 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(3399), 25, + ACTIONS(4442), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -107867,10 +104106,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [124002] = 3, + [107386] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3393), 22, + ACTIONS(4436), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -107889,11 +104128,12 @@ static uint16_t ts_small_parse_table[] = { 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(3395), 25, + ACTIONS(4438), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -107919,10 +104159,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [124057] = 3, + [107442] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3397), 22, + ACTIONS(4432), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -107941,11 +104181,12 @@ static uint16_t ts_small_parse_table[] = { 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(3399), 25, + ACTIONS(4434), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -107971,10 +104212,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [124112] = 3, + [107498] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3393), 22, + ACTIONS(4440), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -107993,11 +104234,12 @@ static uint16_t ts_small_parse_table[] = { 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(3395), 25, + ACTIONS(4442), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -108023,10 +104265,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [124167] = 3, + [107554] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3385), 22, + ACTIONS(4440), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -108045,11 +104287,12 @@ static uint16_t ts_small_parse_table[] = { 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(3387), 25, + ACTIONS(4442), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -108075,10 +104318,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [124222] = 3, + [107610] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3381), 22, + ACTIONS(4436), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -108097,11 +104340,12 @@ static uint16_t ts_small_parse_table[] = { 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(3383), 25, + ACTIONS(4438), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -108127,10 +104371,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [124277] = 3, + [107666] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3377), 22, + ACTIONS(4432), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -108149,11 +104393,12 @@ static uint16_t ts_small_parse_table[] = { 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(3379), 25, + ACTIONS(4434), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -108179,10 +104424,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [124332] = 3, + [107722] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3373), 22, + ACTIONS(4272), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -108201,11 +104446,12 @@ static uint16_t ts_small_parse_table[] = { 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(3375), 25, + ACTIONS(4274), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -108231,10 +104477,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [124387] = 3, + [107778] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3369), 22, + ACTIONS(4272), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -108253,11 +104499,12 @@ static uint16_t ts_small_parse_table[] = { 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(3371), 25, + ACTIONS(4274), 25, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -108283,1425 +104530,2831 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [124442] = 3, + [107834] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(4701), 1, + anon_sym_POUND_, + ACTIONS(4703), 1, + anon_sym_CARET, + ACTIONS(4705), 1, + anon_sym_POUND_CARET, + ACTIONS(4707), 1, + anon_sym_RPAREN, + ACTIONS(4709), 1, + anon_sym_cl, + ACTIONS(4711), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4715), 1, + anon_sym_and, + ACTIONS(4717), 1, + anon_sym_with, + ACTIONS(4719), 1, + anon_sym_do, + ACTIONS(4723), 1, + anon_sym_repeat, + ACTIONS(4727), 1, + anon_sym_else, + STATE(169), 1, + sym_accumulation_verb, + STATE(2237), 1, + sym__metadata_lit, + STATE(2352), 1, + sym_meta_lit, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2419), 1, + aux_sym_list_lit_repeat1, + ACTIONS(4713), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(4721), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(4735), 2, + sym__ws, + sym_comment, + ACTIONS(4729), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1128), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(4725), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2073), 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, + [107936] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(4701), 1, + anon_sym_POUND_, + ACTIONS(4703), 1, + anon_sym_CARET, + ACTIONS(4705), 1, + anon_sym_POUND_CARET, + ACTIONS(4709), 1, + anon_sym_cl, + ACTIONS(4711), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4715), 1, + anon_sym_and, + ACTIONS(4717), 1, + anon_sym_with, + ACTIONS(4719), 1, + anon_sym_do, + ACTIONS(4723), 1, + anon_sym_repeat, + ACTIONS(4727), 1, + anon_sym_else, + ACTIONS(4837), 1, + anon_sym_RPAREN, + STATE(169), 1, + sym_accumulation_verb, + STATE(2237), 1, + sym__metadata_lit, + STATE(2352), 1, + sym_meta_lit, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2419), 1, + aux_sym_list_lit_repeat1, + ACTIONS(4713), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(4721), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(4835), 2, + sym__ws, + sym_comment, + ACTIONS(4729), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1133), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(4725), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2073), 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, + [108038] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4842), 1, + anon_sym_POUND_, + ACTIONS(4845), 1, + anon_sym_CARET, + ACTIONS(4848), 1, + anon_sym_POUND_CARET, + ACTIONS(4851), 1, + anon_sym_LPAREN, + ACTIONS(4854), 1, + anon_sym_RPAREN, + ACTIONS(4856), 1, + anon_sym_cl, + ACTIONS(4859), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4865), 1, + anon_sym_and, + ACTIONS(4868), 1, + anon_sym_with, + ACTIONS(4871), 1, + anon_sym_do, + ACTIONS(4877), 1, + anon_sym_repeat, + ACTIONS(4883), 1, + anon_sym_else, + STATE(169), 1, + sym_accumulation_verb, + STATE(2237), 1, + sym__metadata_lit, + STATE(2352), 1, + sym_meta_lit, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2419), 1, + aux_sym_list_lit_repeat1, + ACTIONS(4839), 2, + sym__ws, + sym_comment, + ACTIONS(4862), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(4874), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(4886), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1128), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(4880), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2073), 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, + [108140] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(4701), 1, + anon_sym_POUND_, + ACTIONS(4703), 1, + anon_sym_CARET, + ACTIONS(4705), 1, + anon_sym_POUND_CARET, + ACTIONS(4709), 1, + anon_sym_cl, + ACTIONS(4711), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4715), 1, + anon_sym_and, + ACTIONS(4717), 1, + anon_sym_with, + ACTIONS(4719), 1, + anon_sym_do, + ACTIONS(4723), 1, + anon_sym_repeat, + ACTIONS(4727), 1, + anon_sym_else, + ACTIONS(4837), 1, + anon_sym_RPAREN, + STATE(169), 1, + sym_accumulation_verb, + STATE(2237), 1, + sym__metadata_lit, + STATE(2352), 1, + sym_meta_lit, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2419), 1, + aux_sym_list_lit_repeat1, + ACTIONS(4713), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(4721), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(4735), 2, + sym__ws, + sym_comment, + ACTIONS(4729), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1128), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(4725), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2073), 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, + [108242] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(4701), 1, + anon_sym_POUND_, + ACTIONS(4703), 1, + anon_sym_CARET, + ACTIONS(4705), 1, + anon_sym_POUND_CARET, + ACTIONS(4709), 1, + anon_sym_cl, + ACTIONS(4711), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4715), 1, + anon_sym_and, + ACTIONS(4717), 1, + anon_sym_with, + ACTIONS(4719), 1, + anon_sym_do, + ACTIONS(4723), 1, + anon_sym_repeat, + ACTIONS(4727), 1, + anon_sym_else, + ACTIONS(4891), 1, + anon_sym_RPAREN, + STATE(169), 1, + sym_accumulation_verb, + STATE(2237), 1, + sym__metadata_lit, + STATE(2352), 1, + sym_meta_lit, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2419), 1, + aux_sym_list_lit_repeat1, + ACTIONS(4713), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(4721), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(4889), 2, + sym__ws, + sym_comment, + ACTIONS(4729), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1126), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(4725), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2073), 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, + [108344] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(4701), 1, + anon_sym_POUND_, + ACTIONS(4703), 1, + anon_sym_CARET, + ACTIONS(4705), 1, + anon_sym_POUND_CARET, + ACTIONS(4709), 1, + anon_sym_cl, + ACTIONS(4711), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4715), 1, + anon_sym_and, + ACTIONS(4717), 1, + anon_sym_with, + ACTIONS(4719), 1, + anon_sym_do, + ACTIONS(4723), 1, + anon_sym_repeat, + ACTIONS(4727), 1, + anon_sym_else, + ACTIONS(4891), 1, + anon_sym_RPAREN, + STATE(169), 1, + sym_accumulation_verb, + STATE(2237), 1, + sym__metadata_lit, + STATE(2352), 1, + sym_meta_lit, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2419), 1, + aux_sym_list_lit_repeat1, + ACTIONS(4713), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(4721), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(4735), 2, + sym__ws, + sym_comment, + ACTIONS(4729), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1128), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(4725), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2073), 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, + [108446] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(4701), 1, + anon_sym_POUND_, + ACTIONS(4703), 1, + anon_sym_CARET, + ACTIONS(4705), 1, + anon_sym_POUND_CARET, + ACTIONS(4709), 1, + anon_sym_cl, + ACTIONS(4711), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4715), 1, + anon_sym_and, + ACTIONS(4717), 1, + anon_sym_with, + ACTIONS(4719), 1, + anon_sym_do, + ACTIONS(4723), 1, + anon_sym_repeat, + ACTIONS(4727), 1, + anon_sym_else, + ACTIONS(4895), 1, + anon_sym_RPAREN, + STATE(169), 1, + sym_accumulation_verb, + STATE(2237), 1, + sym__metadata_lit, + STATE(2352), 1, + sym_meta_lit, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2419), 1, + aux_sym_list_lit_repeat1, + ACTIONS(4713), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(4721), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(4893), 2, + sym__ws, + sym_comment, + ACTIONS(4729), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1131), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(4725), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2073), 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, + [108548] = 26, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3369), 22, - sym__ws, - sym_comment, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(4701), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(4703), 1, anon_sym_CARET, + ACTIONS(4705), 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, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3371), 25, - 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(4709), 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [124497] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(3365), 22, + ACTIONS(4711), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4715), 1, + anon_sym_and, + ACTIONS(4717), 1, + anon_sym_with, + ACTIONS(4719), 1, + anon_sym_do, + ACTIONS(4723), 1, + anon_sym_repeat, + ACTIONS(4727), 1, + anon_sym_else, + ACTIONS(4897), 1, + anon_sym_RPAREN, + STATE(169), 1, + sym_accumulation_verb, + STATE(2237), 1, + sym__metadata_lit, + STATE(2352), 1, + sym_meta_lit, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2419), 1, + aux_sym_list_lit_repeat1, + ACTIONS(4713), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(4721), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(4735), 2, sym__ws, sym_comment, + ACTIONS(4729), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1128), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(4725), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2073), 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, + [108650] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(4701), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(4703), 1, anon_sym_CARET, + ACTIONS(4705), 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, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3367), 25, - 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(4709), 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [124552] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(3361), 22, + ACTIONS(4711), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4715), 1, + anon_sym_and, + ACTIONS(4717), 1, + anon_sym_with, + ACTIONS(4719), 1, + anon_sym_do, + ACTIONS(4723), 1, + anon_sym_repeat, + ACTIONS(4727), 1, + anon_sym_else, + ACTIONS(4899), 1, + anon_sym_RPAREN, + STATE(169), 1, + sym_accumulation_verb, + STATE(2237), 1, + sym__metadata_lit, + STATE(2352), 1, + sym_meta_lit, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2419), 1, + aux_sym_list_lit_repeat1, + ACTIONS(4713), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(4721), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(4735), 2, sym__ws, sym_comment, + ACTIONS(4729), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1128), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(4725), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2073), 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, + [108752] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(4701), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(4703), 1, anon_sym_CARET, + ACTIONS(4705), 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, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3363), 25, - 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(4709), 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [124607] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(3369), 22, + ACTIONS(4711), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4715), 1, + anon_sym_and, + ACTIONS(4717), 1, + anon_sym_with, + ACTIONS(4719), 1, + anon_sym_do, + ACTIONS(4723), 1, + anon_sym_repeat, + ACTIONS(4727), 1, + anon_sym_else, + ACTIONS(4901), 1, + anon_sym_RPAREN, + STATE(169), 1, + sym_accumulation_verb, + STATE(2237), 1, + sym__metadata_lit, + STATE(2352), 1, + sym_meta_lit, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2419), 1, + aux_sym_list_lit_repeat1, + ACTIONS(4713), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(4721), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(4735), 2, sym__ws, sym_comment, + ACTIONS(4729), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1128), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(4725), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2073), 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, + [108854] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(4701), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(4703), 1, anon_sym_CARET, + ACTIONS(4705), 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, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3371), 25, - 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(4709), 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [124662] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(3369), 22, + ACTIONS(4711), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4715), 1, + anon_sym_and, + ACTIONS(4717), 1, + anon_sym_with, + ACTIONS(4719), 1, + anon_sym_do, + ACTIONS(4723), 1, + anon_sym_repeat, + ACTIONS(4727), 1, + anon_sym_else, + ACTIONS(4903), 1, + anon_sym_RPAREN, + STATE(169), 1, + sym_accumulation_verb, + STATE(2237), 1, + sym__metadata_lit, + STATE(2352), 1, + sym_meta_lit, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2419), 1, + aux_sym_list_lit_repeat1, + ACTIONS(4713), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(4721), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(4735), 2, sym__ws, sym_comment, + ACTIONS(4729), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1128), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(4725), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2073), 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, + [108956] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(4701), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(4703), 1, anon_sym_CARET, + ACTIONS(4705), 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, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3371), 25, - 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(4709), 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [124717] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(3365), 22, + ACTIONS(4711), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4715), 1, + anon_sym_and, + ACTIONS(4717), 1, + anon_sym_with, + ACTIONS(4719), 1, + anon_sym_do, + ACTIONS(4723), 1, + anon_sym_repeat, + ACTIONS(4727), 1, + anon_sym_else, + ACTIONS(4905), 1, + anon_sym_RPAREN, + STATE(169), 1, + sym_accumulation_verb, + STATE(2237), 1, + sym__metadata_lit, + STATE(2352), 1, + sym_meta_lit, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2419), 1, + aux_sym_list_lit_repeat1, + ACTIONS(4713), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(4721), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(4735), 2, sym__ws, sym_comment, + ACTIONS(4729), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1128), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(4725), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2073), 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, + [109058] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(4701), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(4703), 1, anon_sym_CARET, + ACTIONS(4705), 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, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3367), 25, - 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(4709), 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [124772] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(3361), 22, + ACTIONS(4711), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4715), 1, + anon_sym_and, + ACTIONS(4717), 1, + anon_sym_with, + ACTIONS(4719), 1, + anon_sym_do, + ACTIONS(4723), 1, + anon_sym_repeat, + ACTIONS(4727), 1, + anon_sym_else, + ACTIONS(4909), 1, + anon_sym_RPAREN, + STATE(169), 1, + sym_accumulation_verb, + STATE(2237), 1, + sym__metadata_lit, + STATE(2352), 1, + sym_meta_lit, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2419), 1, + aux_sym_list_lit_repeat1, + ACTIONS(4713), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(4721), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(4907), 2, sym__ws, sym_comment, + ACTIONS(4729), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1140), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(4725), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2073), 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, + [109160] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(4701), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(4703), 1, anon_sym_CARET, + ACTIONS(4705), 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, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3363), 25, - 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(4709), 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [124827] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(3357), 22, + ACTIONS(4711), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4715), 1, + anon_sym_and, + ACTIONS(4717), 1, + anon_sym_with, + ACTIONS(4719), 1, + anon_sym_do, + ACTIONS(4723), 1, + anon_sym_repeat, + ACTIONS(4727), 1, + anon_sym_else, + ACTIONS(4909), 1, + anon_sym_RPAREN, + STATE(169), 1, + sym_accumulation_verb, + STATE(2237), 1, + sym__metadata_lit, + STATE(2352), 1, + sym_meta_lit, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2419), 1, + aux_sym_list_lit_repeat1, + ACTIONS(4713), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(4721), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(4735), 2, sym__ws, sym_comment, + ACTIONS(4729), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1128), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(4725), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2073), 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, + [109262] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(4701), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(4703), 1, anon_sym_CARET, + ACTIONS(4705), 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, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3359), 25, - 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(4709), 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [124882] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(3353), 22, + ACTIONS(4711), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4715), 1, + anon_sym_and, + ACTIONS(4717), 1, + anon_sym_with, + ACTIONS(4719), 1, + anon_sym_do, + ACTIONS(4723), 1, + anon_sym_repeat, + ACTIONS(4727), 1, + anon_sym_else, + ACTIONS(4831), 1, + anon_sym_RPAREN, + STATE(169), 1, + sym_accumulation_verb, + STATE(2237), 1, + sym__metadata_lit, + STATE(2352), 1, + sym_meta_lit, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2419), 1, + aux_sym_list_lit_repeat1, + ACTIONS(4713), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(4721), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(4735), 2, sym__ws, sym_comment, + ACTIONS(4729), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1128), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(4725), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2073), 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, + [109364] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(4701), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(4703), 1, anon_sym_CARET, + ACTIONS(4705), 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, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3355), 25, - 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(4709), 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [124937] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(3349), 22, + ACTIONS(4711), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4715), 1, + anon_sym_and, + ACTIONS(4717), 1, + anon_sym_with, + ACTIONS(4719), 1, + anon_sym_do, + ACTIONS(4723), 1, + anon_sym_repeat, + ACTIONS(4727), 1, + anon_sym_else, + ACTIONS(4913), 1, + anon_sym_RPAREN, + STATE(169), 1, + sym_accumulation_verb, + STATE(2237), 1, + sym__metadata_lit, + STATE(2352), 1, + sym_meta_lit, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2419), 1, + aux_sym_list_lit_repeat1, + ACTIONS(4713), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(4721), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(4911), 2, sym__ws, sym_comment, + ACTIONS(4729), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1137), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(4725), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2073), 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, + [109466] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(4701), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(4703), 1, anon_sym_CARET, + ACTIONS(4705), 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, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3351), 25, - 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(4709), 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [124992] = 3, + ACTIONS(4711), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4715), 1, + anon_sym_and, + ACTIONS(4717), 1, + anon_sym_with, + ACTIONS(4719), 1, + anon_sym_do, + ACTIONS(4723), 1, + anon_sym_repeat, + ACTIONS(4727), 1, + anon_sym_else, + ACTIONS(4897), 1, + anon_sym_RPAREN, + STATE(169), 1, + sym_accumulation_verb, + STATE(2237), 1, + sym__metadata_lit, + STATE(2352), 1, + sym_meta_lit, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2419), 1, + aux_sym_list_lit_repeat1, + ACTIONS(4713), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(4721), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(4915), 2, + sym__ws, + sym_comment, + ACTIONS(4729), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1081), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(4725), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2073), 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, + [109568] = 26, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3345), 22, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(4701), 1, + anon_sym_POUND_, + ACTIONS(4703), 1, + anon_sym_CARET, + ACTIONS(4705), 1, + anon_sym_POUND_CARET, + ACTIONS(4709), 1, + anon_sym_cl, + ACTIONS(4711), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4715), 1, + anon_sym_and, + ACTIONS(4717), 1, + anon_sym_with, + ACTIONS(4719), 1, + anon_sym_do, + ACTIONS(4723), 1, + anon_sym_repeat, + ACTIONS(4727), 1, + anon_sym_else, + ACTIONS(4903), 1, + anon_sym_RPAREN, + STATE(169), 1, + sym_accumulation_verb, + STATE(2237), 1, + sym__metadata_lit, + STATE(2352), 1, + sym_meta_lit, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2419), 1, + aux_sym_list_lit_repeat1, + ACTIONS(4713), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(4721), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(4917), 2, sym__ws, sym_comment, + ACTIONS(4729), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1135), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(4725), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2073), 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, + [109670] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(4701), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(4703), 1, anon_sym_CARET, + ACTIONS(4705), 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, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3347), 25, - 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(4709), 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [125047] = 3, + ACTIONS(4711), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4715), 1, + anon_sym_and, + ACTIONS(4717), 1, + anon_sym_with, + ACTIONS(4719), 1, + anon_sym_do, + ACTIONS(4723), 1, + anon_sym_repeat, + ACTIONS(4727), 1, + anon_sym_else, + ACTIONS(4921), 1, + anon_sym_RPAREN, + STATE(169), 1, + sym_accumulation_verb, + STATE(2237), 1, + sym__metadata_lit, + STATE(2352), 1, + sym_meta_lit, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2419), 1, + aux_sym_list_lit_repeat1, + ACTIONS(4713), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(4721), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(4919), 2, + sym__ws, + sym_comment, + ACTIONS(4729), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1136), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(4725), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2073), 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, + [109772] = 26, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3341), 22, - sym__ws, - sym_comment, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(4701), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(4703), 1, anon_sym_CARET, + ACTIONS(4705), 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, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3343), 25, - 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(4709), 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [125102] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(3337), 22, + ACTIONS(4711), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4715), 1, + anon_sym_and, + ACTIONS(4717), 1, + anon_sym_with, + ACTIONS(4719), 1, + anon_sym_do, + ACTIONS(4723), 1, + anon_sym_repeat, + ACTIONS(4727), 1, + anon_sym_else, + ACTIONS(4921), 1, + anon_sym_RPAREN, + STATE(169), 1, + sym_accumulation_verb, + STATE(2237), 1, + sym__metadata_lit, + STATE(2352), 1, + sym_meta_lit, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2419), 1, + aux_sym_list_lit_repeat1, + ACTIONS(4713), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(4721), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(4735), 2, sym__ws, sym_comment, + ACTIONS(4729), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1128), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(4725), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2073), 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, + [109874] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(4701), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(4703), 1, anon_sym_CARET, + ACTIONS(4705), 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, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3339), 25, - 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(4709), 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [125157] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(3337), 22, + ACTIONS(4711), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4715), 1, + anon_sym_and, + ACTIONS(4717), 1, + anon_sym_with, + ACTIONS(4719), 1, + anon_sym_do, + ACTIONS(4723), 1, + anon_sym_repeat, + ACTIONS(4727), 1, + anon_sym_else, + ACTIONS(4925), 1, + anon_sym_RPAREN, + STATE(169), 1, + sym_accumulation_verb, + STATE(2237), 1, + sym__metadata_lit, + STATE(2352), 1, + sym_meta_lit, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2419), 1, + aux_sym_list_lit_repeat1, + ACTIONS(4713), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(4721), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(4923), 2, sym__ws, sym_comment, + ACTIONS(4729), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1145), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(4725), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2073), 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, + [109976] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(4701), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(4703), 1, anon_sym_CARET, + ACTIONS(4705), 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, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3339), 25, - 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(4709), 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [125212] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(3333), 22, + ACTIONS(4711), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4715), 1, + anon_sym_and, + ACTIONS(4717), 1, + anon_sym_with, + ACTIONS(4719), 1, + anon_sym_do, + ACTIONS(4723), 1, + anon_sym_repeat, + ACTIONS(4727), 1, + anon_sym_else, + ACTIONS(4929), 1, + anon_sym_RPAREN, + STATE(169), 1, + sym_accumulation_verb, + STATE(2237), 1, + sym__metadata_lit, + STATE(2352), 1, + sym_meta_lit, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2419), 1, + aux_sym_list_lit_repeat1, + ACTIONS(4713), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(4721), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(4927), 2, sym__ws, sym_comment, + ACTIONS(4729), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1023), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(4725), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2073), 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, + [110078] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(4701), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(4703), 1, anon_sym_CARET, + ACTIONS(4705), 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, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3335), 25, - 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(4709), 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [125267] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(3333), 22, + ACTIONS(4711), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4715), 1, + anon_sym_and, + ACTIONS(4717), 1, + anon_sym_with, + ACTIONS(4719), 1, + anon_sym_do, + ACTIONS(4723), 1, + anon_sym_repeat, + ACTIONS(4727), 1, + anon_sym_else, + ACTIONS(4913), 1, + anon_sym_RPAREN, + STATE(169), 1, + sym_accumulation_verb, + STATE(2237), 1, + sym__metadata_lit, + STATE(2352), 1, + sym_meta_lit, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2419), 1, + aux_sym_list_lit_repeat1, + ACTIONS(4713), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(4721), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(4735), 2, sym__ws, sym_comment, + ACTIONS(4729), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1128), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(4725), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2073), 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, + [110180] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(4701), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(4703), 1, anon_sym_CARET, + ACTIONS(4705), 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, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3335), 25, - 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(4709), 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [125322] = 3, + ACTIONS(4711), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4715), 1, + anon_sym_and, + ACTIONS(4717), 1, + anon_sym_with, + ACTIONS(4719), 1, + anon_sym_do, + ACTIONS(4723), 1, + anon_sym_repeat, + ACTIONS(4727), 1, + anon_sym_else, + ACTIONS(4933), 1, + anon_sym_RPAREN, + STATE(169), 1, + sym_accumulation_verb, + STATE(2237), 1, + sym__metadata_lit, + STATE(2352), 1, + sym_meta_lit, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2419), 1, + aux_sym_list_lit_repeat1, + ACTIONS(4713), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(4721), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(4931), 2, + sym__ws, + sym_comment, + ACTIONS(4729), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1156), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(4725), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2073), 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, + [110282] = 26, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3329), 22, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(4701), 1, + anon_sym_POUND_, + ACTIONS(4703), 1, + anon_sym_CARET, + ACTIONS(4705), 1, + anon_sym_POUND_CARET, + ACTIONS(4709), 1, + anon_sym_cl, + ACTIONS(4711), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4715), 1, + anon_sym_and, + ACTIONS(4717), 1, + anon_sym_with, + ACTIONS(4719), 1, + anon_sym_do, + ACTIONS(4723), 1, + anon_sym_repeat, + ACTIONS(4727), 1, + anon_sym_else, + ACTIONS(4935), 1, + anon_sym_RPAREN, + STATE(169), 1, + sym_accumulation_verb, + STATE(2237), 1, + sym__metadata_lit, + STATE(2352), 1, + sym_meta_lit, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2419), 1, + aux_sym_list_lit_repeat1, + ACTIONS(4713), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(4721), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(4735), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(4729), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1128), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(4725), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2073), 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, + [110384] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(4701), 1, + anon_sym_POUND_, + ACTIONS(4703), 1, anon_sym_CARET, + ACTIONS(4705), 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, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3331), 25, - 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(4709), 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [125377] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(3325), 22, + ACTIONS(4711), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4715), 1, + anon_sym_and, + ACTIONS(4717), 1, + anon_sym_with, + ACTIONS(4719), 1, + anon_sym_do, + ACTIONS(4723), 1, + anon_sym_repeat, + ACTIONS(4727), 1, + anon_sym_else, + ACTIONS(4901), 1, + anon_sym_RPAREN, + STATE(169), 1, + sym_accumulation_verb, + STATE(2237), 1, + sym__metadata_lit, + STATE(2352), 1, + sym_meta_lit, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2419), 1, + aux_sym_list_lit_repeat1, + ACTIONS(4713), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(4721), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(4937), 2, sym__ws, sym_comment, + ACTIONS(4729), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1134), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(4725), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2073), 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, + [110486] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(4701), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(4703), 1, anon_sym_CARET, + ACTIONS(4705), 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, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3327), 25, - 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(4709), 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [125432] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(3321), 22, + ACTIONS(4711), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4715), 1, + anon_sym_and, + ACTIONS(4717), 1, + anon_sym_with, + ACTIONS(4719), 1, + anon_sym_do, + ACTIONS(4723), 1, + anon_sym_repeat, + ACTIONS(4727), 1, + anon_sym_else, + ACTIONS(4941), 1, + anon_sym_RPAREN, + STATE(169), 1, + sym_accumulation_verb, + STATE(2237), 1, + sym__metadata_lit, + STATE(2352), 1, + sym_meta_lit, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2419), 1, + aux_sym_list_lit_repeat1, + ACTIONS(4713), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(4721), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(4939), 2, sym__ws, sym_comment, + ACTIONS(4729), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1160), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(4725), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2073), 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, + [110588] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(4701), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(4703), 1, anon_sym_CARET, + ACTIONS(4705), 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, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3323), 25, - 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(4709), 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [125487] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(3317), 22, + ACTIONS(4711), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4715), 1, + anon_sym_and, + ACTIONS(4717), 1, + anon_sym_with, + ACTIONS(4719), 1, + anon_sym_do, + ACTIONS(4723), 1, + anon_sym_repeat, + ACTIONS(4727), 1, + anon_sym_else, + ACTIONS(4945), 1, + anon_sym_RPAREN, + STATE(169), 1, + sym_accumulation_verb, + STATE(2237), 1, + sym__metadata_lit, + STATE(2352), 1, + sym_meta_lit, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2419), 1, + aux_sym_list_lit_repeat1, + ACTIONS(4713), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(4721), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(4943), 2, sym__ws, sym_comment, + ACTIONS(4729), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1148), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(4725), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2073), 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, + [110690] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(4701), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(4703), 1, anon_sym_CARET, + ACTIONS(4705), 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, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3319), 25, - 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(4709), 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [125542] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(3313), 22, + ACTIONS(4711), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4715), 1, + anon_sym_and, + ACTIONS(4717), 1, + anon_sym_with, + ACTIONS(4719), 1, + anon_sym_do, + ACTIONS(4723), 1, + anon_sym_repeat, + ACTIONS(4727), 1, + anon_sym_else, + ACTIONS(4945), 1, + anon_sym_RPAREN, + STATE(169), 1, + sym_accumulation_verb, + STATE(2237), 1, + sym__metadata_lit, + STATE(2352), 1, + sym_meta_lit, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2419), 1, + aux_sym_list_lit_repeat1, + ACTIONS(4713), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(4721), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(4735), 2, sym__ws, sym_comment, + ACTIONS(4729), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1128), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(4725), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2073), 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, + [110792] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(4701), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(4703), 1, anon_sym_CARET, + ACTIONS(4705), 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, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3315), 25, - 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(4709), 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [125597] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(3309), 22, + ACTIONS(4711), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4715), 1, + anon_sym_and, + ACTIONS(4717), 1, + anon_sym_with, + ACTIONS(4719), 1, + anon_sym_do, + ACTIONS(4723), 1, + anon_sym_repeat, + ACTIONS(4727), 1, + anon_sym_else, + ACTIONS(4827), 1, + anon_sym_RPAREN, + STATE(169), 1, + sym_accumulation_verb, + STATE(2237), 1, + sym__metadata_lit, + STATE(2352), 1, + sym_meta_lit, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2419), 1, + aux_sym_list_lit_repeat1, + ACTIONS(4713), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(4721), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(4947), 2, sym__ws, sym_comment, + ACTIONS(4729), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1158), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(4725), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2073), 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, + [110894] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(4701), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(4703), 1, anon_sym_CARET, + ACTIONS(4705), 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, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3311), 25, - 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(4709), 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [125652] = 3, + ACTIONS(4711), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4715), 1, + anon_sym_and, + ACTIONS(4717), 1, + anon_sym_with, + ACTIONS(4719), 1, + anon_sym_do, + ACTIONS(4723), 1, + anon_sym_repeat, + ACTIONS(4727), 1, + anon_sym_else, + ACTIONS(4949), 1, + anon_sym_RPAREN, + STATE(169), 1, + sym_accumulation_verb, + STATE(2237), 1, + sym__metadata_lit, + STATE(2352), 1, + sym_meta_lit, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2419), 1, + aux_sym_list_lit_repeat1, + ACTIONS(4713), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(4721), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(4735), 2, + sym__ws, + sym_comment, + ACTIONS(4729), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1128), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(4725), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2073), 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, + [110996] = 26, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3305), 22, - sym__ws, - sym_comment, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(4701), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(4703), 1, anon_sym_CARET, + ACTIONS(4705), 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, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3307), 25, - 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(4709), 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [125707] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(3309), 22, + ACTIONS(4711), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4715), 1, + anon_sym_and, + ACTIONS(4717), 1, + anon_sym_with, + ACTIONS(4719), 1, + anon_sym_do, + ACTIONS(4723), 1, + anon_sym_repeat, + ACTIONS(4727), 1, + anon_sym_else, + ACTIONS(4949), 1, + anon_sym_RPAREN, + STATE(169), 1, + sym_accumulation_verb, + STATE(2237), 1, + sym__metadata_lit, + STATE(2352), 1, + sym_meta_lit, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2419), 1, + aux_sym_list_lit_repeat1, + ACTIONS(4713), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(4721), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(4951), 2, sym__ws, sym_comment, + ACTIONS(4729), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1154), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(4725), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2073), 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, + [111098] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(4701), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(4703), 1, anon_sym_CARET, + ACTIONS(4705), 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, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3311), 25, - 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(4709), 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [125762] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(3305), 22, + ACTIONS(4711), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4715), 1, + anon_sym_and, + ACTIONS(4717), 1, + anon_sym_with, + ACTIONS(4719), 1, + anon_sym_do, + ACTIONS(4723), 1, + anon_sym_repeat, + ACTIONS(4727), 1, + anon_sym_else, + ACTIONS(4941), 1, + anon_sym_RPAREN, + STATE(169), 1, + sym_accumulation_verb, + STATE(2237), 1, + sym__metadata_lit, + STATE(2352), 1, + sym_meta_lit, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2419), 1, + aux_sym_list_lit_repeat1, + ACTIONS(4713), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(4721), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(4735), 2, sym__ws, sym_comment, + ACTIONS(4729), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1128), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(4725), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2073), 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, + [111200] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(4701), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(4703), 1, anon_sym_CARET, + ACTIONS(4705), 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, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3307), 25, - 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(4709), 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [125817] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(3301), 22, + ACTIONS(4711), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4715), 1, + anon_sym_and, + ACTIONS(4717), 1, + anon_sym_with, + ACTIONS(4719), 1, + anon_sym_do, + ACTIONS(4723), 1, + anon_sym_repeat, + ACTIONS(4727), 1, + anon_sym_else, + ACTIONS(4955), 1, + anon_sym_RPAREN, + STATE(169), 1, + sym_accumulation_verb, + STATE(2237), 1, + sym__metadata_lit, + STATE(2352), 1, + sym_meta_lit, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2419), 1, + aux_sym_list_lit_repeat1, + ACTIONS(4713), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(4721), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(4953), 2, sym__ws, sym_comment, + ACTIONS(4729), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1087), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(4725), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2073), 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, + [111302] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(4701), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(4703), 1, anon_sym_CARET, + ACTIONS(4705), 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, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3303), 25, - 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(4709), 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [125872] = 3, + ACTIONS(4711), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4715), 1, + anon_sym_and, + ACTIONS(4717), 1, + anon_sym_with, + ACTIONS(4719), 1, + anon_sym_do, + ACTIONS(4723), 1, + anon_sym_repeat, + ACTIONS(4727), 1, + anon_sym_else, + ACTIONS(4957), 1, + anon_sym_RPAREN, + STATE(169), 1, + sym_accumulation_verb, + STATE(2237), 1, + sym__metadata_lit, + STATE(2352), 1, + sym_meta_lit, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2419), 1, + aux_sym_list_lit_repeat1, + ACTIONS(4713), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(4721), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(4735), 2, + sym__ws, + sym_comment, + ACTIONS(4729), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1128), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(4725), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2073), 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, + [111404] = 26, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3297), 22, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(4701), 1, + anon_sym_POUND_, + ACTIONS(4703), 1, + anon_sym_CARET, + ACTIONS(4705), 1, + anon_sym_POUND_CARET, + ACTIONS(4709), 1, + anon_sym_cl, + ACTIONS(4711), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4715), 1, + anon_sym_and, + ACTIONS(4717), 1, + anon_sym_with, + ACTIONS(4719), 1, + anon_sym_do, + ACTIONS(4723), 1, + anon_sym_repeat, + ACTIONS(4727), 1, + anon_sym_else, + ACTIONS(4957), 1, + anon_sym_RPAREN, + STATE(169), 1, + sym_accumulation_verb, + STATE(2237), 1, + sym__metadata_lit, + STATE(2352), 1, + sym_meta_lit, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2419), 1, + aux_sym_list_lit_repeat1, + ACTIONS(4713), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(4721), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(4959), 2, sym__ws, sym_comment, + ACTIONS(4729), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1150), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(4725), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2073), 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, + [111506] = 26, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(4701), 1, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + ACTIONS(4703), 1, anon_sym_CARET, + ACTIONS(4705), 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, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - ACTIONS(3299), 25, - 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(4709), 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [125927] = 5, + ACTIONS(4711), 1, + aux_sym_accumulation_verb_token1, + ACTIONS(4715), 1, + anon_sym_and, + ACTIONS(4717), 1, + anon_sym_with, + ACTIONS(4719), 1, + anon_sym_do, + ACTIONS(4723), 1, + anon_sym_repeat, + ACTIONS(4727), 1, + anon_sym_else, + ACTIONS(4961), 1, + anon_sym_RPAREN, + STATE(169), 1, + sym_accumulation_verb, + STATE(2237), 1, + sym__metadata_lit, + STATE(2352), 1, + sym_meta_lit, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2419), 1, + aux_sym_list_lit_repeat1, + ACTIONS(4713), 2, + anon_sym_for, + anon_sym_as, + ACTIONS(4721), 2, + anon_sym_while, + anon_sym_until, + ACTIONS(4735), 2, + sym__ws, + sym_comment, + ACTIONS(4729), 3, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(1128), 4, + sym__gap, + sym_dis_expr, + sym_loop_clause, + aux_sym_loop_macro_repeat1, + ACTIONS(4725), 6, + anon_sym_when, + anon_sym_if, + anon_sym_unless, + anon_sym_always, + anon_sym_thereis, + anon_sym_never, + STATE(2073), 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, + [111608] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3884), 1, + ACTIONS(4262), 4, anon_sym_COLON, - ACTIONS(3886), 1, - anon_sym_COLON_COLON, - ACTIONS(3283), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3281), 40, + ACTIONS(4260), 41, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -109739,18 +107392,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [125984] = 5, + [111661] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3884), 1, + ACTIONS(4963), 1, anon_sym_COLON, - ACTIONS(3886), 1, + ACTIONS(4965), 1, anon_sym_COLON_COLON, - ACTIONS(3075), 3, + ACTIONS(4342), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3073), 40, + ACTIONS(4340), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -109791,19 +107444,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [126041] = 3, + [111718] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3391), 4, + ACTIONS(4963), 1, anon_sym_COLON, + ACTIONS(4965), 1, + anon_sym_COLON_COLON, + ACTIONS(4306), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3389), 41, + ACTIONS(4304), 40, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -109841,16 +107496,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [126094] = 4, + [111775] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3888), 1, + ACTIONS(4967), 1, aux_sym_num_lit_token2, - ACTIONS(3057), 3, + ACTIONS(4136), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3055), 40, + ACTIONS(4134), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -109891,14 +107546,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [126148] = 3, + [111829] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3227), 3, + ACTIONS(4170), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3225), 40, + ACTIONS(4168), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -109939,14 +107594,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [126199] = 3, + [111880] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3143), 3, + ACTIONS(4194), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3141), 40, + ACTIONS(4192), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -109987,14 +107642,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [126250] = 3, + [111931] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3335), 3, + ACTIONS(4422), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3333), 40, + ACTIONS(4420), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -110035,14 +107690,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [126301] = 3, + [111982] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3327), 3, + ACTIONS(4394), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3325), 40, + ACTIONS(4392), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -110083,14 +107738,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [126352] = 3, + [112033] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3239), 3, + ACTIONS(4270), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3237), 40, + ACTIONS(4268), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -110131,14 +107786,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [126403] = 3, + [112084] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3271), 3, + ACTIONS(4390), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3269), 40, + ACTIONS(4388), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -110179,14 +107834,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [126454] = 3, + [112135] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3263), 3, + ACTIONS(4386), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3261), 40, + ACTIONS(4384), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -110227,14 +107882,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [126505] = 3, + [112186] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3323), 3, + ACTIONS(4142), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3321), 40, + ACTIONS(4140), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -110275,14 +107930,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [126556] = 3, + [112237] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3319), 3, + ACTIONS(4314), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3317), 40, + ACTIONS(4312), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -110323,14 +107978,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [126607] = 3, + [112288] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3315), 3, + ACTIONS(4334), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3313), 40, + ACTIONS(4332), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -110371,14 +108026,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [126658] = 3, + [112339] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3211), 3, + ACTIONS(4502), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3209), 40, + ACTIONS(4500), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -110419,14 +108074,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [126709] = 3, + [112390] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3335), 3, + ACTIONS(4342), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3333), 40, + ACTIONS(4340), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -110467,14 +108122,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [126760] = 3, + [112441] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3347), 3, + ACTIONS(4350), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3345), 40, + ACTIONS(4348), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -110515,14 +108170,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [126811] = 3, + [112492] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3351), 3, + ACTIONS(4374), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3349), 40, + ACTIONS(4372), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -110563,14 +108218,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [126862] = 3, + [112543] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3311), 3, + ACTIONS(4378), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3309), 40, + ACTIONS(4376), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -110611,14 +108266,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [126913] = 3, + [112594] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3175), 3, + ACTIONS(4146), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3173), 40, + ACTIONS(4144), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -110659,14 +108314,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [126964] = 3, + [112645] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3435), 3, + ACTIONS(4971), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3433), 40, + ACTIONS(4969), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -110707,14 +108362,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [127015] = 3, + [112696] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3355), 3, + ACTIONS(4971), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3353), 40, + ACTIONS(4969), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -110755,14 +108410,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [127066] = 3, + [112747] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3339), 3, + ACTIONS(4374), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3337), 40, + ACTIONS(4372), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -110803,14 +108458,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [127117] = 3, + [112798] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3431), 3, + ACTIONS(4226), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3429), 40, + ACTIONS(4224), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -110851,14 +108506,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [127168] = 3, + [112849] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3075), 3, + ACTIONS(4975), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3073), 40, + ACTIONS(4973), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -110899,14 +108554,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [127219] = 3, + [112900] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3339), 3, + ACTIONS(4498), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3337), 40, + ACTIONS(4496), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -110947,14 +108602,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [127270] = 3, + [112951] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3307), 3, + ACTIONS(4198), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3305), 40, + ACTIONS(4196), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -110995,14 +108650,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [127321] = 3, + [113002] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3163), 3, + ACTIONS(4274), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3161), 40, + ACTIONS(4272), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -111043,14 +108698,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [127372] = 3, + [113053] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3311), 3, + ACTIONS(4214), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3309), 40, + ACTIONS(4212), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -111091,14 +108746,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [127423] = 3, + [113104] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3359), 3, + ACTIONS(4210), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3357), 40, + ACTIONS(4208), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -111139,14 +108794,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [127474] = 3, + [113155] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3307), 3, + ACTIONS(4202), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3305), 40, + ACTIONS(4200), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -111187,14 +108842,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [127525] = 3, + [113206] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3363), 3, + ACTIONS(4162), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3361), 40, + ACTIONS(4160), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -111235,14 +108890,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [127576] = 3, + [113257] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3071), 3, + ACTIONS(4446), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3069), 40, + ACTIONS(4444), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -111283,14 +108938,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [127627] = 3, + [113308] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3303), 3, + ACTIONS(4434), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3301), 40, + ACTIONS(4432), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -111331,14 +108986,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [127678] = 3, + [113359] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3083), 3, + ACTIONS(4438), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3081), 40, + ACTIONS(4436), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -111379,14 +109034,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [127729] = 3, + [113410] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3299), 3, + ACTIONS(4486), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3297), 40, + ACTIONS(4484), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -111427,14 +109082,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [127780] = 3, + [113461] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3087), 3, + ACTIONS(4442), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3085), 40, + ACTIONS(4440), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -111475,14 +109130,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [127831] = 3, + [113512] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3107), 3, + ACTIONS(4442), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3105), 40, + ACTIONS(4440), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -111523,14 +109178,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [127882] = 3, + [113563] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3103), 3, + ACTIONS(4434), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3101), 40, + ACTIONS(4432), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -111571,14 +109226,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [127933] = 3, + [113614] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3091), 3, + ACTIONS(4506), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3089), 40, + ACTIONS(4504), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -111619,14 +109274,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [127984] = 3, + [113665] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3083), 3, + ACTIONS(4186), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3081), 40, + ACTIONS(4184), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -111667,14 +109322,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [128035] = 3, + [113716] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3099), 3, + ACTIONS(4182), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3097), 40, + ACTIONS(4180), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -111715,14 +109370,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [128086] = 3, + [113767] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3091), 3, + ACTIONS(4274), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3089), 40, + ACTIONS(4272), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -111763,14 +109418,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [128137] = 3, + [113818] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3111), 3, + ACTIONS(4242), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3109), 40, + ACTIONS(4240), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -111811,14 +109466,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [128188] = 3, + [113869] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3251), 3, + ACTIONS(4238), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3249), 40, + ACTIONS(4236), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -111859,14 +109514,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [128239] = 3, + [113920] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3287), 3, + ACTIONS(4246), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3285), 40, + ACTIONS(4244), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -111907,158 +109562,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [128290] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(3095), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(3093), 40, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_cl, - 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_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_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, - [128341] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(3295), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(3293), 40, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_cl, - 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_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_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, - [128392] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(3115), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(3113), 40, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_cl, - 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_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_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, - [128443] = 3, + [113971] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3892), 3, + ACTIONS(4438), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3890), 40, + ACTIONS(4436), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -112099,14 +109610,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [128494] = 3, + [114022] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3063), 3, + ACTIONS(4442), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3061), 40, + ACTIONS(4440), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -112147,14 +109658,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [128545] = 3, + [114073] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3343), 3, + ACTIONS(4506), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3341), 40, + ACTIONS(4504), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -112195,14 +109706,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [128596] = 3, + [114124] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3119), 3, + ACTIONS(4150), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3117), 40, + ACTIONS(4148), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -112243,14 +109754,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [128647] = 3, + [114175] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3123), 3, + ACTIONS(4154), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3121), 40, + ACTIONS(4152), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -112291,14 +109802,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [128698] = 3, + [114226] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3127), 3, + ACTIONS(4250), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3125), 40, + ACTIONS(4248), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -112339,14 +109850,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [128749] = 3, + [114277] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3131), 3, + ACTIONS(4174), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3129), 40, + ACTIONS(4172), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -112387,14 +109898,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [128800] = 3, + [114328] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3063), 3, + ACTIONS(4442), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3061), 40, + ACTIONS(4440), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -112435,14 +109946,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [128851] = 3, + [114379] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3279), 3, + ACTIONS(4402), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3277), 40, + ACTIONS(4400), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -112483,14 +109994,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [128902] = 3, + [114430] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3896), 3, + ACTIONS(4410), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3894), 40, + ACTIONS(4408), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -112531,14 +110042,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [128953] = 3, + [114481] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3423), 3, + ACTIONS(4450), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3421), 40, + ACTIONS(4448), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -112579,14 +110090,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [129004] = 3, + [114532] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3423), 3, + ACTIONS(4190), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3421), 40, + ACTIONS(4188), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -112627,14 +110138,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [129055] = 3, + [114583] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3331), 3, + ACTIONS(4454), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3329), 40, + ACTIONS(4452), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -112675,14 +110186,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [129106] = 3, + [114634] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3135), 3, + ACTIONS(4414), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3133), 40, + ACTIONS(4412), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -112723,14 +110234,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [129157] = 3, + [114685] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3139), 3, + ACTIONS(4166), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3137), 40, + ACTIONS(4164), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -112771,14 +110282,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [129208] = 3, + [114736] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3900), 3, + ACTIONS(4418), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3898), 40, + ACTIONS(4416), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -112819,14 +110330,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [129259] = 3, + [114787] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3363), 3, + ACTIONS(4458), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3361), 40, + ACTIONS(4456), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -112867,14 +110378,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [129310] = 3, + [114838] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3083), 3, + ACTIONS(4254), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3081), 40, + ACTIONS(4252), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -112915,14 +110426,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [129361] = 3, + [114889] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3151), 3, + ACTIONS(4258), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3149), 40, + ACTIONS(4256), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -112963,14 +110474,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [129412] = 3, + [114940] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3155), 3, + ACTIONS(4158), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3153), 40, + ACTIONS(4156), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -113011,14 +110522,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [129463] = 3, + [114991] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3275), 3, + ACTIONS(4502), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3273), 40, + ACTIONS(4500), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -113059,14 +110570,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [129514] = 3, + [115042] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3419), 3, + ACTIONS(4462), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3417), 40, + ACTIONS(4460), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -113107,14 +110618,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [129565] = 3, + [115093] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3415), 3, + ACTIONS(4466), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3413), 40, + ACTIONS(4464), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -113155,14 +110666,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [129616] = 3, + [115144] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3159), 3, + ACTIONS(4979), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3157), 40, + ACTIONS(4977), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -113203,14 +110714,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [129667] = 3, + [115195] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3067), 3, + ACTIONS(4514), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3065), 40, + ACTIONS(4512), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -113251,14 +110762,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [129718] = 3, + [115246] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3411), 3, + ACTIONS(4510), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3409), 40, + ACTIONS(4508), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -113299,14 +110810,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [129769] = 3, + [115297] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3167), 3, + ACTIONS(4506), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3165), 40, + ACTIONS(4504), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -113347,14 +110858,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [129820] = 3, + [115348] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3411), 3, + ACTIONS(4502), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3409), 40, + ACTIONS(4500), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -113395,14 +110906,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [129871] = 3, + [115399] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3171), 3, + ACTIONS(4498), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3169), 40, + ACTIONS(4496), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -113443,14 +110954,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [129922] = 3, + [115450] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3419), 3, + ACTIONS(4494), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3417), 40, + ACTIONS(4492), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -113491,14 +111002,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [129973] = 3, + [115501] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3415), 3, + ACTIONS(4206), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3413), 40, + ACTIONS(4204), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -113539,14 +111050,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [130024] = 3, + [115552] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3411), 3, + ACTIONS(4218), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3409), 40, + ACTIONS(4216), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -113587,158 +111098,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [130075] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(3367), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(3365), 40, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_cl, - 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_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_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, - [130126] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(3179), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(3177), 40, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_cl, - 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_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_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, - [130177] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(3411), 3, - anon_sym_in, - anon_sym_being, - anon_sym_do, - ACTIONS(3409), 40, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_cl, - 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_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_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, - [130228] = 3, + [115603] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3407), 3, + ACTIONS(4230), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3405), 40, + ACTIONS(4228), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -113779,14 +111146,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [130279] = 3, + [115654] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3403), 3, + ACTIONS(4490), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3401), 40, + ACTIONS(4488), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -113827,14 +111194,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [130330] = 3, + [115705] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3399), 3, + ACTIONS(4178), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3397), 40, + ACTIONS(4176), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -113875,14 +111242,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [130381] = 3, + [115756] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3183), 3, + ACTIONS(4470), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3181), 40, + ACTIONS(4468), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -113923,14 +111290,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [130432] = 3, + [115807] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3187), 3, + ACTIONS(4474), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3185), 40, + ACTIONS(4472), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -113971,14 +111338,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [130483] = 3, + [115858] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3395), 3, + ACTIONS(4222), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3393), 40, + ACTIONS(4220), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -114019,14 +111386,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [130534] = 3, + [115909] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3399), 3, + ACTIONS(4478), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3397), 40, + ACTIONS(4476), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -114067,14 +111434,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [130585] = 3, + [115960] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3191), 3, + ACTIONS(4406), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3189), 40, + ACTIONS(4404), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -114115,14 +111482,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [130636] = 3, + [116011] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3195), 3, + ACTIONS(4374), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3193), 40, + ACTIONS(4372), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -114163,14 +111530,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [130687] = 3, + [116062] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3199), 3, + ACTIONS(4983), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3197), 40, + ACTIONS(4981), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -114211,14 +111578,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [130738] = 3, + [116113] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3203), 3, + ACTIONS(4234), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3201), 40, + ACTIONS(4232), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -114259,14 +111626,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [130789] = 3, + [116164] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3207), 3, + ACTIONS(4506), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3205), 40, + ACTIONS(4504), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -114307,14 +111674,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [130840] = 3, + [116215] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3395), 3, + ACTIONS(4234), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3393), 40, + ACTIONS(4232), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -114355,14 +111722,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [130891] = 3, + [116266] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3259), 3, + ACTIONS(4362), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3257), 40, + ACTIONS(4360), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -114403,14 +111770,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [130942] = 3, + [116317] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3215), 3, + ACTIONS(4358), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3213), 40, + ACTIONS(4356), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -114451,14 +111818,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [130993] = 3, + [116368] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3387), 3, + ACTIONS(4278), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3385), 40, + ACTIONS(4276), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -114499,14 +111866,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [131044] = 3, + [116419] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3267), 3, + ACTIONS(4502), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3265), 40, + ACTIONS(4500), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -114547,14 +111914,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [131095] = 3, + [116470] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3403), 3, + ACTIONS(4486), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3401), 40, + ACTIONS(4484), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -114595,14 +111962,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [131146] = 3, + [116521] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3399), 3, + ACTIONS(4282), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3397), 40, + ACTIONS(4280), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -114643,14 +112010,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [131197] = 3, + [116572] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3219), 3, + ACTIONS(4286), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3217), 40, + ACTIONS(4284), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -114691,14 +112058,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [131248] = 3, + [116623] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3395), 3, + ACTIONS(4290), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3393), 40, + ACTIONS(4288), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -114739,14 +112106,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [131299] = 3, + [116674] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3223), 3, + ACTIONS(4290), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3221), 40, + ACTIONS(4288), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -114787,14 +112154,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [131350] = 3, + [116725] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3904), 3, + ACTIONS(4294), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3902), 40, + ACTIONS(4292), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -114835,14 +112202,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [131401] = 3, + [116776] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3904), 3, + ACTIONS(4298), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3902), 40, + ACTIONS(4296), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -114883,14 +112250,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [131452] = 3, + [116827] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3231), 3, + ACTIONS(4430), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3229), 40, + ACTIONS(4428), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -114931,14 +112298,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [131503] = 3, + [116878] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3399), 3, + ACTIONS(4430), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3397), 40, + ACTIONS(4428), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -114979,14 +112346,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [131554] = 3, + [116929] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3235), 3, + ACTIONS(4266), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3233), 40, + ACTIONS(4264), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -115027,14 +112394,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [131605] = 3, + [116980] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3243), 3, + ACTIONS(4302), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3241), 40, + ACTIONS(4300), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -115075,14 +112442,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [131656] = 3, + [117031] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3395), 3, + ACTIONS(4318), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3393), 40, + ACTIONS(4316), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -115123,14 +112490,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [131707] = 3, + [117082] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3387), 3, + ACTIONS(4302), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3385), 40, + ACTIONS(4300), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -115171,14 +112538,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [131758] = 3, + [117133] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3383), 3, + ACTIONS(4318), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3381), 40, + ACTIONS(4316), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -115219,14 +112586,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [131809] = 3, + [117184] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3247), 3, + ACTIONS(4322), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3245), 40, + ACTIONS(4320), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -115267,14 +112634,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [131860] = 3, + [117235] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3291), 3, + ACTIONS(4326), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3289), 40, + ACTIONS(4324), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -115315,14 +112682,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [131911] = 3, + [117286] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3371), 3, + ACTIONS(4426), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3369), 40, + ACTIONS(4424), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -115363,14 +112730,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [131962] = 3, + [117337] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3371), 3, + ACTIONS(4330), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3369), 40, + ACTIONS(4328), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -115411,14 +112778,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [132013] = 3, + [117388] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3379), 3, + ACTIONS(4418), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3377), 40, + ACTIONS(4416), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -115459,14 +112826,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [132064] = 3, + [117439] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3375), 3, + ACTIONS(4346), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3373), 40, + ACTIONS(4344), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -115507,14 +112874,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [132115] = 3, + [117490] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3255), 3, + ACTIONS(4354), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3253), 40, + ACTIONS(4352), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -115555,14 +112922,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [132166] = 3, + [117541] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3371), 3, + ACTIONS(4366), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3369), 40, + ACTIONS(4364), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -115603,14 +112970,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [132217] = 3, + [117592] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3371), 3, + ACTIONS(4366), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3369), 40, + ACTIONS(4364), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -115651,14 +113018,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [132268] = 3, + [117643] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3367), 3, + ACTIONS(4370), 3, anon_sym_in, anon_sym_being, anon_sym_do, - ACTIONS(3365), 40, + ACTIONS(4368), 40, sym__ws, sym_comment, anon_sym_POUND_, @@ -115699,33 +113066,41 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [132319] = 3, + [117694] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3179), 2, - anon_sym_POUND, - anon_sym_POUND_QMARK, - ACTIONS(3177), 38, + ACTIONS(4370), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(4368), 40, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, anon_sym_cl, + 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_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, @@ -115736,41 +113111,44 @@ static 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, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [132367] = 3, + [117745] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3359), 2, - anon_sym_POUND, - anon_sym_POUND_QMARK, - ACTIONS(3357), 38, + ACTIONS(4382), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(4380), 40, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, anon_sym_cl, + 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_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, @@ -115781,41 +113159,44 @@ static 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, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [132415] = 3, + [117796] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3363), 2, - anon_sym_POUND, - anon_sym_POUND_QMARK, - ACTIONS(3361), 38, + ACTIONS(4430), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(4428), 40, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, anon_sym_cl, + 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_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, @@ -115826,41 +113207,44 @@ static 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, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [132463] = 3, + [117847] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3367), 2, - anon_sym_POUND, - anon_sym_POUND_QMARK, - ACTIONS(3365), 38, + ACTIONS(4430), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(4428), 40, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, anon_sym_cl, + 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_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, @@ -115871,41 +113255,44 @@ static 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, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [132511] = 3, + [117898] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3371), 2, - anon_sym_POUND, - anon_sym_POUND_QMARK, - ACTIONS(3369), 38, + ACTIONS(4426), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(4424), 40, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, anon_sym_cl, + 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_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, @@ -115916,41 +113303,44 @@ static 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, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [132559] = 3, + [117949] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3371), 2, - anon_sym_POUND, - anon_sym_POUND_QMARK, - ACTIONS(3369), 38, + ACTIONS(4398), 3, + anon_sym_in, + anon_sym_being, + anon_sym_do, + ACTIONS(4396), 40, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, anon_sym_cl, + 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_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, @@ -115961,2148 +113351,2163 @@ static 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, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [132607] = 3, + [118000] = 9, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3363), 2, + ACTIONS(390), 1, + anon_sym_lambda, + ACTIONS(4989), 1, + anon_sym_cl, + ACTIONS(4991), 1, + anon_sym_loop, + STATE(159), 1, + sym_defun_header, + STATE(556), 1, + sym_defun_keyword, + ACTIONS(388), 4, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + ACTIONS(4987), 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, - ACTIONS(3361), 38, + anon_sym_COMMA, + sym_fancy_literal, + ACTIONS(4985), 23, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_num_lit_token1, + 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_cl, - 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_into, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, + 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, - [132655] = 3, + [118061] = 9, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3367), 2, + ACTIONS(390), 1, + anon_sym_lambda, + ACTIONS(4993), 1, + anon_sym_cl, + ACTIONS(4995), 1, + anon_sym_loop, + STATE(113), 1, + sym_defun_header, + STATE(556), 1, + sym_defun_keyword, + ACTIONS(388), 4, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + ACTIONS(4987), 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, - ACTIONS(3365), 38, + anon_sym_COMMA, + sym_fancy_literal, + ACTIONS(4985), 23, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_num_lit_token1, + 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_cl, - 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_into, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, + 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, - [132703] = 3, + [118122] = 9, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3371), 2, + ACTIONS(390), 1, + anon_sym_lambda, + ACTIONS(4997), 1, + anon_sym_cl, + ACTIONS(4999), 1, + anon_sym_loop, + STATE(49), 1, + sym_defun_header, + STATE(556), 1, + sym_defun_keyword, + ACTIONS(388), 4, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + ACTIONS(4987), 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, - ACTIONS(3369), 38, + anon_sym_COMMA, + sym_fancy_literal, + ACTIONS(4985), 23, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_num_lit_token1, + 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_cl, - 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_into, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, + 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, - [132751] = 3, + [118183] = 9, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3371), 2, + ACTIONS(390), 1, + anon_sym_lambda, + ACTIONS(5001), 1, + anon_sym_cl, + ACTIONS(5003), 1, + anon_sym_loop, + STATE(63), 1, + sym_defun_header, + STATE(556), 1, + sym_defun_keyword, + ACTIONS(388), 4, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + ACTIONS(4987), 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, - ACTIONS(3369), 38, + anon_sym_COMMA, + sym_fancy_literal, + ACTIONS(4985), 23, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_num_lit_token1, + 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_cl, - 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_into, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, + 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, - [132799] = 3, + [118244] = 9, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3375), 2, + ACTIONS(390), 1, + anon_sym_lambda, + ACTIONS(5005), 1, + anon_sym_cl, + ACTIONS(5007), 1, + anon_sym_loop, + STATE(76), 1, + sym_defun_header, + STATE(556), 1, + sym_defun_keyword, + ACTIONS(388), 4, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + ACTIONS(4987), 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, - ACTIONS(3373), 38, + anon_sym_COMMA, + sym_fancy_literal, + ACTIONS(4985), 23, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_num_lit_token1, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, - anon_sym_cl, - 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_into, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, + 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, - [132847] = 3, + [118305] = 9, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3379), 2, + ACTIONS(390), 1, + anon_sym_lambda, + ACTIONS(5009), 1, + anon_sym_cl, + ACTIONS(5011), 1, + anon_sym_loop, + STATE(92), 1, + sym_defun_header, + STATE(556), 1, + sym_defun_keyword, + ACTIONS(388), 4, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + ACTIONS(4987), 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, - ACTIONS(3377), 38, + anon_sym_COMMA, + sym_fancy_literal, + ACTIONS(4985), 23, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_num_lit_token1, + 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_cl, - 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_into, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, + 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, - [132895] = 3, + [118366] = 9, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3383), 2, + ACTIONS(390), 1, + anon_sym_lambda, + ACTIONS(5013), 1, + anon_sym_cl, + ACTIONS(5015), 1, + anon_sym_loop, + STATE(112), 1, + sym_defun_header, + STATE(556), 1, + sym_defun_keyword, + ACTIONS(388), 4, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + ACTIONS(4987), 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, - ACTIONS(3381), 38, + anon_sym_COMMA, + sym_fancy_literal, + ACTIONS(4985), 23, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_num_lit_token1, + 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_cl, - 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_into, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, + 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, - [132943] = 3, + [118427] = 9, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3387), 2, + ACTIONS(390), 1, + anon_sym_lambda, + ACTIONS(5017), 1, + anon_sym_cl, + ACTIONS(5019), 1, + anon_sym_loop, + STATE(151), 1, + sym_defun_header, + STATE(556), 1, + sym_defun_keyword, + ACTIONS(388), 4, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + ACTIONS(4987), 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, - ACTIONS(3385), 38, + anon_sym_COMMA, + sym_fancy_literal, + ACTIONS(4985), 23, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_num_lit_token1, + 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_cl, - 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_into, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, + 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, - [132991] = 3, + [118488] = 9, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3395), 2, + ACTIONS(390), 1, + anon_sym_lambda, + ACTIONS(5021), 1, + anon_sym_cl, + ACTIONS(5023), 1, + anon_sym_loop, + STATE(153), 1, + sym_defun_header, + STATE(556), 1, + sym_defun_keyword, + ACTIONS(388), 4, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + ACTIONS(4987), 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, - ACTIONS(3393), 38, + anon_sym_COMMA, + sym_fancy_literal, + ACTIONS(4985), 23, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_num_lit_token1, + 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_cl, - 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_into, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, + 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, - [133039] = 3, + [118549] = 9, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3399), 2, + ACTIONS(390), 1, + anon_sym_lambda, + ACTIONS(5025), 1, + anon_sym_cl, + ACTIONS(5027), 1, + anon_sym_loop, + STATE(149), 1, + sym_defun_header, + STATE(556), 1, + sym_defun_keyword, + ACTIONS(388), 4, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + ACTIONS(4987), 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, - ACTIONS(3397), 38, + anon_sym_COMMA, + sym_fancy_literal, + ACTIONS(4985), 23, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_num_lit_token1, + 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_cl, - 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_into, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, + 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, - [133087] = 3, + [118610] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3395), 2, + ACTIONS(5029), 1, + aux_sym_num_lit_token2, + ACTIONS(4136), 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, - ACTIONS(3393), 38, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(4134), 23, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_num_lit_token1, + 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_cl, - 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_into, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, + 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, - [133135] = 3, + [118660] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3399), 2, + ACTIONS(4178), 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, - ACTIONS(3397), 38, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(4176), 23, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_num_lit_token1, + 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_cl, - 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_into, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, + 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, - [133183] = 3, + [118707] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3403), 2, + ACTIONS(4414), 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, - ACTIONS(3401), 38, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(4412), 23, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_num_lit_token1, + 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_cl, - 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_into, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, + 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, - [133231] = 3, + [118754] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3387), 2, + ACTIONS(4298), 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, - ACTIONS(3385), 38, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(4296), 23, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_num_lit_token1, + 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_cl, - 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_into, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, + 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, - [133279] = 3, + [118801] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3395), 2, + ACTIONS(4294), 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, - ACTIONS(3393), 38, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(4292), 23, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_num_lit_token1, + 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_cl, - 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_into, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, + 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, - [133327] = 3, + [118848] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3399), 2, + ACTIONS(4290), 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, - ACTIONS(3397), 38, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(4288), 23, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_num_lit_token1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, - anon_sym_SQUOTE, - anon_sym_COMMA_AT, - anon_sym_cl, - 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_into, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, + 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, - [133375] = 3, + [118895] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3395), 2, + ACTIONS(4290), 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, - ACTIONS(3393), 38, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(4288), 23, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_num_lit_token1, + 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_cl, - 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_into, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, + 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, - [133423] = 3, + [118942] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3399), 2, + ACTIONS(4286), 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, - ACTIONS(3397), 38, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(4284), 23, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_num_lit_token1, + 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_cl, - 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_into, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, + 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, - [133471] = 3, + [118989] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3403), 2, + ACTIONS(4282), 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, - ACTIONS(3401), 38, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(4280), 23, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_num_lit_token1, + 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_cl, - 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_into, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, + 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, - [133519] = 3, + [119036] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3407), 2, + ACTIONS(4302), 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, - ACTIONS(3405), 38, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(4300), 23, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_num_lit_token1, + 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_cl, - 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_into, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, + 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, - [133567] = 3, + [119083] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3411), 2, + ACTIONS(4318), 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, - ACTIONS(3409), 38, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(4316), 23, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_num_lit_token1, + 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_cl, - 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_into, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, + 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, - [133615] = 3, + [119130] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3411), 2, + ACTIONS(4234), 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, - ACTIONS(3409), 38, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(4232), 23, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_num_lit_token1, + 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_cl, - 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_into, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, + 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, - [133663] = 3, + [119177] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3415), 2, + ACTIONS(4322), 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, - ACTIONS(3413), 38, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(4320), 23, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_num_lit_token1, + 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_cl, - 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_into, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, + 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, - [133711] = 3, + [119224] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3419), 2, + ACTIONS(4318), 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, - ACTIONS(3417), 38, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(4316), 23, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_num_lit_token1, + 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_cl, - 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_into, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, + 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, - [133759] = 3, + [119271] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3411), 2, + ACTIONS(4234), 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, - ACTIONS(3409), 38, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(4232), 23, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_num_lit_token1, + 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_cl, - 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_into, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, + 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, - [133807] = 3, + [119318] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3411), 2, + ACTIONS(4174), 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, - ACTIONS(3409), 38, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(4172), 23, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_num_lit_token1, + 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_cl, - 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_into, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, + 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, - [133855] = 3, + [119365] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3415), 2, + ACTIONS(4230), 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, - ACTIONS(3413), 38, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(4228), 23, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_num_lit_token1, + 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_cl, - 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_into, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, + 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, - [133903] = 3, + [119412] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3419), 2, + ACTIONS(4218), 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, - ACTIONS(3417), 38, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(4216), 23, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_num_lit_token1, + 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_cl, - 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_into, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, + 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, - [133951] = 3, + [119459] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3423), 2, + ACTIONS(4206), 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, - ACTIONS(3421), 38, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(4204), 23, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_num_lit_token1, + 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_cl, - 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_into, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, + 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, - [133999] = 3, + [119506] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3423), 2, + ACTIONS(4142), 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, - ACTIONS(3421), 38, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(4140), 23, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_num_lit_token1, + 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_cl, - 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_into, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, + 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, - [134047] = 3, + [119553] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3339), 2, + ACTIONS(4510), 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, - ACTIONS(3337), 38, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(4508), 23, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_num_lit_token1, + 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_cl, - 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_into, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, + 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, - [134095] = 3, + [119600] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3339), 2, + ACTIONS(4194), 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, - ACTIONS(3337), 38, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(4192), 23, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_num_lit_token1, + 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_cl, - 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_into, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, + 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, - [134143] = 3, + [119647] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3335), 2, + ACTIONS(4158), 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, - ACTIONS(3333), 38, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(4156), 23, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_num_lit_token1, + 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_cl, - 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_into, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, + 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, - [134191] = 3, + [119694] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3347), 2, + ACTIONS(4166), 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, - ACTIONS(3345), 38, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(4164), 23, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_num_lit_token1, + 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_cl, - 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_into, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, + 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, - [134239] = 3, + [119741] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3351), 2, + ACTIONS(4402), 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, - ACTIONS(3349), 38, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(4400), 23, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_num_lit_token1, + 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_cl, - 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_into, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, + 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, - [134287] = 3, + [119788] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3355), 2, + ACTIONS(4162), 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, - ACTIONS(3353), 38, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(4160), 23, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_num_lit_token1, + 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_cl, - 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_into, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, + 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, - [134335] = 3, + [119835] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3435), 2, + ACTIONS(4506), 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, - ACTIONS(3433), 38, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(4504), 23, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_num_lit_token1, + 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_cl, - 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_into, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, + 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, - [134383] = 3, + [119882] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3335), 2, + ACTIONS(4486), 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, - ACTIONS(3333), 38, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(4484), 23, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_num_lit_token1, + 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_cl, - 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_into, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, + 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, - [134431] = 3, + [119929] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3331), 2, + ACTIONS(4326), 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, - ACTIONS(3329), 38, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(4324), 23, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_num_lit_token1, + 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_cl, - 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_into, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, + 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, - [134479] = 3, + [119976] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3327), 2, + ACTIONS(4154), 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, - ACTIONS(3325), 38, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(4152), 23, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_num_lit_token1, + 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_cl, - 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_into, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, + 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, - [134527] = 3, + [120023] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3323), 2, + ACTIONS(4150), 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, - ACTIONS(3321), 38, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(4148), 23, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_num_lit_token1, + 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_cl, - 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_into, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, + 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, - [134575] = 3, + [120070] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3311), 2, + ACTIONS(4170), 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, - ACTIONS(3309), 38, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(4168), 23, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_num_lit_token1, + 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_cl, - 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_into, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, + 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, - [134623] = 3, + [120117] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3307), 2, + ACTIONS(4330), 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, - ACTIONS(3305), 38, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(4328), 23, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_num_lit_token1, + 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_cl, - 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_into, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, + 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, - [134671] = 3, + [120164] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3311), 2, + ACTIONS(4346), 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, - ACTIONS(3309), 38, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(4344), 23, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_num_lit_token1, + 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_cl, - 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_into, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, + 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, - [134719] = 3, + [120211] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3307), 2, + ACTIONS(4182), 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, - ACTIONS(3305), 38, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(4180), 23, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_num_lit_token1, + 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_cl, - 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_into, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, + 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, - [134767] = 3, + [120258] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3303), 2, + ACTIONS(4186), 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, - ACTIONS(3301), 38, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(4184), 23, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_num_lit_token1, + 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_cl, - 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_into, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, + 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, - [134815] = 3, + [120305] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3299), 2, + ACTIONS(4190), 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, - ACTIONS(3297), 38, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(4188), 23, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_num_lit_token1, + 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_cl, - 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_into, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, + 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, - [134863] = 9, + [120352] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(355), 1, - anon_sym_lambda, - ACTIONS(3910), 1, - anon_sym_cl, - ACTIONS(3912), 1, - anon_sym_loop, - STATE(157), 1, - sym_defun_header, - STATE(710), 1, - sym_defun_keyword, - ACTIONS(353), 4, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - ACTIONS(3908), 9, + ACTIONS(4354), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -118112,7 +115517,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(3906), 22, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(4352), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -118131,1154 +115543,1203 @@ static uint16_t ts_small_parse_table[] = { 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, - [134923] = 3, + [120399] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3063), 2, + ACTIONS(4498), 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, - ACTIONS(3061), 38, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(4496), 23, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_num_lit_token1, + 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_cl, - 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_into, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, + 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, - [134971] = 3, + [120446] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3063), 2, + ACTIONS(4366), 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, - ACTIONS(3061), 38, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(4364), 23, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_num_lit_token1, + 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_cl, - 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_into, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, + 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, - [135019] = 3, + [120493] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3279), 2, + ACTIONS(4202), 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, - ACTIONS(3277), 38, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(4200), 23, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_num_lit_token1, + 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, + [120540] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4210), 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, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - 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_into, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(4208), 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_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, - [135067] = 3, + [120587] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3275), 2, + ACTIONS(4214), 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, - ACTIONS(3273), 38, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(4212), 23, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_num_lit_token1, + 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_cl, - 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_into, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, + 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, - [135115] = 3, + [120634] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3271), 2, + ACTIONS(4222), 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, - ACTIONS(3269), 38, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(4220), 23, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_num_lit_token1, + 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_cl, - 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_into, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, + 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, - [135163] = 3, + [120681] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3267), 2, + ACTIONS(4226), 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, - ACTIONS(3265), 38, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(4224), 23, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_num_lit_token1, + 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_cl, - 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_into, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, + 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, - [135211] = 3, + [120728] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3259), 2, + ACTIONS(4238), 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, - ACTIONS(3257), 38, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(4236), 23, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_num_lit_token1, + 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_cl, - 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_into, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, + 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, - [135259] = 3, + [120775] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3255), 2, + ACTIONS(4242), 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, - ACTIONS(3253), 38, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(4240), 23, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_num_lit_token1, + 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_cl, - 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_into, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, + 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, - [135307] = 3, + [120822] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3235), 2, + ACTIONS(4246), 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, - ACTIONS(3233), 38, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(4244), 23, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_num_lit_token1, + 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_cl, - 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_into, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, + 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, - [135355] = 3, + [120869] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3231), 2, + ACTIONS(4250), 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, - ACTIONS(3229), 38, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(4248), 23, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_num_lit_token1, + 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_cl, - 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_into, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, + 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, - [135403] = 3, + [120916] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3227), 2, + ACTIONS(4254), 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, - ACTIONS(3225), 38, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(4252), 23, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_num_lit_token1, + 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_cl, - 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_into, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, + 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, - [135451] = 3, + [120963] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3223), 2, + ACTIONS(4258), 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, - ACTIONS(3221), 38, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(4256), 23, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_num_lit_token1, + 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_cl, - 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_into, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, + 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, - [135499] = 3, + [121010] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3219), 2, + ACTIONS(4266), 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, - ACTIONS(3217), 38, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(4264), 23, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_num_lit_token1, + 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_cl, - 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_into, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, + 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, - [135547] = 3, + [121057] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3215), 2, + ACTIONS(4270), 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, - ACTIONS(3213), 38, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(4268), 23, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_num_lit_token1, + 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_cl, - 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_into, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, + 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, - [135595] = 3, + [121104] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3207), 2, + ACTIONS(4278), 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, - ACTIONS(3205), 38, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(4276), 23, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_num_lit_token1, + 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_cl, - 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_into, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, + 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, - [135643] = 3, + [121151] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3203), 2, + ACTIONS(4366), 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, - ACTIONS(3201), 38, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(4364), 23, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_num_lit_token1, + 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_cl, - 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_into, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, + 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, - [135691] = 3, + [121198] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3199), 2, + ACTIONS(4358), 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, - ACTIONS(3197), 38, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(4356), 23, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_num_lit_token1, + 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_cl, - 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_into, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, + 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, - [135739] = 3, + [121245] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3195), 2, + ACTIONS(4502), 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, - ACTIONS(3193), 38, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(4500), 23, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_num_lit_token1, + 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_cl, - 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_into, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, + 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, - [135787] = 3, + [121292] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3191), 2, + ACTIONS(4362), 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, - ACTIONS(3189), 38, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(4360), 23, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_num_lit_token1, + 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_cl, - 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_into, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, + 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, - [135835] = 3, + [121339] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3187), 2, + ACTIONS(4314), 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, - ACTIONS(3185), 38, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(4312), 23, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_num_lit_token1, + 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_cl, - 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_into, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, + 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, - [135883] = 3, + [121386] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3183), 2, + ACTIONS(4374), 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, - ACTIONS(3181), 38, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(4372), 23, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_num_lit_token1, + 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_cl, - 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_into, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, + 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, - [135931] = 3, + [121433] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3159), 2, + ACTIONS(4370), 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, - ACTIONS(3157), 38, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(4368), 23, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_num_lit_token1, + 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_cl, - 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_into, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, + 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, - [135979] = 3, + [121480] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3155), 2, + ACTIONS(4370), 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, - ACTIONS(3153), 38, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(4368), 23, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_num_lit_token1, + 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_cl, - 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_into, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, + 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, - [136027] = 3, + [121527] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3151), 2, + ACTIONS(4382), 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, - ACTIONS(3149), 38, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(4380), 23, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_num_lit_token1, + 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_cl, - 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_into, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, + 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, - [136075] = 3, + [121574] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3083), 2, + ACTIONS(4506), 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, - ACTIONS(3081), 38, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(4504), 23, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_num_lit_token1, + 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_cl, - 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_into, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, + 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, - [136123] = 9, + [121621] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(355), 1, - anon_sym_lambda, - ACTIONS(3914), 1, + ACTIONS(4482), 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, + anon_sym_COMMA, + sym_fancy_literal, anon_sym_cl, - ACTIONS(3916), 1, anon_sym_loop, - STATE(151), 1, - sym_defun_header, - STATE(710), 1, - sym_defun_keyword, - ACTIONS(353), 4, anon_sym_defun, anon_sym_defmacro, anon_sym_defgeneric, anon_sym_defmethod, - ACTIONS(3908), 9, + anon_sym_lambda, + ACTIONS(4480), 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_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, + [121668] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4398), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -119288,7 +116749,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(3906), 22, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(4396), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -119307,524 +116775,499 @@ static uint16_t ts_small_parse_table[] = { 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, - [136183] = 3, + [121715] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3143), 2, + ACTIONS(4406), 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, - ACTIONS(3141), 38, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(4404), 23, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_num_lit_token1, + 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_cl, - 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_into, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, + 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, - [136231] = 3, + [121762] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3139), 2, + ACTIONS(4478), 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, - ACTIONS(3137), 38, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(4476), 23, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_num_lit_token1, + 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_cl, - 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_into, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, + 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, - [136279] = 3, + [121809] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3135), 2, + ACTIONS(4474), 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, - ACTIONS(3133), 38, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(4472), 23, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_num_lit_token1, + 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_cl, - 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_into, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, + 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, - [136327] = 3, + [121856] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3131), 2, + ACTIONS(4502), 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, - ACTIONS(3129), 38, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(4500), 23, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_num_lit_token1, + 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_cl, - 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_into, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, + 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, - [136375] = 3, + [121903] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3127), 2, + ACTIONS(4410), 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, - ACTIONS(3125), 38, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(4408), 23, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_num_lit_token1, + 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_cl, - 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_into, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, + 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, - [136423] = 3, + [121950] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3123), 2, + ACTIONS(4506), 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, - ACTIONS(3121), 38, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(4504), 23, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_num_lit_token1, + 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_cl, - 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_into, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, + 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, - [136471] = 3, + [121997] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3119), 2, + ACTIONS(4470), 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, - ACTIONS(3117), 38, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(4468), 23, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_num_lit_token1, + 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_cl, - 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_into, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, + 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, - [136519] = 3, + [122044] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3115), 2, + ACTIONS(4302), 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, - ACTIONS(3113), 38, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(4300), 23, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_num_lit_token1, + 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_cl, - 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_into, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, + 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, - [136567] = 3, + [122091] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3111), 2, + ACTIONS(4418), 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, - ACTIONS(3109), 38, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(4416), 23, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_num_lit_token1, + 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_cl, - 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_into, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, + 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, - [136615] = 3, + [122138] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3083), 2, + ACTIONS(4466), 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, - ACTIONS(3081), 38, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(4464), 23, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_num_lit_token1, + 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_cl, - 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_into, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, + 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, - [136663] = 3, + [122185] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3087), 2, + ACTIONS(4426), 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, - ACTIONS(3085), 38, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(4424), 23, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_num_lit_token1, + 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_cl, - 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_into, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, + 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, - [136711] = 9, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(355), 1, - anon_sym_lambda, - ACTIONS(3918), 1, - anon_sym_cl, - ACTIONS(3920), 1, - anon_sym_loop, - STATE(56), 1, - sym_defun_header, - STATE(710), 1, - sym_defun_keyword, - ACTIONS(353), 4, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - ACTIONS(3908), 9, + [122232] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4462), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -119834,7 +117277,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(3906), 22, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(4460), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -119853,164 +117303,147 @@ static uint16_t ts_small_parse_table[] = { 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, - [136771] = 3, + [122279] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3083), 2, + ACTIONS(4430), 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, - ACTIONS(3081), 38, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(4428), 23, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_num_lit_token1, + 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_cl, - 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_into, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, + 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, - [136819] = 3, + [122326] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3071), 2, + ACTIONS(4458), 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, - ACTIONS(3069), 38, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(4456), 23, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_num_lit_token1, + 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_cl, - 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_into, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, + 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, - [136867] = 3, + [122373] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3075), 2, + ACTIONS(4430), 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, - ACTIONS(3073), 38, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(4428), 23, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_num_lit_token1, + 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_cl, - 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_into, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, + 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, - [136915] = 9, + [122420] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(355), 1, - anon_sym_lambda, - ACTIONS(3922), 1, - anon_sym_cl, - ACTIONS(3924), 1, - anon_sym_loop, - STATE(107), 1, - sym_defun_header, - STATE(710), 1, - sym_defun_keyword, - ACTIONS(353), 4, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - ACTIONS(3908), 9, + ACTIONS(4454), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -120020,7 +117453,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(3906), 22, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(4452), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -120039,74 +117479,59 @@ static uint16_t ts_small_parse_table[] = { 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, - [136975] = 3, + [122467] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3431), 2, + ACTIONS(4450), 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, - ACTIONS(3429), 38, + anon_sym_COMMA, + sym_fancy_literal, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(4448), 23, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_num_lit_token1, + 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_cl, - 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_into, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, + 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, - [137023] = 9, + [122514] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(355), 1, - anon_sym_lambda, - ACTIONS(3926), 1, - anon_sym_cl, - ACTIONS(3928), 1, - anon_sym_loop, - STATE(154), 1, - sym_defun_header, - STATE(710), 1, - sym_defun_keyword, - ACTIONS(353), 4, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - ACTIONS(3908), 9, + ACTIONS(4446), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -120116,7 +117541,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(3906), 22, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(4444), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -120135,29 +117567,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [137083] = 9, + [122561] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(355), 1, - anon_sym_lambda, - ACTIONS(3930), 1, - anon_sym_cl, - ACTIONS(3932), 1, - anon_sym_loop, - STATE(46), 1, - sym_defun_header, - STATE(710), 1, - sym_defun_keyword, - ACTIONS(353), 4, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - ACTIONS(3908), 9, + ACTIONS(4422), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -120167,7 +117585,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(3906), 22, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(4420), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -120186,29 +117611,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [137143] = 9, + [122608] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(355), 1, - anon_sym_lambda, - ACTIONS(3934), 1, - anon_sym_cl, - ACTIONS(3936), 1, - anon_sym_loop, - STATE(72), 1, - sym_defun_header, - STATE(710), 1, - sym_defun_keyword, - ACTIONS(353), 4, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - ACTIONS(3908), 9, + ACTIONS(4374), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -120218,7 +117629,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(3906), 22, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(4372), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -120237,29 +117655,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [137203] = 9, + [122655] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(355), 1, - anon_sym_lambda, - ACTIONS(3938), 1, - anon_sym_cl, - ACTIONS(3940), 1, - anon_sym_loop, - STATE(83), 1, - sym_defun_header, - STATE(710), 1, - sym_defun_keyword, - ACTIONS(353), 4, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - ACTIONS(3908), 9, + ACTIONS(4146), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -120269,7 +117673,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(3906), 22, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(4144), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -120288,29 +117699,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [137263] = 9, + [122702] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(355), 1, - anon_sym_lambda, - ACTIONS(3942), 1, - anon_sym_cl, - ACTIONS(3944), 1, - anon_sym_loop, - STATE(103), 1, - sym_defun_header, - STATE(710), 1, - sym_defun_keyword, - ACTIONS(353), 4, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - ACTIONS(3908), 9, + ACTIONS(4394), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -120320,7 +117717,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(3906), 22, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(4392), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -120339,29 +117743,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [137323] = 9, + [122749] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(355), 1, - anon_sym_lambda, - ACTIONS(3946), 1, - anon_sym_cl, - ACTIONS(3948), 1, - anon_sym_loop, - STATE(124), 1, - sym_defun_header, - STATE(710), 1, - sym_defun_keyword, - ACTIONS(353), 4, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - ACTIONS(3908), 9, + ACTIONS(4418), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -120371,7 +117761,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_QMARK, anon_sym_COMMA, sym_fancy_literal, - ACTIONS(3906), 22, + anon_sym_cl, + anon_sym_loop, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + anon_sym_lambda, + ACTIONS(4416), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -120390,16 +117787,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [137383] = 4, + [122796] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3950), 1, - aux_sym_num_lit_token2, - ACTIONS(3057), 16, + ACTIONS(4426), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -120416,7 +117812,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(3055), 22, + ACTIONS(4424), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -120435,14 +117831,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [137432] = 3, + [122843] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3419), 16, + ACTIONS(4390), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -120459,7 +117856,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(3417), 22, + ACTIONS(4388), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -120478,14 +117875,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [137478] = 3, + [122890] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3127), 16, + ACTIONS(4386), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -120502,7 +117900,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(3125), 22, + ACTIONS(4384), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -120521,14 +117919,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [137524] = 3, + [122937] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3191), 16, + ACTIONS(4378), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -120545,7 +117944,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(3189), 22, + ACTIONS(4376), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -120564,70 +117963,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [137570] = 16, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(3952), 1, - anon_sym_POUND, - ACTIONS(3954), 1, - aux_sym_num_lit_token1, - ACTIONS(3958), 1, - anon_sym_DQUOTE, - ACTIONS(3962), 1, - anon_sym_SQUOTE, - ACTIONS(3964), 1, - anon_sym_COMMA, - ACTIONS(3970), 1, - anon_sym_SLASH, - STATE(1660), 1, - sym_format_prefix_parameters, - STATE(1864), 1, - sym_format_modifiers, - STATE(2268), 1, - sym__format_token, - STATE(2400), 1, - aux_sym_format_modifiers_repeat1, - STATE(3343), 1, - sym_format_directive_type, - ACTIONS(3956), 2, - anon_sym_COLON, - anon_sym_AT, - ACTIONS(3966), 2, - anon_sym_v, - anon_sym_V, - ACTIONS(3968), 2, - anon_sym_AT_COLON, - anon_sym_COLON_AT, - ACTIONS(3960), 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, - [137642] = 3, + [122984] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3195), 16, + ACTIONS(4486), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -120644,7 +117988,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(3193), 22, + ACTIONS(4484), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -120663,70 +118007,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [137688] = 16, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(3952), 1, - anon_sym_POUND, - ACTIONS(3954), 1, - aux_sym_num_lit_token1, - ACTIONS(3962), 1, - anon_sym_SQUOTE, - ACTIONS(3964), 1, - anon_sym_COMMA, - ACTIONS(3970), 1, - anon_sym_SLASH, - ACTIONS(3972), 1, - anon_sym_DQUOTE, - STATE(1660), 1, - sym_format_prefix_parameters, - STATE(1864), 1, - sym_format_modifiers, - STATE(2268), 1, - sym__format_token, - STATE(2400), 1, - aux_sym_format_modifiers_repeat1, - STATE(3343), 1, - sym_format_directive_type, - ACTIONS(3956), 2, - anon_sym_COLON, - anon_sym_AT, - ACTIONS(3966), 2, - anon_sym_v, - anon_sym_V, - ACTIONS(3968), 2, - anon_sym_AT_COLON, - anon_sym_COLON_AT, - ACTIONS(3960), 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, - [137760] = 3, + [123031] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3203), 16, + ACTIONS(4374), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -120743,7 +118032,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(3201), 22, + ACTIONS(4372), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -120762,14 +118051,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [137806] = 3, + [123078] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3207), 16, + ACTIONS(4430), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -120786,7 +118076,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(3205), 22, + ACTIONS(4428), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -120805,74 +118095,22 @@ static uint16_t ts_small_parse_table[] = { 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, - [137852] = 16, + [123125] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3952), 1, - anon_sym_POUND, - ACTIONS(3954), 1, - aux_sym_num_lit_token1, - ACTIONS(3962), 1, - anon_sym_SQUOTE, - ACTIONS(3964), 1, - anon_sym_COMMA, - ACTIONS(3970), 1, - anon_sym_SLASH, - ACTIONS(3974), 1, - anon_sym_DQUOTE, - STATE(1660), 1, - sym_format_prefix_parameters, - STATE(1864), 1, - sym_format_modifiers, - STATE(2268), 1, - sym__format_token, - STATE(2400), 1, - aux_sym_format_modifiers_repeat1, - STATE(3343), 1, - sym_format_directive_type, - ACTIONS(3956), 2, + ACTIONS(5031), 1, anon_sym_COLON, - anon_sym_AT, - ACTIONS(3966), 2, - anon_sym_v, - anon_sym_V, - ACTIONS(3968), 2, - anon_sym_AT_COLON, - anon_sym_COLON_AT, - ACTIONS(3960), 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, - [137924] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(3211), 16, + ACTIONS(5033), 1, + anon_sym_COLON_COLON, + ACTIONS(4342), 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, @@ -120885,11 +118123,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(3209), 22, + ACTIONS(4340), 22, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -120904,14 +118141,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [137970] = 3, + [123176] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3215), 16, + ACTIONS(4430), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -120928,7 +118166,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(3213), 22, + ACTIONS(4428), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -120947,126 +118185,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [138016] = 16, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(3952), 1, - anon_sym_POUND, - ACTIONS(3954), 1, - aux_sym_num_lit_token1, - ACTIONS(3962), 1, - anon_sym_SQUOTE, - ACTIONS(3964), 1, - anon_sym_COMMA, - ACTIONS(3970), 1, - anon_sym_SLASH, - ACTIONS(3976), 1, - anon_sym_DQUOTE, - STATE(1660), 1, - sym_format_prefix_parameters, - STATE(1864), 1, - sym_format_modifiers, - STATE(2268), 1, - sym__format_token, - STATE(2400), 1, - aux_sym_format_modifiers_repeat1, - STATE(3343), 1, - sym_format_directive_type, - ACTIONS(3956), 2, - anon_sym_COLON, - anon_sym_AT, - ACTIONS(3966), 2, - anon_sym_v, - anon_sym_V, - ACTIONS(3968), 2, - anon_sym_AT_COLON, - anon_sym_COLON_AT, - ACTIONS(3960), 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, - [138088] = 16, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(3952), 1, - anon_sym_POUND, - ACTIONS(3954), 1, - aux_sym_num_lit_token1, - ACTIONS(3962), 1, - anon_sym_SQUOTE, - ACTIONS(3964), 1, - anon_sym_COMMA, - ACTIONS(3970), 1, - anon_sym_SLASH, - ACTIONS(3978), 1, - anon_sym_DQUOTE, - STATE(1660), 1, - sym_format_prefix_parameters, - STATE(1864), 1, - sym_format_modifiers, - STATE(2268), 1, - sym__format_token, - STATE(2400), 1, - aux_sym_format_modifiers_repeat1, - STATE(3343), 1, - sym_format_directive_type, - ACTIONS(3956), 2, - anon_sym_COLON, - anon_sym_AT, - ACTIONS(3966), 2, - anon_sym_v, - anon_sym_V, - ACTIONS(3968), 2, - anon_sym_AT_COLON, - anon_sym_COLON_AT, - ACTIONS(3960), 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, - [138160] = 3, + [123223] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3219), 16, + ACTIONS(4502), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -121083,7 +118210,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(3217), 22, + ACTIONS(4500), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -121102,14 +118229,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [138206] = 3, + [123270] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3223), 16, + ACTIONS(4350), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -121126,7 +118254,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(3221), 22, + ACTIONS(4348), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -121145,14 +118273,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [138252] = 3, + [123317] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3227), 16, + ACTIONS(4342), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -121169,7 +118298,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(3225), 22, + ACTIONS(4340), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -121188,14 +118317,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [138298] = 3, + [123364] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3231), 16, + ACTIONS(4490), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -121212,7 +118342,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(3229), 22, + ACTIONS(4488), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -121231,14 +118361,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [138344] = 3, + [123411] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3235), 16, + ACTIONS(4338), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -121255,7 +118386,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(3233), 22, + ACTIONS(4336), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -121274,14 +118405,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [138390] = 3, + [123458] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3375), 16, + ACTIONS(4334), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -121298,7 +118430,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(3373), 22, + ACTIONS(4332), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -121317,18 +118449,22 @@ static uint16_t ts_small_parse_table[] = { 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, - [138436] = 3, + [123505] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3239), 16, + ACTIONS(5031), 1, + anon_sym_COLON, + ACTIONS(5033), 1, + anon_sym_COLON_COLON, + ACTIONS(4306), 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, @@ -121341,11 +118477,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(3237), 22, + ACTIONS(4304), 22, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -121360,70 +118495,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [138482] = 16, + [123556] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3952), 1, - anon_sym_POUND, - ACTIONS(3954), 1, - aux_sym_num_lit_token1, - ACTIONS(3962), 1, - anon_sym_SQUOTE, - ACTIONS(3964), 1, - anon_sym_COMMA, - ACTIONS(3970), 1, - anon_sym_SLASH, - ACTIONS(3980), 1, - anon_sym_DQUOTE, - STATE(1660), 1, - sym_format_prefix_parameters, - STATE(1864), 1, - sym_format_modifiers, - STATE(2268), 1, - sym__format_token, - STATE(2400), 1, - aux_sym_format_modifiers_repeat1, - STATE(3343), 1, - sym_format_directive_type, - ACTIONS(3956), 2, - anon_sym_COLON, - anon_sym_AT, - ACTIONS(3966), 2, - anon_sym_v, - anon_sym_V, - ACTIONS(3968), 2, - anon_sym_AT_COLON, - anon_sym_COLON_AT, - ACTIONS(3960), 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, - [138554] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(3183), 16, + ACTIONS(4514), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -121440,7 +118520,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(3181), 22, + ACTIONS(4512), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -121459,14 +118539,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [138600] = 3, + [123603] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3179), 16, + ACTIONS(4494), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -121483,7 +118564,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(3177), 22, + ACTIONS(4492), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -121502,14 +118583,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [138646] = 3, + [123650] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3243), 16, + ACTIONS(4442), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -121526,7 +118608,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(3241), 22, + ACTIONS(4440), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -121545,14 +118627,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [138692] = 3, + [123697] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3175), 16, + ACTIONS(4498), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -121569,7 +118652,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(3173), 22, + ACTIONS(4496), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -121588,70 +118671,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [138738] = 16, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(3952), 1, - anon_sym_POUND, - ACTIONS(3954), 1, - aux_sym_num_lit_token1, - ACTIONS(3962), 1, - anon_sym_SQUOTE, - ACTIONS(3964), 1, - anon_sym_COMMA, - ACTIONS(3970), 1, - anon_sym_SLASH, - ACTIONS(3982), 1, - anon_sym_DQUOTE, - STATE(1660), 1, - sym_format_prefix_parameters, - STATE(1864), 1, - sym_format_modifiers, - STATE(2268), 1, - sym__format_token, - STATE(2400), 1, - aux_sym_format_modifiers_repeat1, - STATE(3343), 1, - sym_format_directive_type, - ACTIONS(3956), 2, - anon_sym_COLON, - anon_sym_AT, - ACTIONS(3966), 2, - anon_sym_v, - anon_sym_V, - ACTIONS(3968), 2, - anon_sym_AT_COLON, - anon_sym_COLON_AT, - ACTIONS(3960), 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, - [138810] = 3, + [123744] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3423), 16, + ACTIONS(4442), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -121668,7 +118696,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(3421), 22, + ACTIONS(4440), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -121687,14 +118715,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [138856] = 3, + [123791] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3423), 16, + ACTIONS(4262), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -121711,7 +118740,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(3421), 22, + ACTIONS(4260), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -121730,14 +118759,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [138902] = 3, + [123838] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3419), 16, + ACTIONS(4502), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -121754,7 +118784,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(3417), 22, + ACTIONS(4500), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -121773,14 +118803,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [138948] = 3, + [123885] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3415), 16, + ACTIONS(4438), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -121797,7 +118828,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(3413), 22, + ACTIONS(4436), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -121816,14 +118847,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [138994] = 3, + [123932] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3411), 16, + ACTIONS(4434), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -121840,7 +118872,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(3409), 22, + ACTIONS(4432), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -121859,14 +118891,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [139040] = 3, + [123979] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3411), 16, + ACTIONS(4506), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -121883,7 +118916,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(3409), 22, + ACTIONS(4504), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -121902,14 +118935,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [139086] = 3, + [124026] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3171), 16, + ACTIONS(4198), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -121926,7 +118960,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(3169), 22, + ACTIONS(4196), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -121945,14 +118979,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [139132] = 3, + [124073] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3415), 16, + ACTIONS(4442), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -121969,7 +119004,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(3413), 22, + ACTIONS(4440), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -121988,14 +119023,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [139178] = 3, + [124120] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3411), 16, + ACTIONS(4442), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -122012,7 +119048,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(3409), 22, + ACTIONS(4440), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -122031,14 +119067,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [139224] = 3, + [124167] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3411), 16, + ACTIONS(4438), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -122055,7 +119092,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(3409), 22, + ACTIONS(4436), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -122074,14 +119111,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [139270] = 3, + [124214] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3407), 16, + ACTIONS(4434), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -122098,7 +119136,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(3405), 22, + ACTIONS(4432), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -122117,14 +119155,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [139316] = 3, + [124261] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3403), 16, + ACTIONS(4274), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -122141,7 +119180,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(3401), 22, + ACTIONS(4272), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -122160,14 +119199,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [139362] = 3, + [124308] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3399), 16, + ACTIONS(4274), 16, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -122184,7 +119224,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_defgeneric, anon_sym_defmethod, anon_sym_lambda, - ACTIONS(3397), 22, + ACTIONS(4272), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -122203,573 +119243,1189 @@ static uint16_t ts_small_parse_table[] = { 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, - [139408] = 3, + [124355] = 16, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(5035), 1, + anon_sym_POUND, + ACTIONS(5037), 1, + aux_sym_num_lit_token1, + ACTIONS(5041), 1, + anon_sym_DQUOTE, + ACTIONS(5045), 1, + anon_sym_SQUOTE, + ACTIONS(5047), 1, + anon_sym_COMMA, + ACTIONS(5053), 1, + anon_sym_SLASH, + STATE(1712), 1, + sym_format_prefix_parameters, + STATE(1956), 1, + sym_format_modifiers, + STATE(2291), 1, + sym__format_token, + STATE(2420), 1, + aux_sym_format_modifiers_repeat1, + STATE(3347), 1, + sym_format_directive_type, + ACTIONS(5039), 2, + anon_sym_COLON, + anon_sym_AT, + ACTIONS(5049), 2, + anon_sym_v, + anon_sym_V, + ACTIONS(5051), 2, + anon_sym_AT_COLON, + anon_sym_COLON_AT, + ACTIONS(5043), 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, + [124427] = 16, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(5035), 1, + anon_sym_POUND, + ACTIONS(5037), 1, + aux_sym_num_lit_token1, + ACTIONS(5045), 1, + anon_sym_SQUOTE, + ACTIONS(5047), 1, + anon_sym_COMMA, + ACTIONS(5053), 1, + anon_sym_SLASH, + ACTIONS(5055), 1, + anon_sym_DQUOTE, + STATE(1712), 1, + sym_format_prefix_parameters, + STATE(1956), 1, + sym_format_modifiers, + STATE(2291), 1, + sym__format_token, + STATE(2420), 1, + aux_sym_format_modifiers_repeat1, + STATE(3347), 1, + sym_format_directive_type, + ACTIONS(5039), 2, + anon_sym_COLON, + anon_sym_AT, + ACTIONS(5049), 2, + anon_sym_v, + anon_sym_V, + ACTIONS(5051), 2, + anon_sym_AT_COLON, + anon_sym_COLON_AT, + ACTIONS(5043), 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, + [124499] = 16, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(5035), 1, + anon_sym_POUND, + ACTIONS(5037), 1, + aux_sym_num_lit_token1, + ACTIONS(5045), 1, + anon_sym_SQUOTE, + ACTIONS(5047), 1, + anon_sym_COMMA, + ACTIONS(5053), 1, + anon_sym_SLASH, + ACTIONS(5057), 1, + anon_sym_DQUOTE, + STATE(1712), 1, + sym_format_prefix_parameters, + STATE(1956), 1, + sym_format_modifiers, + STATE(2291), 1, + sym__format_token, + STATE(2420), 1, + aux_sym_format_modifiers_repeat1, + STATE(3347), 1, + sym_format_directive_type, + ACTIONS(5039), 2, + anon_sym_COLON, + anon_sym_AT, + ACTIONS(5049), 2, + anon_sym_v, + anon_sym_V, + ACTIONS(5051), 2, + anon_sym_AT_COLON, + anon_sym_COLON_AT, + ACTIONS(5043), 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, + [124571] = 16, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(5035), 1, + anon_sym_POUND, + ACTIONS(5037), 1, + aux_sym_num_lit_token1, + ACTIONS(5045), 1, + anon_sym_SQUOTE, + ACTIONS(5047), 1, + anon_sym_COMMA, + ACTIONS(5053), 1, + anon_sym_SLASH, + ACTIONS(5059), 1, + anon_sym_DQUOTE, + STATE(1712), 1, + sym_format_prefix_parameters, + STATE(1956), 1, + sym_format_modifiers, + STATE(2291), 1, + sym__format_token, + STATE(2420), 1, + aux_sym_format_modifiers_repeat1, + STATE(3347), 1, + sym_format_directive_type, + ACTIONS(5039), 2, + anon_sym_COLON, + anon_sym_AT, + ACTIONS(5049), 2, + anon_sym_v, + anon_sym_V, + ACTIONS(5051), 2, + anon_sym_AT_COLON, + anon_sym_COLON_AT, + ACTIONS(5043), 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, + [124643] = 16, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(5035), 1, + anon_sym_POUND, + ACTIONS(5037), 1, + aux_sym_num_lit_token1, + ACTIONS(5045), 1, + anon_sym_SQUOTE, + ACTIONS(5047), 1, + anon_sym_COMMA, + ACTIONS(5053), 1, + anon_sym_SLASH, + ACTIONS(5061), 1, + anon_sym_DQUOTE, + STATE(1712), 1, + sym_format_prefix_parameters, + STATE(1956), 1, + sym_format_modifiers, + STATE(2291), 1, + sym__format_token, + STATE(2420), 1, + aux_sym_format_modifiers_repeat1, + STATE(3347), 1, + sym_format_directive_type, + ACTIONS(5039), 2, + anon_sym_COLON, + anon_sym_AT, + ACTIONS(5049), 2, + anon_sym_v, + anon_sym_V, + ACTIONS(5051), 2, + anon_sym_AT_COLON, + anon_sym_COLON_AT, + ACTIONS(5043), 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, + [124715] = 16, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(5035), 1, + anon_sym_POUND, + ACTIONS(5037), 1, + aux_sym_num_lit_token1, + ACTIONS(5045), 1, + anon_sym_SQUOTE, + ACTIONS(5047), 1, + anon_sym_COMMA, + ACTIONS(5053), 1, + anon_sym_SLASH, + ACTIONS(5063), 1, + anon_sym_DQUOTE, + STATE(1712), 1, + sym_format_prefix_parameters, + STATE(1956), 1, + sym_format_modifiers, + STATE(2291), 1, + sym__format_token, + STATE(2420), 1, + aux_sym_format_modifiers_repeat1, + STATE(3347), 1, + sym_format_directive_type, + ACTIONS(5039), 2, + anon_sym_COLON, + anon_sym_AT, + ACTIONS(5049), 2, + anon_sym_v, + anon_sym_V, + ACTIONS(5051), 2, + anon_sym_AT_COLON, + anon_sym_COLON_AT, + ACTIONS(5043), 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, + [124787] = 16, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(5035), 1, + anon_sym_POUND, + ACTIONS(5037), 1, + aux_sym_num_lit_token1, + ACTIONS(5045), 1, + anon_sym_SQUOTE, + ACTIONS(5047), 1, + anon_sym_COMMA, + ACTIONS(5053), 1, + anon_sym_SLASH, + ACTIONS(5065), 1, + anon_sym_DQUOTE, + STATE(1712), 1, + sym_format_prefix_parameters, + STATE(1956), 1, + sym_format_modifiers, + STATE(2291), 1, + sym__format_token, + STATE(2420), 1, + aux_sym_format_modifiers_repeat1, + STATE(3347), 1, + sym_format_directive_type, + ACTIONS(5039), 2, + anon_sym_COLON, + anon_sym_AT, + ACTIONS(5049), 2, + anon_sym_v, + anon_sym_V, + ACTIONS(5051), 2, + anon_sym_AT_COLON, + anon_sym_COLON_AT, + ACTIONS(5043), 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, + [124859] = 16, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(5035), 1, + anon_sym_POUND, + ACTIONS(5037), 1, + aux_sym_num_lit_token1, + ACTIONS(5045), 1, + anon_sym_SQUOTE, + ACTIONS(5047), 1, + anon_sym_COMMA, + ACTIONS(5053), 1, + anon_sym_SLASH, + ACTIONS(5067), 1, + anon_sym_DQUOTE, + STATE(1712), 1, + sym_format_prefix_parameters, + STATE(1956), 1, + sym_format_modifiers, + STATE(2291), 1, + sym__format_token, + STATE(2420), 1, + aux_sym_format_modifiers_repeat1, + STATE(3347), 1, + sym_format_directive_type, + ACTIONS(5039), 2, + anon_sym_COLON, + anon_sym_AT, + ACTIONS(5049), 2, + anon_sym_v, + anon_sym_V, + ACTIONS(5051), 2, + anon_sym_AT_COLON, + anon_sym_COLON_AT, + ACTIONS(5043), 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, + [124931] = 16, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3395), 16, + ACTIONS(5035), 1, anon_sym_POUND, - anon_sym_DOT, + ACTIONS(5037), 1, aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, + ACTIONS(5045), 1, + anon_sym_SQUOTE, + ACTIONS(5047), 1, anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(3393), 22, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, + ACTIONS(5053), 1, + anon_sym_SLASH, + ACTIONS(5069), 1, 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, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [139454] = 3, + STATE(1712), 1, + sym_format_prefix_parameters, + STATE(1956), 1, + sym_format_modifiers, + STATE(2291), 1, + sym__format_token, + STATE(2420), 1, + aux_sym_format_modifiers_repeat1, + STATE(3347), 1, + sym_format_directive_type, + ACTIONS(5039), 2, + anon_sym_COLON, + anon_sym_AT, + ACTIONS(5049), 2, + anon_sym_v, + anon_sym_V, + ACTIONS(5051), 2, + anon_sym_AT_COLON, + anon_sym_COLON_AT, + ACTIONS(5043), 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, + [125003] = 16, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3399), 16, + ACTIONS(5035), 1, anon_sym_POUND, - anon_sym_DOT, + ACTIONS(5037), 1, aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, + ACTIONS(5045), 1, + anon_sym_SQUOTE, + ACTIONS(5047), 1, anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(3397), 22, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, + ACTIONS(5053), 1, + anon_sym_SLASH, + ACTIONS(5071), 1, 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, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [139500] = 3, + STATE(1712), 1, + sym_format_prefix_parameters, + STATE(1956), 1, + sym_format_modifiers, + STATE(2291), 1, + sym__format_token, + STATE(2420), 1, + aux_sym_format_modifiers_repeat1, + STATE(3347), 1, + sym_format_directive_type, + ACTIONS(5039), 2, + anon_sym_COLON, + anon_sym_AT, + ACTIONS(5049), 2, + anon_sym_v, + anon_sym_V, + ACTIONS(5051), 2, + anon_sym_AT_COLON, + anon_sym_COLON_AT, + ACTIONS(5043), 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, + [125075] = 16, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3395), 16, + ACTIONS(5035), 1, anon_sym_POUND, - anon_sym_DOT, + ACTIONS(5037), 1, aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, + ACTIONS(5045), 1, + anon_sym_SQUOTE, + ACTIONS(5047), 1, anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(3393), 22, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, + ACTIONS(5053), 1, + anon_sym_SLASH, + ACTIONS(5073), 1, 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, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [139546] = 3, + STATE(1712), 1, + sym_format_prefix_parameters, + STATE(1956), 1, + sym_format_modifiers, + STATE(2291), 1, + sym__format_token, + STATE(2420), 1, + aux_sym_format_modifiers_repeat1, + STATE(3347), 1, + sym_format_directive_type, + ACTIONS(5039), 2, + anon_sym_COLON, + anon_sym_AT, + ACTIONS(5049), 2, + anon_sym_v, + anon_sym_V, + ACTIONS(5051), 2, + anon_sym_AT_COLON, + anon_sym_COLON_AT, + ACTIONS(5043), 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, + [125147] = 16, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3387), 16, + ACTIONS(5035), 1, anon_sym_POUND, - anon_sym_DOT, + ACTIONS(5037), 1, aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, + ACTIONS(5045), 1, + anon_sym_SQUOTE, + ACTIONS(5047), 1, anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(3385), 22, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, + ACTIONS(5053), 1, + anon_sym_SLASH, + ACTIONS(5075), 1, 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, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [139592] = 3, + STATE(1712), 1, + sym_format_prefix_parameters, + STATE(1956), 1, + sym_format_modifiers, + STATE(2291), 1, + sym__format_token, + STATE(2420), 1, + aux_sym_format_modifiers_repeat1, + STATE(3347), 1, + sym_format_directive_type, + ACTIONS(5039), 2, + anon_sym_COLON, + anon_sym_AT, + ACTIONS(5049), 2, + anon_sym_v, + anon_sym_V, + ACTIONS(5051), 2, + anon_sym_AT_COLON, + anon_sym_COLON_AT, + ACTIONS(5043), 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, + [125219] = 16, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3403), 16, + ACTIONS(5035), 1, anon_sym_POUND, - anon_sym_DOT, + ACTIONS(5037), 1, aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, + ACTIONS(5045), 1, + anon_sym_SQUOTE, + ACTIONS(5047), 1, anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(3401), 22, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, + ACTIONS(5053), 1, + anon_sym_SLASH, + ACTIONS(5077), 1, 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, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [139638] = 3, + STATE(1712), 1, + sym_format_prefix_parameters, + STATE(1956), 1, + sym_format_modifiers, + STATE(2291), 1, + sym__format_token, + STATE(2420), 1, + aux_sym_format_modifiers_repeat1, + STATE(3347), 1, + sym_format_directive_type, + ACTIONS(5039), 2, + anon_sym_COLON, + anon_sym_AT, + ACTIONS(5049), 2, + anon_sym_v, + anon_sym_V, + ACTIONS(5051), 2, + anon_sym_AT_COLON, + anon_sym_COLON_AT, + ACTIONS(5043), 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, + [125291] = 16, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3399), 16, + ACTIONS(5035), 1, anon_sym_POUND, - anon_sym_DOT, + ACTIONS(5037), 1, aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, + ACTIONS(5045), 1, + anon_sym_SQUOTE, + ACTIONS(5047), 1, anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(3397), 22, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, + ACTIONS(5053), 1, + anon_sym_SLASH, + ACTIONS(5079), 1, 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, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [139684] = 3, + STATE(1712), 1, + sym_format_prefix_parameters, + STATE(1956), 1, + sym_format_modifiers, + STATE(2291), 1, + sym__format_token, + STATE(2420), 1, + aux_sym_format_modifiers_repeat1, + STATE(3347), 1, + sym_format_directive_type, + ACTIONS(5039), 2, + anon_sym_COLON, + anon_sym_AT, + ACTIONS(5049), 2, + anon_sym_v, + anon_sym_V, + ACTIONS(5051), 2, + anon_sym_AT_COLON, + anon_sym_COLON_AT, + ACTIONS(5043), 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, + [125363] = 16, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3395), 16, + ACTIONS(5035), 1, anon_sym_POUND, - anon_sym_DOT, + ACTIONS(5037), 1, aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, + ACTIONS(5045), 1, + anon_sym_SQUOTE, + ACTIONS(5047), 1, anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(3393), 22, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, + ACTIONS(5053), 1, + anon_sym_SLASH, + ACTIONS(5081), 1, 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, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [139730] = 3, + STATE(1712), 1, + sym_format_prefix_parameters, + STATE(1956), 1, + sym_format_modifiers, + STATE(2291), 1, + sym__format_token, + STATE(2420), 1, + aux_sym_format_modifiers_repeat1, + STATE(3347), 1, + sym_format_directive_type, + ACTIONS(5039), 2, + anon_sym_COLON, + anon_sym_AT, + ACTIONS(5049), 2, + anon_sym_v, + anon_sym_V, + ACTIONS(5051), 2, + anon_sym_AT_COLON, + anon_sym_COLON_AT, + ACTIONS(5043), 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, + [125435] = 16, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3399), 16, + ACTIONS(5035), 1, anon_sym_POUND, - anon_sym_DOT, + ACTIONS(5037), 1, aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, + ACTIONS(5045), 1, + anon_sym_SQUOTE, + ACTIONS(5047), 1, anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(3397), 22, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, + ACTIONS(5053), 1, + anon_sym_SLASH, + ACTIONS(5083), 1, 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, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [139776] = 3, + STATE(1712), 1, + sym_format_prefix_parameters, + STATE(1956), 1, + sym_format_modifiers, + STATE(2291), 1, + sym__format_token, + STATE(2420), 1, + aux_sym_format_modifiers_repeat1, + STATE(3347), 1, + sym_format_directive_type, + ACTIONS(5039), 2, + anon_sym_COLON, + anon_sym_AT, + ACTIONS(5049), 2, + anon_sym_v, + anon_sym_V, + ACTIONS(5051), 2, + anon_sym_AT_COLON, + anon_sym_COLON_AT, + ACTIONS(5043), 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, + [125507] = 16, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3395), 16, + ACTIONS(5035), 1, anon_sym_POUND, - anon_sym_DOT, + ACTIONS(5037), 1, aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, + ACTIONS(5045), 1, + anon_sym_SQUOTE, + ACTIONS(5047), 1, anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(3393), 22, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, + ACTIONS(5053), 1, + anon_sym_SLASH, + ACTIONS(5085), 1, 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, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [139822] = 3, + STATE(1712), 1, + sym_format_prefix_parameters, + STATE(1956), 1, + sym_format_modifiers, + STATE(2291), 1, + sym__format_token, + STATE(2420), 1, + aux_sym_format_modifiers_repeat1, + STATE(3347), 1, + sym_format_directive_type, + ACTIONS(5039), 2, + anon_sym_COLON, + anon_sym_AT, + ACTIONS(5049), 2, + anon_sym_v, + anon_sym_V, + ACTIONS(5051), 2, + anon_sym_AT_COLON, + anon_sym_COLON_AT, + ACTIONS(5043), 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, + [125579] = 16, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3387), 16, + ACTIONS(5035), 1, anon_sym_POUND, - anon_sym_DOT, + ACTIONS(5037), 1, aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, + ACTIONS(5045), 1, + anon_sym_SQUOTE, + ACTIONS(5047), 1, anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(3385), 22, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, + ACTIONS(5053), 1, + anon_sym_SLASH, + ACTIONS(5087), 1, 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, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [139868] = 3, + STATE(1712), 1, + sym_format_prefix_parameters, + STATE(1956), 1, + sym_format_modifiers, + STATE(2291), 1, + sym__format_token, + STATE(2420), 1, + aux_sym_format_modifiers_repeat1, + STATE(3347), 1, + sym_format_directive_type, + ACTIONS(5039), 2, + anon_sym_COLON, + anon_sym_AT, + ACTIONS(5049), 2, + anon_sym_v, + anon_sym_V, + ACTIONS(5051), 2, + anon_sym_AT_COLON, + anon_sym_COLON_AT, + ACTIONS(5043), 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, + [125651] = 16, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3383), 16, + ACTIONS(5035), 1, anon_sym_POUND, - anon_sym_DOT, + ACTIONS(5037), 1, aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, + ACTIONS(5045), 1, + anon_sym_SQUOTE, + ACTIONS(5047), 1, anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(3381), 22, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, + ACTIONS(5053), 1, + anon_sym_SLASH, + ACTIONS(5089), 1, 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, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [139914] = 3, + STATE(1712), 1, + sym_format_prefix_parameters, + STATE(1956), 1, + sym_format_modifiers, + STATE(2291), 1, + sym__format_token, + STATE(2420), 1, + aux_sym_format_modifiers_repeat1, + STATE(3347), 1, + sym_format_directive_type, + ACTIONS(5039), 2, + anon_sym_COLON, + anon_sym_AT, + ACTIONS(5049), 2, + anon_sym_v, + anon_sym_V, + ACTIONS(5051), 2, + anon_sym_AT_COLON, + anon_sym_COLON_AT, + ACTIONS(5043), 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, + [125723] = 16, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3379), 16, + ACTIONS(5035), 1, anon_sym_POUND, - anon_sym_DOT, + ACTIONS(5037), 1, aux_sym_num_lit_token1, - anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, - anon_sym_POUND_QMARK, + ACTIONS(5045), 1, + anon_sym_SQUOTE, + ACTIONS(5047), 1, anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(3377), 22, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, + ACTIONS(5053), 1, + anon_sym_SLASH, + ACTIONS(5091), 1, 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, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [139960] = 3, + STATE(1712), 1, + sym_format_prefix_parameters, + STATE(1956), 1, + sym_format_modifiers, + STATE(2291), 1, + sym__format_token, + STATE(2420), 1, + aux_sym_format_modifiers_repeat1, + STATE(3347), 1, + sym_format_directive_type, + ACTIONS(5039), 2, + anon_sym_COLON, + anon_sym_AT, + ACTIONS(5049), 2, + anon_sym_v, + anon_sym_V, + ACTIONS(5051), 2, + anon_sym_AT_COLON, + anon_sym_COLON_AT, + ACTIONS(5043), 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, + [125795] = 15, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3247), 16, + ACTIONS(5035), 1, anon_sym_POUND, - anon_sym_DOT, + ACTIONS(5037), 1, 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_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(3245), 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_RPAREN, - anon_sym_POUND0A, - anon_sym_POUND0a, - anon_sym_POUND_QMARK_AT, - anon_sym_POUND_SQUOTE, + ACTIONS(5045), 1, anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA_AT, - anon_sym_POUNDP, - anon_sym_POUNDp, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [140006] = 3, + ACTIONS(5047), 1, + anon_sym_COMMA, + ACTIONS(5053), 1, + anon_sym_SLASH, + STATE(1712), 1, + sym_format_prefix_parameters, + STATE(1956), 1, + sym_format_modifiers, + STATE(2291), 1, + sym__format_token, + STATE(2420), 1, + aux_sym_format_modifiers_repeat1, + STATE(3347), 1, + sym_format_directive_type, + ACTIONS(5039), 2, + anon_sym_COLON, + anon_sym_AT, + ACTIONS(5049), 2, + anon_sym_v, + anon_sym_V, + ACTIONS(5051), 2, + anon_sym_AT_COLON, + anon_sym_COLON_AT, + ACTIONS(5043), 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, + [125864] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3371), 16, + ACTIONS(4398), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -122780,13 +120436,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(3369), 22, + ACTIONS(4396), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -122796,6 +120447,8 @@ static 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, anon_sym_POUND_QMARK_AT, @@ -122805,14 +120458,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [140052] = 3, + [125908] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3371), 16, + ACTIONS(4218), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -122823,13 +120477,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(3369), 22, + ACTIONS(4216), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -122839,6 +120488,8 @@ static 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, anon_sym_POUND_QMARK_AT, @@ -122848,14 +120499,24 @@ static uint16_t ts_small_parse_table[] = { 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, - [140098] = 3, + [125952] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3367), 16, + ACTIONS(5096), 1, + anon_sym_POUND_, + ACTIONS(5093), 2, + sym__ws, + sym_comment, + STATE(1443), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(4120), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -122866,22 +120527,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(3365), 22, - sym__ws, - sym_comment, - anon_sym_POUND_, + anon_sym_EQ, + ACTIONS(4122), 19, 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, @@ -122891,14 +120543,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [140144] = 3, + [126002] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3363), 16, + ACTIONS(4330), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -122909,13 +120562,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(3361), 22, + ACTIONS(4328), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -122925,6 +120573,8 @@ static 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, anon_sym_POUND_QMARK_AT, @@ -122934,14 +120584,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [140190] = 3, + [126046] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3371), 16, + ACTIONS(4346), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -122952,13 +120603,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(3369), 22, + ACTIONS(4344), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -122968,6 +120614,8 @@ static 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, anon_sym_POUND_QMARK_AT, @@ -122977,14 +120625,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [140236] = 3, + [126090] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3371), 16, + ACTIONS(4354), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -122995,13 +120644,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(3369), 22, + ACTIONS(4352), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -123011,6 +120655,8 @@ static 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, anon_sym_POUND_QMARK_AT, @@ -123020,14 +120666,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [140282] = 3, + [126134] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3367), 16, + ACTIONS(4366), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -123038,13 +120685,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(3365), 22, + ACTIONS(4364), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -123054,6 +120696,8 @@ static 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, anon_sym_POUND_QMARK_AT, @@ -123063,14 +120707,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [140328] = 3, + [126178] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3363), 16, + ACTIONS(4366), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -123081,13 +120726,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(3361), 22, + ACTIONS(4364), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -123097,6 +120737,8 @@ static 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, anon_sym_POUND_QMARK_AT, @@ -123106,14 +120748,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [140374] = 3, + [126222] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3359), 16, + ACTIONS(4370), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -123124,13 +120767,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(3357), 22, + ACTIONS(4368), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -123140,6 +120778,8 @@ static 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, anon_sym_POUND_QMARK_AT, @@ -123149,14 +120789,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [140420] = 3, + [126266] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3355), 16, + ACTIONS(4370), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -123167,13 +120808,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(3353), 22, + ACTIONS(4368), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -123183,6 +120819,8 @@ static 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, anon_sym_POUND_QMARK_AT, @@ -123192,14 +120830,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [140466] = 3, + [126310] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3351), 16, + ACTIONS(4406), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -123210,13 +120849,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(3349), 22, + ACTIONS(4404), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -123226,6 +120860,8 @@ static 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, anon_sym_POUND_QMARK_AT, @@ -123235,14 +120871,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [140512] = 3, + [126354] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3347), 16, + ACTIONS(4410), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -123253,13 +120890,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(3345), 22, + ACTIONS(4408), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -123269,6 +120901,8 @@ static 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, anon_sym_POUND_QMARK_AT, @@ -123278,14 +120912,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [140558] = 3, + [126398] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3343), 16, + ACTIONS(4414), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -123296,13 +120931,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(3341), 22, + ACTIONS(4412), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -123312,6 +120942,8 @@ static 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, anon_sym_POUND_QMARK_AT, @@ -123321,14 +120953,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [140604] = 3, + [126442] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3339), 16, + ACTIONS(4418), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -123339,13 +120972,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(3337), 22, + ACTIONS(4416), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -123355,6 +120983,8 @@ static 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, anon_sym_POUND_QMARK_AT, @@ -123364,14 +120994,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [140650] = 3, + [126486] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3339), 16, + ACTIONS(4426), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -123382,13 +121013,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(3337), 22, + ACTIONS(4424), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -123398,6 +121024,8 @@ static 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, anon_sym_POUND_QMARK_AT, @@ -123407,14 +121035,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [140696] = 3, + [126530] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3335), 16, + ACTIONS(4430), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -123425,13 +121054,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(3333), 22, + ACTIONS(4428), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -123441,6 +121065,8 @@ static 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, anon_sym_POUND_QMARK_AT, @@ -123450,14 +121076,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [140742] = 3, + [126574] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3335), 16, + ACTIONS(4430), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -123468,13 +121095,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(3333), 22, + ACTIONS(4428), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -123484,6 +121106,8 @@ static 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, anon_sym_POUND_QMARK_AT, @@ -123493,14 +121117,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [140788] = 3, + [126618] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3331), 16, + ACTIONS(4418), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -123511,13 +121136,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(3329), 22, + ACTIONS(4416), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -123527,6 +121147,8 @@ static 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, anon_sym_POUND_QMARK_AT, @@ -123536,14 +121158,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [140834] = 3, + [126662] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3327), 16, + ACTIONS(4426), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -123554,13 +121177,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(3325), 22, + ACTIONS(4424), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -123570,6 +121188,8 @@ static 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, anon_sym_POUND_QMARK_AT, @@ -123579,14 +121199,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [140880] = 3, + [126706] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3323), 16, + ACTIONS(4430), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -123597,13 +121218,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(3321), 22, + ACTIONS(4428), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -123613,6 +121229,8 @@ static 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, anon_sym_POUND_QMARK_AT, @@ -123622,14 +121240,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [140926] = 3, + [126750] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3319), 16, + ACTIONS(4430), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -123640,13 +121259,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(3317), 22, + ACTIONS(4428), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -123656,6 +121270,8 @@ static 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, anon_sym_POUND_QMARK_AT, @@ -123665,14 +121281,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [140972] = 3, + [126794] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3315), 16, + ACTIONS(4382), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -123683,13 +121300,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(3313), 22, + ACTIONS(4380), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -123699,6 +121311,8 @@ static 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, anon_sym_POUND_QMARK_AT, @@ -123708,14 +121322,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [141018] = 3, + [126838] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3167), 16, + ACTIONS(4326), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -123726,13 +121341,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(3165), 22, + ACTIONS(4324), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -123742,6 +121352,8 @@ static 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, anon_sym_POUND_QMARK_AT, @@ -123751,14 +121363,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [141064] = 3, + [126882] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3311), 16, + ACTIONS(4234), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -123769,13 +121382,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(3309), 22, + ACTIONS(4232), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -123785,6 +121393,8 @@ static 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, anon_sym_POUND_QMARK_AT, @@ -123794,14 +121404,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [141110] = 3, + [126926] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3307), 16, + ACTIONS(4322), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -123812,13 +121423,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(3305), 22, + ACTIONS(4320), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -123828,6 +121434,8 @@ static 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, anon_sym_POUND_QMARK_AT, @@ -123837,14 +121445,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [141156] = 3, + [126970] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3067), 16, + ACTIONS(4318), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -123855,13 +121464,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(3065), 22, + ACTIONS(4316), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -123871,6 +121475,8 @@ static 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, anon_sym_POUND_QMARK_AT, @@ -123880,14 +121486,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [141202] = 3, + [127014] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3311), 16, + ACTIONS(4302), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -123898,13 +121505,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(3309), 22, + ACTIONS(4300), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -123914,6 +121516,8 @@ static 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, anon_sym_POUND_QMARK_AT, @@ -123923,14 +121527,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [141248] = 3, + [127058] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3307), 16, + ACTIONS(4178), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -123941,13 +121546,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(3305), 22, + ACTIONS(4176), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -123957,6 +121557,8 @@ static 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, anon_sym_POUND_QMARK_AT, @@ -123966,14 +121568,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [141294] = 3, + [127102] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3303), 16, + ACTIONS(4490), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -123984,13 +121587,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(3301), 22, + ACTIONS(4488), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -124000,6 +121598,8 @@ static 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, anon_sym_POUND_QMARK_AT, @@ -124009,14 +121609,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [141340] = 3, + [127146] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3299), 16, + ACTIONS(4494), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -124027,13 +121628,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(3297), 22, + ACTIONS(4492), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -124043,6 +121639,8 @@ static 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, anon_sym_POUND_QMARK_AT, @@ -124052,14 +121650,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [141386] = 3, + [127190] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3091), 16, + ACTIONS(4498), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -124070,13 +121669,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(3089), 22, + ACTIONS(4496), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -124086,6 +121680,8 @@ static 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, anon_sym_POUND_QMARK_AT, @@ -124095,14 +121691,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [141432] = 3, + [127234] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3091), 16, + ACTIONS(4502), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -124113,13 +121710,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(3089), 22, + ACTIONS(4500), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -124129,6 +121721,8 @@ static 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, anon_sym_POUND_QMARK_AT, @@ -124138,14 +121732,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [141478] = 3, + [127278] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3251), 16, + ACTIONS(4506), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -124156,13 +121751,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(3249), 22, + ACTIONS(4504), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -124172,6 +121762,8 @@ static 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, anon_sym_POUND_QMARK_AT, @@ -124181,14 +121773,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [141524] = 3, + [127322] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3287), 16, + ACTIONS(4318), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -124199,13 +121792,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(3285), 22, + ACTIONS(4316), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -124215,6 +121803,8 @@ static 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, anon_sym_POUND_QMARK_AT, @@ -124224,14 +121814,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [141570] = 3, + [127366] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3163), 16, + ACTIONS(4502), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -124242,13 +121833,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(3161), 22, + ACTIONS(4500), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -124258,6 +121844,8 @@ static 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, anon_sym_POUND_QMARK_AT, @@ -124267,14 +121855,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [141616] = 3, + [127410] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3159), 16, + ACTIONS(4506), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -124285,13 +121874,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(3157), 22, + ACTIONS(4504), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -124301,6 +121885,8 @@ static 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, anon_sym_POUND_QMARK_AT, @@ -124310,14 +121896,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [141662] = 3, + [127454] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3063), 16, + ACTIONS(4302), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -124328,13 +121915,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(3061), 22, + ACTIONS(4300), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -124344,6 +121926,8 @@ static 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, anon_sym_POUND_QMARK_AT, @@ -124353,14 +121937,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [141708] = 3, + [127498] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3155), 16, + ACTIONS(4486), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -124371,13 +121956,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(3153), 22, + ACTIONS(4484), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -124387,6 +121967,8 @@ static 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, anon_sym_POUND_QMARK_AT, @@ -124396,14 +121978,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [141754] = 3, + [127542] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3151), 16, + ACTIONS(4498), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -124414,13 +121997,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(3149), 22, + ACTIONS(4496), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -124430,6 +122008,8 @@ static 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, anon_sym_POUND_QMARK_AT, @@ -124439,14 +122019,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [141800] = 3, + [127586] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3083), 16, + ACTIONS(4502), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -124457,13 +122038,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(3081), 22, + ACTIONS(4500), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -124473,6 +122049,8 @@ static 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, anon_sym_POUND_QMARK_AT, @@ -124482,70 +122060,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [141846] = 16, + [127630] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3952), 1, - anon_sym_POUND, - ACTIONS(3954), 1, - aux_sym_num_lit_token1, - ACTIONS(3962), 1, - anon_sym_SQUOTE, - ACTIONS(3964), 1, - anon_sym_COMMA, - ACTIONS(3970), 1, - anon_sym_SLASH, - ACTIONS(3984), 1, - anon_sym_DQUOTE, - STATE(1660), 1, - sym_format_prefix_parameters, - STATE(1864), 1, - sym_format_modifiers, - STATE(2268), 1, - sym__format_token, - STATE(2400), 1, - aux_sym_format_modifiers_repeat1, - STATE(3343), 1, - sym_format_directive_type, - ACTIONS(3956), 2, - anon_sym_COLON, - anon_sym_AT, - ACTIONS(3966), 2, - anon_sym_v, - anon_sym_V, - ACTIONS(3968), 2, - anon_sym_AT_COLON, - anon_sym_COLON_AT, - ACTIONS(3960), 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, - [141918] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(3063), 16, + ACTIONS(4506), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -124556,13 +122079,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(3061), 22, + ACTIONS(4504), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -124572,6 +122090,8 @@ static 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, anon_sym_POUND_QMARK_AT, @@ -124581,70 +122101,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [141964] = 16, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(3952), 1, - anon_sym_POUND, - ACTIONS(3954), 1, - aux_sym_num_lit_token1, - ACTIONS(3962), 1, - anon_sym_SQUOTE, - ACTIONS(3964), 1, - anon_sym_COMMA, - ACTIONS(3970), 1, - anon_sym_SLASH, - ACTIONS(3986), 1, - anon_sym_DQUOTE, - STATE(1660), 1, - sym_format_prefix_parameters, - STATE(1864), 1, - sym_format_modifiers, - STATE(2268), 1, - sym__format_token, - STATE(2400), 1, - aux_sym_format_modifiers_repeat1, - STATE(3343), 1, - sym_format_directive_type, - ACTIONS(3956), 2, - anon_sym_COLON, - anon_sym_AT, - ACTIONS(3966), 2, - anon_sym_v, - anon_sym_V, - ACTIONS(3968), 2, - anon_sym_AT_COLON, - anon_sym_COLON_AT, - ACTIONS(3960), 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, - [142036] = 3, + [127674] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3147), 16, + ACTIONS(4502), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -124655,13 +122120,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(3145), 22, + ACTIONS(4500), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -124671,6 +122131,8 @@ static 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, anon_sym_POUND_QMARK_AT, @@ -124680,14 +122142,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [142082] = 3, + [127718] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3143), 16, + ACTIONS(4506), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -124698,13 +122161,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(3141), 22, + ACTIONS(4504), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -124714,6 +122172,8 @@ static 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, anon_sym_POUND_QMARK_AT, @@ -124723,14 +122183,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [142128] = 3, + [127762] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3139), 16, + ACTIONS(4486), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -124741,13 +122202,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(3137), 22, + ACTIONS(4484), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -124757,6 +122213,8 @@ static 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, anon_sym_POUND_QMARK_AT, @@ -124766,14 +122224,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [142174] = 3, + [127806] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3279), 16, + ACTIONS(4298), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -124784,13 +122243,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(3277), 22, + ACTIONS(4296), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -124800,6 +122254,8 @@ static 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, anon_sym_POUND_QMARK_AT, @@ -124809,70 +122265,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [142220] = 16, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(3952), 1, - anon_sym_POUND, - ACTIONS(3954), 1, - aux_sym_num_lit_token1, - ACTIONS(3962), 1, - anon_sym_SQUOTE, - ACTIONS(3964), 1, - anon_sym_COMMA, - ACTIONS(3970), 1, - anon_sym_SLASH, - ACTIONS(3988), 1, - anon_sym_DQUOTE, - STATE(1660), 1, - sym_format_prefix_parameters, - STATE(1864), 1, - sym_format_modifiers, - STATE(2268), 1, - sym__format_token, - STATE(2400), 1, - aux_sym_format_modifiers_repeat1, - STATE(3343), 1, - sym_format_directive_type, - ACTIONS(3956), 2, - anon_sym_COLON, - anon_sym_AT, - ACTIONS(3966), 2, - anon_sym_v, - anon_sym_V, - ACTIONS(3968), 2, - anon_sym_AT_COLON, - anon_sym_COLON_AT, - ACTIONS(3960), 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, - [142292] = 3, + [127850] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3135), 16, + ACTIONS(4294), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -124883,13 +122284,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(3133), 22, + ACTIONS(4292), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -124899,6 +122295,8 @@ static 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, anon_sym_POUND_QMARK_AT, @@ -124908,14 +122306,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [142338] = 3, + [127894] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3131), 16, + ACTIONS(4290), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -124926,13 +122325,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(3129), 22, + ACTIONS(4288), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -124942,6 +122336,8 @@ static 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, anon_sym_POUND_QMARK_AT, @@ -124951,14 +122347,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [142384] = 3, + [127938] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3187), 16, + ACTIONS(4290), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -124969,13 +122366,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(3185), 22, + ACTIONS(4288), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -124985,6 +122377,8 @@ static 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, anon_sym_POUND_QMARK_AT, @@ -124994,14 +122388,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [142430] = 3, + [127982] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3123), 16, + ACTIONS(4286), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -125012,13 +122407,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(3121), 22, + ACTIONS(4284), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -125028,6 +122418,8 @@ static 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, anon_sym_POUND_QMARK_AT, @@ -125037,14 +122429,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [142476] = 3, + [128026] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3119), 16, + ACTIONS(4282), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -125055,13 +122448,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(3117), 22, + ACTIONS(4280), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -125071,6 +122459,8 @@ static 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, anon_sym_POUND_QMARK_AT, @@ -125080,14 +122470,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [142522] = 3, + [128070] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3115), 16, + ACTIONS(4234), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -125098,13 +122489,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(3113), 22, + ACTIONS(4232), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -125114,6 +122500,8 @@ static 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, anon_sym_POUND_QMARK_AT, @@ -125123,14 +122511,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [142568] = 3, + [128114] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3111), 16, + ACTIONS(4266), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -125141,13 +122530,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(3109), 22, + ACTIONS(4264), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -125157,6 +122541,8 @@ static 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, anon_sym_POUND_QMARK_AT, @@ -125166,70 +122552,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [142614] = 16, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(3952), 1, - anon_sym_POUND, - ACTIONS(3954), 1, - aux_sym_num_lit_token1, - ACTIONS(3962), 1, - anon_sym_SQUOTE, - ACTIONS(3964), 1, - anon_sym_COMMA, - ACTIONS(3970), 1, - anon_sym_SLASH, - ACTIONS(3990), 1, - anon_sym_DQUOTE, - STATE(1660), 1, - sym_format_prefix_parameters, - STATE(1864), 1, - sym_format_modifiers, - STATE(2268), 1, - sym__format_token, - STATE(2400), 1, - aux_sym_format_modifiers_repeat1, - STATE(3343), 1, - sym_format_directive_type, - ACTIONS(3956), 2, - anon_sym_COLON, - anon_sym_AT, - ACTIONS(3966), 2, - anon_sym_v, - anon_sym_V, - ACTIONS(3968), 2, - anon_sym_AT_COLON, - anon_sym_COLON_AT, - ACTIONS(3960), 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, - [142686] = 3, + [128158] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3107), 16, + ACTIONS(4514), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -125240,13 +122571,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(3105), 22, + ACTIONS(4512), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -125256,6 +122582,8 @@ static 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, anon_sym_POUND_QMARK_AT, @@ -125265,14 +122593,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [142732] = 3, + [128202] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3083), 16, + ACTIONS(4442), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -125283,13 +122612,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(3081), 22, + ACTIONS(4440), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -125299,6 +122623,8 @@ static 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, anon_sym_POUND_QMARK_AT, @@ -125308,126 +122634,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [142778] = 16, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(3952), 1, - anon_sym_POUND, - ACTIONS(3954), 1, - aux_sym_num_lit_token1, - ACTIONS(3962), 1, - anon_sym_SQUOTE, - ACTIONS(3964), 1, - anon_sym_COMMA, - ACTIONS(3970), 1, - anon_sym_SLASH, - ACTIONS(3992), 1, - anon_sym_DQUOTE, - STATE(1660), 1, - sym_format_prefix_parameters, - STATE(1864), 1, - sym_format_modifiers, - STATE(2268), 1, - sym__format_token, - STATE(2400), 1, - aux_sym_format_modifiers_repeat1, - STATE(3343), 1, - sym_format_directive_type, - ACTIONS(3956), 2, - anon_sym_COLON, - anon_sym_AT, - ACTIONS(3966), 2, - anon_sym_v, - anon_sym_V, - ACTIONS(3968), 2, - anon_sym_AT_COLON, - anon_sym_COLON_AT, - ACTIONS(3960), 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, - [142850] = 16, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(3952), 1, - anon_sym_POUND, - ACTIONS(3954), 1, - aux_sym_num_lit_token1, - ACTIONS(3962), 1, - anon_sym_SQUOTE, - ACTIONS(3964), 1, - anon_sym_COMMA, - ACTIONS(3970), 1, - anon_sym_SLASH, - ACTIONS(3994), 1, - anon_sym_DQUOTE, - STATE(1660), 1, - sym_format_prefix_parameters, - STATE(1864), 1, - sym_format_modifiers, - STATE(2268), 1, - sym__format_token, - STATE(2400), 1, - aux_sym_format_modifiers_repeat1, - STATE(3343), 1, - sym_format_directive_type, - ACTIONS(3956), 2, - anon_sym_COLON, - anon_sym_AT, - ACTIONS(3966), 2, - anon_sym_v, - anon_sym_V, - ACTIONS(3968), 2, - anon_sym_AT_COLON, - anon_sym_COLON_AT, - ACTIONS(3960), 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, - [142922] = 3, + [128246] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3275), 16, + ACTIONS(4442), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -125438,13 +122653,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(3273), 22, + ACTIONS(4440), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -125454,6 +122664,8 @@ static 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, anon_sym_POUND_QMARK_AT, @@ -125463,70 +122675,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [142968] = 16, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(3952), 1, - anon_sym_POUND, - ACTIONS(3954), 1, - aux_sym_num_lit_token1, - ACTIONS(3962), 1, - anon_sym_SQUOTE, - ACTIONS(3964), 1, - anon_sym_COMMA, - ACTIONS(3970), 1, - anon_sym_SLASH, - ACTIONS(3996), 1, - anon_sym_DQUOTE, - STATE(1660), 1, - sym_format_prefix_parameters, - STATE(1864), 1, - sym_format_modifiers, - STATE(2268), 1, - sym__format_token, - STATE(2400), 1, - aux_sym_format_modifiers_repeat1, - STATE(3343), 1, - sym_format_directive_type, - ACTIONS(3956), 2, - anon_sym_COLON, - anon_sym_AT, - ACTIONS(3966), 2, - anon_sym_v, - anon_sym_V, - ACTIONS(3968), 2, - anon_sym_AT_COLON, - anon_sym_COLON_AT, - ACTIONS(3960), 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, - [143040] = 3, + [128290] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3271), 16, + ACTIONS(4438), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -125537,13 +122694,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(3269), 22, + ACTIONS(4436), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -125553,6 +122705,8 @@ static 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, anon_sym_POUND_QMARK_AT, @@ -125562,14 +122716,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [143086] = 3, + [128334] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3103), 16, + ACTIONS(4434), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -125580,13 +122735,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(3101), 22, + ACTIONS(4432), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -125596,6 +122746,8 @@ static 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, anon_sym_POUND_QMARK_AT, @@ -125605,14 +122757,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [143132] = 3, + [128378] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3099), 16, + ACTIONS(4442), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -125623,13 +122776,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(3097), 22, + ACTIONS(4440), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -125639,6 +122787,8 @@ static 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, anon_sym_POUND_QMARK_AT, @@ -125648,14 +122798,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [143178] = 3, + [128422] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3095), 16, + ACTIONS(4442), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -125666,13 +122817,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(3093), 22, + ACTIONS(4440), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -125682,6 +122828,8 @@ static 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, anon_sym_POUND_QMARK_AT, @@ -125691,14 +122839,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [143224] = 3, + [128466] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3267), 16, + ACTIONS(4438), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -125709,13 +122858,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(3265), 22, + ACTIONS(4436), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -125725,6 +122869,8 @@ static 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, anon_sym_POUND_QMARK_AT, @@ -125734,14 +122880,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [143270] = 3, + [128510] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3295), 16, + ACTIONS(4434), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -125752,13 +122899,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(3293), 22, + ACTIONS(4432), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -125768,6 +122910,8 @@ static 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, anon_sym_POUND_QMARK_AT, @@ -125777,14 +122921,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [143316] = 3, + [128554] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3263), 16, + ACTIONS(4198), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -125795,13 +122940,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(3261), 22, + ACTIONS(4196), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -125811,6 +122951,8 @@ static 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, anon_sym_POUND_QMARK_AT, @@ -125820,14 +122962,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [143362] = 3, + [128598] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3087), 16, + ACTIONS(4230), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -125838,13 +122981,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(3085), 22, + ACTIONS(4228), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -125854,6 +122992,8 @@ static 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, anon_sym_POUND_QMARK_AT, @@ -125863,14 +123003,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [143408] = 3, + [128642] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3083), 16, + ACTIONS(4262), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -125881,13 +123022,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(3081), 22, + ACTIONS(4260), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -125897,6 +123033,8 @@ static 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, anon_sym_POUND_QMARK_AT, @@ -125906,42 +123044,38 @@ static uint16_t ts_small_parse_table[] = { 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, - [143454] = 5, + [128686] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3998), 1, - anon_sym_COLON, - ACTIONS(4000), 1, - anon_sym_COLON_COLON, - ACTIONS(3075), 15, + ACTIONS(4206), 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, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(3073), 21, + ACTIONS(4204), 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, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -125951,14 +123085,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [143504] = 3, + [128730] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3199), 16, + ACTIONS(4142), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -125969,13 +123104,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(3197), 22, + ACTIONS(4140), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -125985,6 +123115,8 @@ static 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, anon_sym_POUND_QMARK_AT, @@ -125994,14 +123126,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [143550] = 3, + [128774] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3259), 16, + ACTIONS(4510), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -126012,13 +123145,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(3257), 22, + ACTIONS(4508), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -126028,6 +123156,8 @@ static 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, anon_sym_POUND_QMARK_AT, @@ -126037,14 +123167,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [143596] = 3, + [128818] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3071), 16, + ACTIONS(4194), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -126055,13 +123186,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(3069), 22, + ACTIONS(4192), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -126071,6 +123197,8 @@ static 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, anon_sym_POUND_QMARK_AT, @@ -126080,14 +123208,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [143642] = 3, + [128862] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3075), 16, + ACTIONS(4158), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -126098,13 +123227,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(3073), 22, + ACTIONS(4156), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -126114,6 +123238,8 @@ static 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, anon_sym_POUND_QMARK_AT, @@ -126123,14 +123249,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [143688] = 3, + [128906] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3427), 16, + ACTIONS(4166), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -126141,13 +123268,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(3425), 22, + ACTIONS(4164), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -126157,6 +123279,8 @@ static 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, anon_sym_POUND_QMARK_AT, @@ -126166,14 +123290,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [143734] = 3, + [128950] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3291), 16, + ACTIONS(4402), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -126184,13 +123309,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(3289), 22, + ACTIONS(4400), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -126200,6 +123320,8 @@ static 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, anon_sym_POUND_QMARK_AT, @@ -126209,14 +123331,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [143780] = 3, + [128994] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3431), 16, + ACTIONS(4162), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -126227,13 +123350,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(3429), 22, + ACTIONS(4160), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -126243,6 +123361,8 @@ static 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, anon_sym_POUND_QMARK_AT, @@ -126252,70 +123372,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [143826] = 16, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(3952), 1, - anon_sym_POUND, - ACTIONS(3954), 1, - aux_sym_num_lit_token1, - ACTIONS(3962), 1, - anon_sym_SQUOTE, - ACTIONS(3964), 1, - anon_sym_COMMA, - ACTIONS(3970), 1, - anon_sym_SLASH, - ACTIONS(4002), 1, - anon_sym_DQUOTE, - STATE(1660), 1, - sym_format_prefix_parameters, - STATE(1864), 1, - sym_format_modifiers, - STATE(2268), 1, - sym__format_token, - STATE(2400), 1, - aux_sym_format_modifiers_repeat1, - STATE(3343), 1, - sym_format_directive_type, - ACTIONS(3956), 2, - anon_sym_COLON, - anon_sym_AT, - ACTIONS(3966), 2, - anon_sym_v, - anon_sym_V, - ACTIONS(3968), 2, - anon_sym_AT_COLON, - anon_sym_COLON_AT, - ACTIONS(3960), 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, - [143898] = 3, + [129038] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3435), 16, + ACTIONS(4174), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -126326,13 +123391,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(3433), 22, + ACTIONS(4172), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -126342,6 +123402,8 @@ static 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, anon_sym_POUND_QMARK_AT, @@ -126351,42 +123413,38 @@ static uint16_t ts_small_parse_table[] = { 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, - [143944] = 5, + [129082] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3998), 1, - anon_sym_COLON, - ACTIONS(4000), 1, - anon_sym_COLON_COLON, - ACTIONS(3283), 15, + ACTIONS(4154), 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, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(3281), 21, + ACTIONS(4152), 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, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -126396,182 +123454,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [143994] = 16, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(3952), 1, - anon_sym_POUND, - ACTIONS(3954), 1, - aux_sym_num_lit_token1, - ACTIONS(3962), 1, - anon_sym_SQUOTE, - ACTIONS(3964), 1, - anon_sym_COMMA, - ACTIONS(3970), 1, - anon_sym_SLASH, - ACTIONS(4004), 1, - anon_sym_DQUOTE, - STATE(1660), 1, - sym_format_prefix_parameters, - STATE(1864), 1, - sym_format_modifiers, - STATE(2268), 1, - sym__format_token, - STATE(2400), 1, - aux_sym_format_modifiers_repeat1, - STATE(3343), 1, - sym_format_directive_type, - ACTIONS(3956), 2, - anon_sym_COLON, - anon_sym_AT, - ACTIONS(3966), 2, - anon_sym_v, - anon_sym_V, - ACTIONS(3968), 2, - anon_sym_AT_COLON, - anon_sym_COLON_AT, - ACTIONS(3960), 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, - [144066] = 16, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(3952), 1, - anon_sym_POUND, - ACTIONS(3954), 1, - aux_sym_num_lit_token1, - ACTIONS(3962), 1, - anon_sym_SQUOTE, - ACTIONS(3964), 1, - anon_sym_COMMA, - ACTIONS(3970), 1, - anon_sym_SLASH, - ACTIONS(4006), 1, - anon_sym_DQUOTE, - STATE(1660), 1, - sym_format_prefix_parameters, - STATE(1864), 1, - sym_format_modifiers, - STATE(2268), 1, - sym__format_token, - STATE(2400), 1, - aux_sym_format_modifiers_repeat1, - STATE(3343), 1, - sym_format_directive_type, - ACTIONS(3956), 2, - anon_sym_COLON, - anon_sym_AT, - ACTIONS(3966), 2, - anon_sym_v, - anon_sym_V, - ACTIONS(3968), 2, - anon_sym_AT_COLON, - anon_sym_COLON_AT, - ACTIONS(3960), 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, - [144138] = 16, + [129126] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3952), 1, - anon_sym_POUND, - ACTIONS(3954), 1, - aux_sym_num_lit_token1, - ACTIONS(3962), 1, - anon_sym_SQUOTE, - ACTIONS(3964), 1, - anon_sym_COMMA, - ACTIONS(3970), 1, - anon_sym_SLASH, - ACTIONS(4008), 1, - anon_sym_DQUOTE, - STATE(1660), 1, - sym_format_prefix_parameters, - STATE(1864), 1, - sym_format_modifiers, - STATE(2268), 1, - sym__format_token, - STATE(2400), 1, - aux_sym_format_modifiers_repeat1, - STATE(3343), 1, - sym_format_directive_type, - ACTIONS(3956), 2, - anon_sym_COLON, - anon_sym_AT, - ACTIONS(3966), 2, - anon_sym_v, - anon_sym_V, - ACTIONS(3968), 2, - anon_sym_AT_COLON, - anon_sym_COLON_AT, - ACTIONS(3960), 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, - [144210] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(3391), 16, + ACTIONS(4150), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -126582,13 +123473,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(3389), 22, + ACTIONS(4148), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -126598,6 +123484,8 @@ static 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, anon_sym_POUND_QMARK_AT, @@ -126607,70 +123495,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [144256] = 16, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(3952), 1, - anon_sym_POUND, - ACTIONS(3954), 1, - aux_sym_num_lit_token1, - ACTIONS(3962), 1, - anon_sym_SQUOTE, - ACTIONS(3964), 1, - anon_sym_COMMA, - ACTIONS(3970), 1, - anon_sym_SLASH, - ACTIONS(4010), 1, - anon_sym_DQUOTE, - STATE(1660), 1, - sym_format_prefix_parameters, - STATE(1864), 1, - sym_format_modifiers, - STATE(2268), 1, - sym__format_token, - STATE(2400), 1, - aux_sym_format_modifiers_repeat1, - STATE(3343), 1, - sym_format_directive_type, - ACTIONS(3956), 2, - anon_sym_COLON, - anon_sym_AT, - ACTIONS(3966), 2, - anon_sym_v, - anon_sym_V, - ACTIONS(3968), 2, - anon_sym_AT_COLON, - anon_sym_COLON_AT, - ACTIONS(3960), 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, - [144328] = 3, + [129170] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3255), 16, + ACTIONS(4170), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -126681,13 +123514,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_loop, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - anon_sym_lambda, - ACTIONS(3253), 22, + ACTIONS(4168), 26, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -126697,6 +123525,8 @@ static 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, anon_sym_POUND_QMARK_AT, @@ -126706,124 +123536,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [144374] = 16, + [129214] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3952), 1, - anon_sym_POUND, - ACTIONS(3954), 1, - aux_sym_num_lit_token1, - ACTIONS(3962), 1, - anon_sym_SQUOTE, - ACTIONS(3964), 1, - anon_sym_COMMA, - ACTIONS(3970), 1, - anon_sym_SLASH, - ACTIONS(4012), 1, - anon_sym_DQUOTE, - STATE(1660), 1, - sym_format_prefix_parameters, - STATE(1864), 1, - sym_format_modifiers, - STATE(2268), 1, - sym__format_token, - STATE(2400), 1, - aux_sym_format_modifiers_repeat1, - STATE(3343), 1, - sym_format_directive_type, - ACTIONS(3956), 2, - anon_sym_COLON, - anon_sym_AT, - ACTIONS(3966), 2, - anon_sym_v, - anon_sym_V, - ACTIONS(3968), 2, - anon_sym_AT_COLON, - anon_sym_COLON_AT, - ACTIONS(3960), 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, - [144446] = 15, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(3952), 1, - anon_sym_POUND, - ACTIONS(3954), 1, - aux_sym_num_lit_token1, - ACTIONS(3962), 1, - anon_sym_SQUOTE, - ACTIONS(3964), 1, - anon_sym_COMMA, - ACTIONS(3970), 1, - anon_sym_SLASH, - STATE(1660), 1, - sym_format_prefix_parameters, - STATE(1864), 1, - sym_format_modifiers, - STATE(2268), 1, - sym__format_token, - STATE(2400), 1, - aux_sym_format_modifiers_repeat1, - STATE(3343), 1, - sym_format_directive_type, - ACTIONS(3956), 2, - anon_sym_COLON, - anon_sym_AT, - ACTIONS(3966), 2, - anon_sym_v, - anon_sym_V, - ACTIONS(3968), 2, - anon_sym_AT_COLON, - anon_sym_COLON_AT, - ACTIONS(3960), 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, - [144515] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(3171), 10, + ACTIONS(4182), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -126834,7 +123555,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(3169), 25, + ACTIONS(4180), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -126856,14 +123577,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [144558] = 3, + [129258] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3371), 10, + ACTIONS(4274), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -126874,7 +123596,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(3369), 25, + ACTIONS(4272), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -126896,14 +123618,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [144601] = 3, + [129302] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3143), 10, + ACTIONS(4274), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -126914,7 +123637,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(3141), 25, + ACTIONS(4272), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -126936,14 +123659,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [144644] = 3, + [129346] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3147), 10, + ACTIONS(4186), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -126954,7 +123678,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(3145), 25, + ACTIONS(4184), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -126976,14 +123700,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [144687] = 3, + [129390] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3407), 10, + ACTIONS(4190), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -126994,7 +123719,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(3405), 25, + ACTIONS(4188), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -127016,14 +123741,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [144730] = 3, + [129434] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3131), 10, + ACTIONS(4202), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -127034,7 +123760,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(3129), 25, + ACTIONS(4200), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -127056,14 +123782,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [144773] = 3, + [129478] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3127), 10, + ACTIONS(4210), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -127074,7 +123801,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(3125), 25, + ACTIONS(4208), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -127096,14 +123823,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [144816] = 3, + [129522] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3399), 10, + ACTIONS(4214), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -127114,7 +123842,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(3397), 25, + ACTIONS(4212), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -127136,14 +123864,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [144859] = 3, + [129566] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3083), 10, + ACTIONS(4222), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -127154,7 +123883,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(3081), 25, + ACTIONS(4220), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -127176,14 +123905,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [144902] = 3, + [129610] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3151), 10, + ACTIONS(4226), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -127194,7 +123924,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(3149), 25, + ACTIONS(4224), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -127216,14 +123946,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [144945] = 3, + [129654] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3123), 10, + ACTIONS(4238), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -127234,7 +123965,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(3121), 25, + ACTIONS(4236), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -127256,14 +123987,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [144988] = 3, + [129698] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3395), 10, + ACTIONS(4242), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -127274,7 +124006,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(3393), 25, + ACTIONS(4240), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -127296,14 +124028,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [145031] = 3, + [129742] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3155), 10, + ACTIONS(4246), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -127314,7 +124047,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(3153), 25, + ACTIONS(4244), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -127336,14 +124069,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [145074] = 3, + [129786] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3387), 10, + ACTIONS(4250), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -127354,7 +124088,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(3385), 25, + ACTIONS(4248), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -127376,14 +124110,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [145117] = 3, + [129830] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3159), 10, + ACTIONS(4254), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -127394,7 +124129,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(3157), 25, + ACTIONS(4252), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -127416,14 +124151,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [145160] = 3, + [129874] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3403), 10, + ACTIONS(4258), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -127434,7 +124170,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(3401), 25, + ACTIONS(4256), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -127456,14 +124192,17 @@ static uint16_t ts_small_parse_table[] = { 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, - [145203] = 3, + [129918] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3399), 10, + ACTIONS(5099), 1, + aux_sym_num_lit_token2, + ACTIONS(4136), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -127474,7 +124213,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(3397), 25, + ACTIONS(4134), 25, ts_builtin_sym_end, sym__ws, sym_comment, @@ -127485,7 +124224,6 @@ static 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, @@ -127496,14 +124234,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [145246] = 3, + [129964] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3395), 10, + ACTIONS(4270), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -127514,7 +124253,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(3393), 25, + ACTIONS(4268), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -127536,14 +124275,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [145289] = 3, + [130008] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3071), 10, + ACTIONS(4278), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -127554,7 +124294,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(3069), 25, + ACTIONS(4276), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -127576,14 +124316,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [145332] = 3, + [130052] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3163), 10, + ACTIONS(4358), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -127594,7 +124335,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(3161), 25, + ACTIONS(4356), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -127616,14 +124357,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [145375] = 3, + [130096] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3411), 10, + ACTIONS(4362), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -127634,7 +124376,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(3409), 25, + ACTIONS(4360), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -127656,14 +124398,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [145418] = 3, + [130140] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3119), 10, + ACTIONS(4374), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -127674,7 +124417,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(3117), 25, + ACTIONS(4372), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -127696,14 +124439,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [145461] = 3, + [130184] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3415), 10, + ACTIONS(4482), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -127714,7 +124458,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(3413), 25, + ACTIONS(4480), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -127736,14 +124480,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [145504] = 3, + [130228] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3319), 10, + ACTIONS(4478), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -127754,7 +124499,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(3317), 25, + ACTIONS(4476), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -127776,14 +124521,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [145547] = 3, + [130272] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3115), 10, + ACTIONS(4474), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -127794,7 +124540,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(3113), 25, + ACTIONS(4472), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -127816,14 +124562,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [145590] = 3, + [130316] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3395), 10, + ACTIONS(4470), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -127834,7 +124581,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(3393), 25, + ACTIONS(4468), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -127856,14 +124603,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [145633] = 3, + [130360] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3311), 10, + ACTIONS(4466), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -127874,7 +124622,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(3309), 25, + ACTIONS(4464), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -127896,14 +124644,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [145676] = 3, + [130404] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3307), 10, + ACTIONS(4462), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -127914,7 +124663,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(3305), 25, + ACTIONS(4460), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -127936,16 +124685,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [145719] = 4, + [130448] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4014), 1, - aux_sym_num_lit_token2, - ACTIONS(3057), 10, + ACTIONS(4458), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -127956,7 +124704,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(3055), 24, + ACTIONS(4456), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -127967,6 +124715,7 @@ static 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, @@ -127977,14 +124726,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [145764] = 3, + [130492] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3311), 10, + ACTIONS(4454), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -127995,7 +124745,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(3309), 25, + ACTIONS(4452), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -128017,14 +124767,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [145807] = 3, + [130536] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3399), 10, + ACTIONS(4450), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -128035,7 +124786,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(3397), 25, + ACTIONS(4448), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -128057,14 +124808,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [145850] = 3, + [130580] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3323), 10, + ACTIONS(4446), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -128075,7 +124827,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(3321), 25, + ACTIONS(4444), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -128097,14 +124849,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [145893] = 3, + [130624] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3327), 10, + ACTIONS(4422), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -128115,7 +124868,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(3325), 25, + ACTIONS(4420), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -128137,14 +124890,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [145936] = 3, + [130668] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3399), 10, + ACTIONS(4374), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -128155,7 +124909,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(3397), 25, + ACTIONS(4372), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -128177,14 +124931,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [145979] = 3, + [130712] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3395), 10, + ACTIONS(4146), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -128195,7 +124950,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(3393), 25, + ACTIONS(4144), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -128217,14 +124972,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [146022] = 3, + [130756] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3331), 10, + ACTIONS(4394), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -128235,7 +124991,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(3329), 25, + ACTIONS(4392), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -128257,14 +125013,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [146065] = 3, + [130800] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3387), 10, + ACTIONS(4390), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -128275,7 +125032,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(3385), 25, + ACTIONS(4388), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -128297,14 +125054,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [146108] = 3, + [130844] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3403), 10, + ACTIONS(4386), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -128315,7 +125073,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(3401), 25, + ACTIONS(4384), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -128337,14 +125095,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [146151] = 3, + [130888] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3375), 10, + ACTIONS(4378), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -128355,7 +125114,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(3373), 25, + ACTIONS(4376), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -128377,14 +125136,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [146194] = 3, + [130932] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3307), 10, + ACTIONS(4374), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -128395,7 +125155,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(3305), 25, + ACTIONS(4372), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -128417,30 +125177,33 @@ static uint16_t ts_small_parse_table[] = { 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, - [146237] = 3, + [130976] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3215), 10, + ACTIONS(5101), 1, + anon_sym_COLON, + ACTIONS(5103), 1, + anon_sym_COLON_COLON, + ACTIONS(4342), 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(3213), 25, + ACTIONS(4340), 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, @@ -128457,14 +125220,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [146280] = 3, + [131024] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3335), 10, + ACTIONS(4350), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -128475,7 +125239,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(3333), 25, + ACTIONS(4348), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -128497,14 +125261,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [146323] = 3, + [131068] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3335), 10, + ACTIONS(4342), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -128515,7 +125280,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(3333), 25, + ACTIONS(4340), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -128537,14 +125302,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [146366] = 3, + [131112] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3339), 10, + ACTIONS(4338), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -128555,7 +125321,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(3337), 25, + ACTIONS(4336), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -128577,14 +125343,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [146409] = 3, + [131156] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3111), 10, + ACTIONS(4334), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -128595,7 +125362,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(3109), 25, + ACTIONS(4332), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -128617,14 +125384,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [146452] = 3, + [131200] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3107), 10, + ACTIONS(4314), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -128635,7 +125403,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(3105), 25, + ACTIONS(4312), 26, ts_builtin_sym_end, sym__ws, sym_comment, @@ -128657,30 +125425,33 @@ static uint16_t ts_small_parse_table[] = { 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, - [146495] = 3, + [131244] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3383), 10, + ACTIONS(5101), 1, + anon_sym_COLON, + ACTIONS(5103), 1, + anon_sym_COLON_COLON, + ACTIONS(4306), 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(3381), 25, + ACTIONS(4304), 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, @@ -128697,14 +125468,24 @@ static uint16_t ts_small_parse_table[] = { 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, - [146538] = 3, + [131292] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3339), 10, + ACTIONS(5108), 1, + anon_sym_POUND_, + ACTIONS(5105), 2, + sym__ws, + sym_comment, + STATE(1564), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(4120), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -128715,8 +125496,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(3337), 25, - ts_builtin_sym_end, + ACTIONS(4122), 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, + [131341] = 4, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(5111), 1, + aux_sym_num_lit_token2, + ACTIONS(4136), 11, + 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_EQ, + ACTIONS(4134), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -128725,9 +125542,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -128737,14 +125551,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [146581] = 3, + [131385] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3255), 10, + ACTIONS(5115), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -128755,8 +125570,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(3253), 25, - ts_builtin_sym_end, + ACTIONS(5113), 24, sym__ws, sym_comment, anon_sym_POUND_, @@ -128766,7 +125580,6 @@ static 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, @@ -128777,14 +125590,53 @@ static uint16_t ts_small_parse_table[] = { 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, - [146624] = 3, + [131427] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3379), 10, + ACTIONS(4358), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(4356), 30, + 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, + anon_sym_SQUOTE, + anon_sym_COMMA_AT, + anon_sym_cl, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [131468] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(5119), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -128795,8 +125647,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(3377), 25, - ts_builtin_sym_end, + ACTIONS(5117), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -128806,8 +125657,6 @@ static 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, anon_sym_POUND_QMARK_AT, @@ -128817,14 +125666,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [146667] = 3, + [131509] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3083), 10, + ACTIONS(4234), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -128835,8 +125685,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(3081), 25, - ts_builtin_sym_end, + anon_sym_EQ, + ACTIONS(4232), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -128845,9 +125695,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -128857,14 +125704,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [146710] = 3, + [131550] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3411), 10, + ACTIONS(5123), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -128875,8 +125723,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(3409), 25, - ts_builtin_sym_end, + ACTIONS(5121), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -128886,8 +125733,6 @@ static 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, anon_sym_POUND_QMARK_AT, @@ -128897,14 +125742,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [146753] = 3, + [131591] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3411), 10, + ACTIONS(5123), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -128915,8 +125761,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(3409), 25, - ts_builtin_sym_end, + ACTIONS(5121), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -128926,8 +125771,6 @@ static 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, anon_sym_POUND_QMARK_AT, @@ -128937,14 +125780,205 @@ static uint16_t ts_small_parse_table[] = { 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, + [131632] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4282), 11, + 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_EQ, + ACTIONS(4280), 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, + [131673] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4286), 11, + 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_EQ, + ACTIONS(4284), 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, + [131714] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4290), 11, + 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_EQ, + ACTIONS(4288), 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, + [131755] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4290), 11, + 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_EQ, + ACTIONS(4288), 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, + [131796] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4294), 11, + 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_EQ, + ACTIONS(4292), 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, - [146796] = 3, + [131837] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3103), 10, + ACTIONS(4298), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -128955,8 +125989,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(3101), 25, - ts_builtin_sym_end, + anon_sym_EQ, + ACTIONS(4296), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -128965,9 +125999,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -128977,14 +126008,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [146839] = 3, + [131878] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3099), 10, + ACTIONS(4302), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -128995,8 +126027,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(3097), 25, - ts_builtin_sym_end, + anon_sym_EQ, + ACTIONS(4300), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -129005,9 +126037,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -129017,14 +126046,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [146882] = 3, + [131919] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3095), 10, + ACTIONS(4318), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -129035,8 +126065,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(3093), 25, - ts_builtin_sym_end, + anon_sym_EQ, + ACTIONS(4316), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -129045,9 +126075,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -129057,39 +126084,35 @@ static uint16_t ts_small_parse_table[] = { 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, - [146925] = 5, + [131960] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4016), 1, - anon_sym_COLON, - ACTIONS(4018), 1, - anon_sym_COLON_COLON, - ACTIONS(3075), 9, + ACTIONS(5127), 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(3073), 24, - ts_builtin_sym_end, + ACTIONS(5125), 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_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -129099,14 +126122,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [146972] = 3, + [132001] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3063), 10, + ACTIONS(4302), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -129117,8 +126141,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(3061), 25, - ts_builtin_sym_end, + anon_sym_EQ, + ACTIONS(4300), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -129127,9 +126151,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -129139,14 +126160,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [147015] = 3, + [132042] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3063), 10, + ACTIONS(4318), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -129157,8 +126179,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(3061), 25, - ts_builtin_sym_end, + anon_sym_EQ, + ACTIONS(4316), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -129167,9 +126189,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -129179,14 +126198,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [147058] = 3, + [132083] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3087), 10, + ACTIONS(5127), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -129197,8 +126217,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(3085), 25, - ts_builtin_sym_end, + ACTIONS(5125), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -129208,8 +126227,6 @@ static 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, anon_sym_POUND_QMARK_AT, @@ -129219,14 +126236,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [147101] = 3, + [132124] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3083), 10, + ACTIONS(4322), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -129237,8 +126255,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(3081), 25, - ts_builtin_sym_end, + anon_sym_EQ, + ACTIONS(4320), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -129247,9 +126265,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -129259,14 +126274,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [147144] = 3, + [132165] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3167), 10, + ACTIONS(4326), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -129277,8 +126293,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(3165), 25, - ts_builtin_sym_end, + anon_sym_EQ, + ACTIONS(4324), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -129287,9 +126303,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -129299,14 +126312,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [147187] = 3, + [132206] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3295), 10, + ACTIONS(4330), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -129317,8 +126331,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(3293), 25, - ts_builtin_sym_end, + anon_sym_EQ, + ACTIONS(4328), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -129327,9 +126341,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -129339,14 +126350,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [147230] = 3, + [132247] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3139), 10, + ACTIONS(4346), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -129357,8 +126369,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(3137), 25, - ts_builtin_sym_end, + anon_sym_EQ, + ACTIONS(4344), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -129367,9 +126379,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -129379,14 +126388,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [147273] = 3, + [132288] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3315), 10, + ACTIONS(4354), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -129397,8 +126407,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(3313), 25, - ts_builtin_sym_end, + anon_sym_EQ, + ACTIONS(4352), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -129407,9 +126417,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -129419,14 +126426,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [147316] = 3, + [132329] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3279), 10, + ACTIONS(4366), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -129437,8 +126445,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(3277), 25, - ts_builtin_sym_end, + anon_sym_EQ, + ACTIONS(4364), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -129447,9 +126455,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -129459,14 +126464,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [147359] = 3, + [132370] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3175), 10, + ACTIONS(4366), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -129477,8 +126483,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(3173), 25, - ts_builtin_sym_end, + anon_sym_EQ, + ACTIONS(4364), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -129487,9 +126493,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -129499,14 +126502,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [147402] = 3, + [132411] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3179), 10, + ACTIONS(4370), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -129517,8 +126521,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(3177), 25, - ts_builtin_sym_end, + anon_sym_EQ, + ACTIONS(4368), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -129527,9 +126531,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -129539,14 +126540,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [147445] = 3, + [132452] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3275), 10, + ACTIONS(4370), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -129557,8 +126559,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(3273), 25, - ts_builtin_sym_end, + anon_sym_EQ, + ACTIONS(4368), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -129567,9 +126569,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -129579,14 +126578,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [147488] = 3, + [132493] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3271), 10, + ACTIONS(4382), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -129597,8 +126597,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(3269), 25, - ts_builtin_sym_end, + anon_sym_EQ, + ACTIONS(4380), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -129607,9 +126607,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -129619,14 +126616,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [147531] = 3, + [132534] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3183), 10, + ACTIONS(4398), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -129637,8 +126635,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(3181), 25, - ts_builtin_sym_end, + anon_sym_EQ, + ACTIONS(4396), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -129647,9 +126645,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -129659,14 +126654,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [147574] = 3, + [132575] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3075), 10, + ACTIONS(4406), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -129677,8 +126673,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(3073), 25, - ts_builtin_sym_end, + anon_sym_EQ, + ACTIONS(4404), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -129687,9 +126683,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -129699,14 +126692,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [147617] = 3, + [132616] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3267), 10, + ACTIONS(4410), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -129717,8 +126711,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(3265), 25, - ts_builtin_sym_end, + anon_sym_EQ, + ACTIONS(4408), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -129727,9 +126721,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -129739,14 +126730,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [147660] = 3, + [132657] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3427), 10, + ACTIONS(4414), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -129757,8 +126749,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(3425), 25, - ts_builtin_sym_end, + anon_sym_EQ, + ACTIONS(4412), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -129767,9 +126759,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -129779,14 +126768,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [147703] = 3, + [132698] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3431), 10, + ACTIONS(4418), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -129797,8 +126787,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(3429), 25, - ts_builtin_sym_end, + anon_sym_EQ, + ACTIONS(4416), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -129807,9 +126797,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -129819,14 +126806,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [147746] = 3, + [132739] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3435), 10, + ACTIONS(4426), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -129837,8 +126825,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(3433), 25, - ts_builtin_sym_end, + anon_sym_EQ, + ACTIONS(4424), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -129847,9 +126835,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -129859,39 +126844,35 @@ static uint16_t ts_small_parse_table[] = { 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, - [147789] = 5, + [132780] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4016), 1, - anon_sym_COLON, - ACTIONS(4018), 1, - anon_sym_COLON_COLON, - ACTIONS(3283), 9, + ACTIONS(4430), 11, 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(3281), 24, - ts_builtin_sym_end, + anon_sym_EQ, + ACTIONS(4428), 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_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -129901,14 +126882,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [147836] = 3, + [132821] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3291), 10, + ACTIONS(4430), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -129919,8 +126901,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(3289), 25, - ts_builtin_sym_end, + anon_sym_EQ, + ACTIONS(4428), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -129929,9 +126911,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -129941,14 +126920,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [147879] = 3, + [132862] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3219), 10, + ACTIONS(4418), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -129959,8 +126939,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(3217), 25, - ts_builtin_sym_end, + anon_sym_EQ, + ACTIONS(4416), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -129969,9 +126949,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -129981,14 +126958,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [147922] = 3, + [132903] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3223), 10, + ACTIONS(4426), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -129999,8 +126977,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(3221), 25, - ts_builtin_sym_end, + anon_sym_EQ, + ACTIONS(4424), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -130009,9 +126987,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -130021,14 +126996,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [147965] = 3, + [132944] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3303), 10, + ACTIONS(4430), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -130039,8 +127015,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(3301), 25, - ts_builtin_sym_end, + anon_sym_EQ, + ACTIONS(4428), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -130049,9 +127025,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -130061,14 +127034,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [148008] = 3, + [132985] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3227), 10, + ACTIONS(4430), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -130079,8 +127053,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(3225), 25, - ts_builtin_sym_end, + anon_sym_EQ, + ACTIONS(4428), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -130089,9 +127063,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -130101,14 +127072,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [148051] = 3, + [133026] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3347), 10, + ACTIONS(4178), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -130119,8 +127091,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(3345), 25, - ts_builtin_sym_end, + anon_sym_EQ, + ACTIONS(4176), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -130129,9 +127101,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -130141,14 +127110,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [148094] = 3, + [133067] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3351), 10, + ACTIONS(4490), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -130159,8 +127129,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(3349), 25, - ts_builtin_sym_end, + anon_sym_EQ, + ACTIONS(4488), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -130169,9 +127139,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -130181,14 +127148,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [148137] = 3, + [133108] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3355), 10, + ACTIONS(4494), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -130199,8 +127167,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(3353), 25, - ts_builtin_sym_end, + anon_sym_EQ, + ACTIONS(4492), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -130209,9 +127177,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -130221,14 +127186,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [148180] = 3, + [133149] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3359), 10, + ACTIONS(4498), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -130239,8 +127205,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(3357), 25, - ts_builtin_sym_end, + anon_sym_EQ, + ACTIONS(4496), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -130249,9 +127215,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -130261,14 +127224,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [148223] = 3, + [133190] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3231), 10, + ACTIONS(4502), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -130279,8 +127243,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(3229), 25, - ts_builtin_sym_end, + anon_sym_EQ, + ACTIONS(4500), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -130289,9 +127253,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -130301,14 +127262,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [148266] = 3, + [133231] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3235), 10, + ACTIONS(4506), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -130319,8 +127281,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(3233), 25, - ts_builtin_sym_end, + anon_sym_EQ, + ACTIONS(4504), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -130329,9 +127291,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -130341,14 +127300,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [148309] = 3, + [133272] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3363), 10, + ACTIONS(4502), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -130359,8 +127319,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(3361), 25, - ts_builtin_sym_end, + anon_sym_EQ, + ACTIONS(4500), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -130369,9 +127329,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -130381,14 +127338,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [148352] = 3, + [133313] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3367), 10, + ACTIONS(4506), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -130399,8 +127357,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(3365), 25, - ts_builtin_sym_end, + anon_sym_EQ, + ACTIONS(4504), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -130409,9 +127367,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -130421,14 +127376,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [148395] = 3, + [133354] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3371), 10, + ACTIONS(4486), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -130439,8 +127395,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(3369), 25, - ts_builtin_sym_end, + anon_sym_EQ, + ACTIONS(4484), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -130449,9 +127405,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -130461,14 +127414,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [148438] = 3, + [133395] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3371), 10, + ACTIONS(4498), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -130479,8 +127433,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(3369), 25, - ts_builtin_sym_end, + anon_sym_EQ, + ACTIONS(4496), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -130489,9 +127443,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -130501,14 +127452,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [148481] = 3, + [133436] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3299), 10, + ACTIONS(4502), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -130519,8 +127471,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(3297), 25, - ts_builtin_sym_end, + anon_sym_EQ, + ACTIONS(4500), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -130529,9 +127481,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -130541,14 +127490,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [148524] = 3, + [133477] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3239), 10, + ACTIONS(4506), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -130559,8 +127509,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(3237), 25, - ts_builtin_sym_end, + anon_sym_EQ, + ACTIONS(4504), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -130569,9 +127519,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -130581,14 +127528,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [148567] = 3, + [133518] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3363), 10, + ACTIONS(4502), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -130599,8 +127547,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(3361), 25, - ts_builtin_sym_end, + anon_sym_EQ, + ACTIONS(4500), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -130609,9 +127557,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -130621,14 +127566,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [148610] = 3, + [133559] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3367), 10, + ACTIONS(4506), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -130639,8 +127585,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(3365), 25, - ts_builtin_sym_end, + anon_sym_EQ, + ACTIONS(4504), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -130649,9 +127595,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -130661,14 +127604,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [148653] = 3, + [133600] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3287), 10, + ACTIONS(4486), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -130679,8 +127623,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(3285), 25, - ts_builtin_sym_end, + anon_sym_EQ, + ACTIONS(4484), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -130689,9 +127633,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -130701,14 +127642,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [148696] = 3, + [133641] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3371), 10, + ACTIONS(4514), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -130719,8 +127661,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(3369), 25, - ts_builtin_sym_end, + anon_sym_EQ, + ACTIONS(4512), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -130729,9 +127671,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -130741,14 +127680,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [148739] = 3, + [133682] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3091), 10, + ACTIONS(4442), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -130759,8 +127699,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(3089), 25, - ts_builtin_sym_end, + anon_sym_EQ, + ACTIONS(4440), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -130769,9 +127709,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -130781,14 +127718,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [148782] = 3, + [133723] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3343), 10, + ACTIONS(4442), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -130799,8 +127737,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(3341), 25, - ts_builtin_sym_end, + anon_sym_EQ, + ACTIONS(4440), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -130809,9 +127747,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -130821,14 +127756,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [148825] = 3, + [133764] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3135), 10, + ACTIONS(4438), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -130839,8 +127775,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(3133), 25, - ts_builtin_sym_end, + anon_sym_EQ, + ACTIONS(4436), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -130849,9 +127785,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -130861,14 +127794,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [148868] = 3, + [133805] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3067), 10, + ACTIONS(4434), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -130879,8 +127813,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(3065), 25, - ts_builtin_sym_end, + anon_sym_EQ, + ACTIONS(4432), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -130889,9 +127823,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -130901,14 +127832,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [148911] = 3, + [133846] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3243), 10, + ACTIONS(4442), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -130919,8 +127851,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(3241), 25, - ts_builtin_sym_end, + anon_sym_EQ, + ACTIONS(4440), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -130929,9 +127861,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -130941,14 +127870,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [148954] = 3, + [133887] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3263), 10, + ACTIONS(4442), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -130959,8 +127889,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(3261), 25, - ts_builtin_sym_end, + anon_sym_EQ, + ACTIONS(4440), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -130969,9 +127899,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -130981,14 +127908,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [148997] = 3, + [133928] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3251), 10, + ACTIONS(4438), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -130999,8 +127927,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(3249), 25, - ts_builtin_sym_end, + anon_sym_EQ, + ACTIONS(4436), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -131009,9 +127937,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -131021,14 +127946,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [149040] = 3, + [133969] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3423), 10, + ACTIONS(4434), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -131039,8 +127965,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(3421), 25, - ts_builtin_sym_end, + anon_sym_EQ, + ACTIONS(4432), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -131049,9 +127975,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -131061,14 +127984,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [149083] = 3, + [134010] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3423), 10, + ACTIONS(4274), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -131079,8 +128003,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(3421), 25, - ts_builtin_sym_end, + anon_sym_EQ, + ACTIONS(4272), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -131089,9 +128013,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -131101,14 +128022,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [149126] = 3, + [134051] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3211), 10, + ACTIONS(4274), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -131119,8 +128041,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(3209), 25, - ts_builtin_sym_end, + anon_sym_EQ, + ACTIONS(4272), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -131129,9 +128051,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_POUND0A, anon_sym_POUND0a, anon_sym_POUND_QMARK_AT, @@ -131141,14 +128060,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [149169] = 3, + [134092] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3207), 10, + ACTIONS(5127), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -131159,8 +128079,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(3205), 25, - ts_builtin_sym_end, + ACTIONS(5125), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -131170,8 +128089,6 @@ static 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, anon_sym_POUND_QMARK_AT, @@ -131181,14 +128098,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [149212] = 3, + [134133] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3203), 10, + ACTIONS(5127), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -131199,8 +128117,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(3201), 25, - ts_builtin_sym_end, + ACTIONS(5125), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -131210,8 +128127,6 @@ static 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, anon_sym_POUND_QMARK_AT, @@ -131221,14 +128136,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [149255] = 3, + [134174] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3247), 10, + ACTIONS(5131), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -131239,8 +128155,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(3245), 25, - ts_builtin_sym_end, + ACTIONS(5129), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -131250,8 +128165,6 @@ static 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, anon_sym_POUND_QMARK_AT, @@ -131261,14 +128174,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [149298] = 3, + [134215] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3199), 10, + ACTIONS(5131), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -131279,8 +128193,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(3197), 25, - ts_builtin_sym_end, + ACTIONS(5129), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -131290,8 +128203,6 @@ static 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, anon_sym_POUND_QMARK_AT, @@ -131301,14 +128212,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [149341] = 3, + [134256] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3259), 10, + ACTIONS(5131), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -131319,8 +128231,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(3257), 25, - ts_builtin_sym_end, + ACTIONS(5129), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -131330,8 +128241,6 @@ static 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, anon_sym_POUND_QMARK_AT, @@ -131341,14 +128250,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [149384] = 3, + [134297] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3091), 10, + ACTIONS(5131), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -131359,8 +128269,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(3089), 25, - ts_builtin_sym_end, + ACTIONS(5129), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -131370,8 +128279,6 @@ static 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, anon_sym_POUND_QMARK_AT, @@ -131381,14 +128288,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [149427] = 3, + [134338] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3195), 10, + ACTIONS(5135), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -131399,8 +128307,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(3193), 25, - ts_builtin_sym_end, + ACTIONS(5133), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -131410,8 +128317,6 @@ static 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, anon_sym_POUND_QMARK_AT, @@ -131421,14 +128326,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [149470] = 3, + [134379] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3391), 10, + ACTIONS(5135), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -131439,8 +128345,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(3389), 25, - ts_builtin_sym_end, + ACTIONS(5133), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -131450,8 +128355,6 @@ static 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, anon_sym_POUND_QMARK_AT, @@ -131461,14 +128364,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [149513] = 3, + [134420] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3411), 10, + ACTIONS(5135), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -131479,8 +128383,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(3409), 25, - ts_builtin_sym_end, + ACTIONS(5133), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -131490,8 +128393,6 @@ static 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, anon_sym_POUND_QMARK_AT, @@ -131501,1274 +128402,1345 @@ static uint16_t ts_small_parse_table[] = { 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, - [149556] = 3, + [134461] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3415), 10, + ACTIONS(4274), 3, 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(3413), 25, - ts_builtin_sym_end, + anon_sym_being, + ACTIONS(4272), 30, 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_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - 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, + anon_sym_cl, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [149599] = 3, + [134502] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3419), 10, + ACTIONS(4274), 3, 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(3417), 25, - ts_builtin_sym_end, + anon_sym_being, + ACTIONS(4272), 30, 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_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - 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, + anon_sym_cl, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [149642] = 3, + [134543] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3191), 10, + ACTIONS(4434), 3, 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(3189), 25, - ts_builtin_sym_end, + anon_sym_being, + ACTIONS(4432), 30, 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_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - 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, + anon_sym_cl, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [149685] = 3, + [134584] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3187), 10, + ACTIONS(4438), 3, 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(3185), 25, - ts_builtin_sym_end, + anon_sym_being, + ACTIONS(4436), 30, 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_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - 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, + anon_sym_cl, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [149728] = 3, + [134625] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3419), 10, + ACTIONS(4442), 3, 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(3417), 25, - ts_builtin_sym_end, + anon_sym_being, + ACTIONS(4440), 30, 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_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - 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, + anon_sym_cl, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [149771] = 6, + [134666] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4023), 1, - anon_sym_POUND_, - ACTIONS(4020), 2, + ACTIONS(4442), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(4440), 30, sym__ws, sym_comment, - STATE(1656), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(3027), 11, + anon_sym_POUND_, + 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_cl, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [134707] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4434), 3, 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_being, + ACTIONS(4432), 30, + 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, + anon_sym_SQUOTE, + anon_sym_COMMA_AT, anon_sym_cl, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, anon_sym_EQ, - ACTIONS(3029), 18, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [134748] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4438), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(4436), 30, + sym__ws, + sym_comment, + anon_sym_POUND_, 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, + anon_sym_cl, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [149820] = 6, + [134789] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4029), 1, - anon_sym_POUND_, - ACTIONS(4026), 2, + ACTIONS(4442), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(4440), 30, sym__ws, sym_comment, - STATE(1657), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(3027), 10, + anon_sym_POUND_, + 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_cl, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [134830] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4442), 3, 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(3029), 18, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + anon_sym_being, + ACTIONS(4440), 30, + sym__ws, + sym_comment, + anon_sym_POUND_, 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, + anon_sym_cl, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [149868] = 3, + [134871] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4034), 10, + ACTIONS(4514), 3, 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(4032), 23, + anon_sym_being, + ACTIONS(4512), 30, 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_RPAREN, - anon_sym_RBRACE, - 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, + anon_sym_cl, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [149909] = 4, + [134912] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4036), 1, - aux_sym_num_lit_token2, - ACTIONS(3057), 11, + ACTIONS(4486), 3, 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_EQ, - ACTIONS(3055), 21, + anon_sym_being, + ACTIONS(4484), 30, 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, + anon_sym_cl, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [149952] = 12, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(3954), 1, - aux_sym_num_lit_token1, - ACTIONS(3962), 1, - anon_sym_SQUOTE, - ACTIONS(3964), 1, - anon_sym_COMMA, - ACTIONS(3970), 1, - anon_sym_SLASH, - STATE(1863), 1, - sym_format_modifiers, - STATE(2268), 1, - sym__format_token, - STATE(2400), 1, - aux_sym_format_modifiers_repeat1, - STATE(3342), 1, - sym_format_directive_type, - ACTIONS(3956), 2, - anon_sym_COLON, - anon_sym_AT, - ACTIONS(3968), 2, - anon_sym_AT_COLON, - anon_sym_COLON_AT, - ACTIONS(3960), 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, - [150011] = 3, + [134953] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3107), 11, + ACTIONS(4506), 3, 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_EQ, - ACTIONS(3105), 21, + anon_sym_being, + ACTIONS(4504), 30, 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, + anon_sym_cl, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [150051] = 3, + [134994] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3399), 11, + ACTIONS(4502), 3, 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_EQ, - ACTIONS(3397), 21, + anon_sym_being, + ACTIONS(4500), 30, 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, + anon_sym_cl, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [150091] = 3, + [135035] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4040), 10, + ACTIONS(4506), 3, 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(4038), 22, + anon_sym_being, + ACTIONS(4504), 30, 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_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, + anon_sym_cl, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [150131] = 3, + [135076] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4040), 10, + ACTIONS(4502), 3, 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(4038), 22, + anon_sym_being, + ACTIONS(4500), 30, 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_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, + anon_sym_cl, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [150171] = 3, + [135117] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4040), 10, + ACTIONS(4498), 3, 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(4038), 22, + anon_sym_being, + ACTIONS(4496), 30, 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_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, + anon_sym_cl, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [150211] = 3, + [135158] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4040), 10, + ACTIONS(4486), 3, 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(4038), 22, + anon_sym_being, + ACTIONS(4484), 30, 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_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, + anon_sym_cl, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [150251] = 3, + [135199] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3423), 11, + ACTIONS(4506), 3, 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_EQ, - ACTIONS(3421), 21, + anon_sym_being, + ACTIONS(4504), 30, 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, + anon_sym_cl, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [150291] = 3, + [135240] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3423), 11, + ACTIONS(4502), 3, 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_EQ, - ACTIONS(3421), 21, + anon_sym_being, + ACTIONS(4500), 30, 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, + anon_sym_cl, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [150331] = 3, + [135281] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3419), 11, + ACTIONS(4506), 3, 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_EQ, - ACTIONS(3417), 21, + anon_sym_being, + ACTIONS(4504), 30, 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, + anon_sym_cl, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [150371] = 3, + [135322] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3415), 11, + ACTIONS(4502), 3, 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_EQ, - ACTIONS(3413), 21, + anon_sym_being, + ACTIONS(4500), 30, 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, + anon_sym_cl, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [150411] = 3, + [135363] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3411), 11, + ACTIONS(4498), 3, 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_EQ, - ACTIONS(3409), 21, + anon_sym_being, + ACTIONS(4496), 30, 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, + anon_sym_cl, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [150451] = 3, + [135404] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3411), 11, + ACTIONS(4494), 3, 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_EQ, - ACTIONS(3409), 21, + anon_sym_being, + ACTIONS(4492), 30, 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, + anon_sym_cl, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [150491] = 3, + [135445] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3419), 11, + ACTIONS(4490), 3, 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_EQ, - ACTIONS(3417), 21, + anon_sym_being, + ACTIONS(4488), 30, 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, + anon_sym_cl, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [150531] = 3, + [135486] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3415), 11, + ACTIONS(4178), 3, 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_EQ, - ACTIONS(3413), 21, + anon_sym_being, + ACTIONS(4176), 30, 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, + anon_sym_cl, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [150571] = 3, + [135527] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3411), 11, + ACTIONS(4430), 3, 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_EQ, - ACTIONS(3409), 21, + anon_sym_being, + ACTIONS(4428), 30, 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, + anon_sym_cl, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [150611] = 3, + [135568] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3411), 11, + ACTIONS(4430), 3, 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_EQ, - ACTIONS(3409), 21, + anon_sym_being, + ACTIONS(4428), 30, 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, + anon_sym_cl, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [150651] = 3, + [135609] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3407), 11, + ACTIONS(4426), 3, 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_EQ, - ACTIONS(3405), 21, + anon_sym_being, + ACTIONS(4424), 30, 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, + anon_sym_cl, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [150691] = 3, + [135650] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3403), 11, + ACTIONS(4418), 3, 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_EQ, - ACTIONS(3401), 21, + anon_sym_being, + ACTIONS(4416), 30, 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, + anon_sym_cl, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [150731] = 3, + [135691] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3399), 11, + ACTIONS(4430), 3, 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_EQ, - ACTIONS(3397), 21, + anon_sym_being, + ACTIONS(4428), 30, 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, + anon_sym_cl, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [150771] = 3, + [135732] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3395), 11, + ACTIONS(4430), 3, 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_EQ, - ACTIONS(3393), 21, + anon_sym_being, + ACTIONS(4428), 30, 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, + anon_sym_cl, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [150811] = 3, + [135773] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3399), 11, + ACTIONS(4426), 3, 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_EQ, - ACTIONS(3397), 21, + anon_sym_being, + ACTIONS(4424), 30, 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, + anon_sym_cl, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [150851] = 3, + [135814] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3395), 11, + ACTIONS(4418), 3, 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_EQ, - ACTIONS(3393), 21, + anon_sym_being, + ACTIONS(4416), 30, 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, + anon_sym_cl, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [150891] = 3, + [135855] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4044), 10, + ACTIONS(4414), 3, 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(4042), 22, + anon_sym_being, + ACTIONS(4412), 30, 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_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, + anon_sym_cl, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [150931] = 3, + [135896] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4044), 10, + ACTIONS(4170), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -132779,7 +129751,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4042), 22, + anon_sym_EQ, + ACTIONS(4168), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -132788,7 +129761,6 @@ static 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, @@ -132798,14 +129770,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [150971] = 3, + [135937] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3387), 11, + ACTIONS(5139), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -132816,8 +129789,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_EQ, - ACTIONS(3385), 21, + ACTIONS(5137), 23, + ts_builtin_sym_end, sym__ws, sym_comment, anon_sym_POUND_, @@ -132835,51 +129808,53 @@ static uint16_t ts_small_parse_table[] = { 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, - [151011] = 3, + [135978] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4044), 10, + ACTIONS(4410), 3, 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(4042), 22, + anon_sym_being, + ACTIONS(4408), 30, 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_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, + anon_sym_cl, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [151051] = 3, + [136019] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4044), 10, + ACTIONS(4234), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -132890,7 +129865,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4042), 22, + anon_sym_EQ, + ACTIONS(4232), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -132899,7 +129875,6 @@ static 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, @@ -132909,14 +129884,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [151091] = 3, + [136060] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4048), 10, + ACTIONS(4198), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -132927,7 +129903,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4046), 22, + anon_sym_EQ, + ACTIONS(4196), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -132936,7 +129913,6 @@ static 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, @@ -132946,14 +129922,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [151131] = 3, + [136101] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4048), 10, + ACTIONS(4230), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -132964,7 +129941,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4046), 22, + anon_sym_EQ, + ACTIONS(4228), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -132973,7 +129951,6 @@ static 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, @@ -132983,14 +129960,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [151171] = 3, + [136142] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4048), 10, + ACTIONS(4218), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -133001,7 +129979,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4046), 22, + anon_sym_EQ, + ACTIONS(4216), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -133010,7 +129989,6 @@ static 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, @@ -133020,14 +129998,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [151211] = 3, + [136183] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4048), 10, + ACTIONS(4206), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -133038,7 +130017,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4046), 22, + anon_sym_EQ, + ACTIONS(4204), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -133047,7 +130027,6 @@ static 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, @@ -133057,14 +130036,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [151251] = 3, + [136224] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4052), 10, + ACTIONS(4142), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -133075,7 +130055,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4050), 22, + anon_sym_EQ, + ACTIONS(4140), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -133084,7 +130065,6 @@ static 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, @@ -133094,51 +130074,53 @@ static uint16_t ts_small_parse_table[] = { 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, - [151291] = 3, + [136265] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4052), 10, + ACTIONS(4406), 3, 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(4050), 22, + anon_sym_being, + ACTIONS(4404), 30, 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_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, + anon_sym_cl, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [151331] = 3, + [136306] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4052), 10, + ACTIONS(4510), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -133149,7 +130131,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4050), 22, + anon_sym_EQ, + ACTIONS(4508), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -133158,7 +130141,6 @@ static 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, @@ -133168,14 +130150,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [151371] = 3, + [136347] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4052), 10, + ACTIONS(4194), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -133186,7 +130169,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4050), 22, + anon_sym_EQ, + ACTIONS(4192), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -133195,7 +130179,6 @@ static 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, @@ -133205,14 +130188,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [151411] = 3, + [136388] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3403), 11, + ACTIONS(4158), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -133224,7 +130208,7 @@ static uint16_t ts_small_parse_table[] = { sym_fancy_literal, anon_sym_cl, anon_sym_EQ, - ACTIONS(3401), 21, + ACTIONS(4156), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -133242,14 +130226,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [151451] = 3, + [136429] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3399), 11, + ACTIONS(4166), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -133261,7 +130246,7 @@ static uint16_t ts_small_parse_table[] = { sym_fancy_literal, anon_sym_cl, anon_sym_EQ, - ACTIONS(3397), 21, + ACTIONS(4164), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -133279,14 +130264,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [151491] = 3, + [136470] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3395), 11, + ACTIONS(4402), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -133298,7 +130284,7 @@ static uint16_t ts_small_parse_table[] = { sym_fancy_literal, anon_sym_cl, anon_sym_EQ, - ACTIONS(3393), 21, + ACTIONS(4400), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -133316,51 +130302,53 @@ static uint16_t ts_small_parse_table[] = { 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, - [151531] = 3, + [136511] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3183), 11, + ACTIONS(4398), 3, 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_EQ, - ACTIONS(3181), 21, + anon_sym_being, + ACTIONS(4396), 30, 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, + anon_sym_cl, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [151571] = 3, + [136552] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3395), 11, + ACTIONS(4162), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -133372,7 +130360,7 @@ static uint16_t ts_small_parse_table[] = { sym_fancy_literal, anon_sym_cl, anon_sym_EQ, - ACTIONS(3393), 21, + ACTIONS(4160), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -133390,14 +130378,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [151611] = 3, + [136593] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3387), 11, + ACTIONS(4174), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -133409,7 +130398,7 @@ static uint16_t ts_small_parse_table[] = { sym_fancy_literal, anon_sym_cl, anon_sym_EQ, - ACTIONS(3385), 21, + ACTIONS(4172), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -133427,14 +130416,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [151651] = 3, + [136634] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3383), 11, + ACTIONS(4154), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -133446,7 +130436,7 @@ static uint16_t ts_small_parse_table[] = { sym_fancy_literal, anon_sym_cl, anon_sym_EQ, - ACTIONS(3381), 21, + ACTIONS(4152), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -133464,14 +130454,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [151691] = 3, + [136675] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3379), 11, + ACTIONS(5135), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -133482,8 +130473,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_EQ, - ACTIONS(3377), 21, + ACTIONS(5133), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -133492,6 +130482,7 @@ static 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, @@ -133501,88 +130492,91 @@ static uint16_t ts_small_parse_table[] = { 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, - [151731] = 3, + [136716] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3375), 11, + ACTIONS(4370), 3, 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_EQ, - ACTIONS(3373), 21, + anon_sym_being, + ACTIONS(4368), 30, 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, + anon_sym_cl, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [151771] = 3, + [136757] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3371), 11, + ACTIONS(4370), 3, 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_EQ, - ACTIONS(3369), 21, + anon_sym_being, + ACTIONS(4368), 30, 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, + anon_sym_cl, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [151811] = 3, + [136798] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3371), 11, + ACTIONS(4150), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -133594,7 +130588,7 @@ static uint16_t ts_small_parse_table[] = { sym_fancy_literal, anon_sym_cl, anon_sym_EQ, - ACTIONS(3369), 21, + ACTIONS(4148), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -133612,88 +130606,129 @@ static uint16_t ts_small_parse_table[] = { 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, - [151851] = 3, + [136839] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3367), 11, + ACTIONS(4366), 3, 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_EQ, - ACTIONS(3365), 21, + anon_sym_being, + ACTIONS(4364), 30, 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, + anon_sym_cl, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [151891] = 3, + [136880] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3363), 11, + ACTIONS(4366), 3, 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_being, + ACTIONS(4364), 30, + 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, + anon_sym_SQUOTE, + anon_sym_COMMA_AT, anon_sym_cl, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, anon_sym_EQ, - ACTIONS(3361), 21, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [136921] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4354), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(4352), 30, 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, + anon_sym_cl, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [151931] = 3, + [136962] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3371), 11, + ACTIONS(4182), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -133705,7 +130740,7 @@ static uint16_t ts_small_parse_table[] = { sym_fancy_literal, anon_sym_cl, anon_sym_EQ, - ACTIONS(3369), 21, + ACTIONS(4180), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -133723,14 +130758,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [151971] = 3, + [137003] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3371), 11, + ACTIONS(4186), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -133742,7 +130778,7 @@ static uint16_t ts_small_parse_table[] = { sym_fancy_literal, anon_sym_cl, anon_sym_EQ, - ACTIONS(3369), 21, + ACTIONS(4184), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -133760,14 +130796,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [152011] = 3, + [137044] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3367), 11, + ACTIONS(4190), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -133779,7 +130816,7 @@ static uint16_t ts_small_parse_table[] = { sym_fancy_literal, anon_sym_cl, anon_sym_EQ, - ACTIONS(3365), 21, + ACTIONS(4188), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -133797,51 +130834,91 @@ static uint16_t ts_small_parse_table[] = { 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, - [152051] = 3, + [137085] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3363), 11, + ACTIONS(4346), 3, 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_being, + ACTIONS(4344), 30, + 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, + anon_sym_SQUOTE, + anon_sym_COMMA_AT, anon_sym_cl, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, anon_sym_EQ, - ACTIONS(3361), 21, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [137126] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4330), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(4328), 30, 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, + anon_sym_cl, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [152091] = 3, + [137167] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3359), 11, + ACTIONS(4202), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -133853,7 +130930,7 @@ static uint16_t ts_small_parse_table[] = { sym_fancy_literal, anon_sym_cl, anon_sym_EQ, - ACTIONS(3357), 21, + ACTIONS(4200), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -133871,14 +130948,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [152131] = 3, + [137208] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3355), 11, + ACTIONS(4210), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -133890,7 +130968,7 @@ static uint16_t ts_small_parse_table[] = { sym_fancy_literal, anon_sym_cl, anon_sym_EQ, - ACTIONS(3353), 21, + ACTIONS(4208), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -133908,14 +130986,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [152171] = 3, + [137249] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3351), 11, + ACTIONS(4214), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -133927,7 +131006,7 @@ static uint16_t ts_small_parse_table[] = { sym_fancy_literal, anon_sym_cl, anon_sym_EQ, - ACTIONS(3349), 21, + ACTIONS(4212), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -133945,51 +131024,53 @@ static uint16_t ts_small_parse_table[] = { 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, - [152211] = 3, + [137290] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3347), 11, + ACTIONS(4318), 3, 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_EQ, - ACTIONS(3345), 21, + anon_sym_being, + ACTIONS(4316), 30, 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, + anon_sym_cl, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [152251] = 3, + [137331] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4056), 10, + ACTIONS(4222), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -134000,7 +131081,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4054), 22, + anon_sym_EQ, + ACTIONS(4220), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -134009,7 +131091,6 @@ static 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, @@ -134019,51 +131100,100 @@ static uint16_t ts_small_parse_table[] = { 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, - [152291] = 3, + [137372] = 12, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3343), 11, - anon_sym_POUND, - anon_sym_DOT, + ACTIONS(5037), 1, aux_sym_num_lit_token1, + ACTIONS(5045), 1, + anon_sym_SQUOTE, + ACTIONS(5047), 1, + anon_sym_COMMA, + ACTIONS(5053), 1, + anon_sym_SLASH, + STATE(1957), 1, + sym_format_modifiers, + STATE(2291), 1, + sym__format_token, + STATE(2420), 1, + aux_sym_format_modifiers_repeat1, + STATE(3346), 1, + sym_format_directive_type, + ACTIONS(5039), 2, anon_sym_COLON, - sym_nil_lit, - aux_sym_sym_lit_token1, + anon_sym_AT, + ACTIONS(5051), 2, + anon_sym_AT_COLON, + anon_sym_COLON_AT, + ACTIONS(5043), 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, + [137431] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4302), 3, + anon_sym_POUND, anon_sym_POUND_QMARK, - anon_sym_COMMA, - sym_fancy_literal, - anon_sym_cl, - anon_sym_EQ, - ACTIONS(3341), 21, + anon_sym_being, + ACTIONS(4300), 30, 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, + anon_sym_cl, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [152331] = 3, + [137472] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3339), 11, + ACTIONS(4226), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -134075,7 +131205,7 @@ static uint16_t ts_small_parse_table[] = { sym_fancy_literal, anon_sym_cl, anon_sym_EQ, - ACTIONS(3337), 21, + ACTIONS(4224), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -134093,51 +131223,53 @@ static uint16_t ts_small_parse_table[] = { 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, - [152371] = 3, + [137513] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3339), 11, + ACTIONS(4318), 3, 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_EQ, - ACTIONS(3337), 21, + anon_sym_being, + ACTIONS(4316), 30, 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, + anon_sym_cl, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [152411] = 3, + [137554] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3335), 11, + ACTIONS(5143), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -134148,8 +131280,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_EQ, - ACTIONS(3333), 21, + ACTIONS(5141), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -134158,6 +131289,7 @@ static 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, @@ -134167,14 +131299,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [152451] = 3, + [137595] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3335), 11, + ACTIONS(4238), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -134186,7 +131319,7 @@ static uint16_t ts_small_parse_table[] = { sym_fancy_literal, anon_sym_cl, anon_sym_EQ, - ACTIONS(3333), 21, + ACTIONS(4236), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -134204,14 +131337,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [152491] = 3, + [137636] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3331), 11, + ACTIONS(4242), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -134223,7 +131357,7 @@ static uint16_t ts_small_parse_table[] = { sym_fancy_literal, anon_sym_cl, anon_sym_EQ, - ACTIONS(3329), 21, + ACTIONS(4240), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -134241,14 +131375,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [152531] = 3, + [137677] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3327), 11, + ACTIONS(4246), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -134260,7 +131395,7 @@ static uint16_t ts_small_parse_table[] = { sym_fancy_literal, anon_sym_cl, anon_sym_EQ, - ACTIONS(3325), 21, + ACTIONS(4244), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -134278,14 +131413,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [152571] = 3, + [137718] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3323), 11, + ACTIONS(4250), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -134297,7 +131433,7 @@ static uint16_t ts_small_parse_table[] = { sym_fancy_literal, anon_sym_cl, anon_sym_EQ, - ACTIONS(3321), 21, + ACTIONS(4248), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -134315,14 +131451,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [152611] = 3, + [137759] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3319), 11, + ACTIONS(4254), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -134334,7 +131471,7 @@ static uint16_t ts_small_parse_table[] = { sym_fancy_literal, anon_sym_cl, anon_sym_EQ, - ACTIONS(3317), 21, + ACTIONS(4252), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -134352,14 +131489,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [152651] = 3, + [137800] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3315), 11, + ACTIONS(4258), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -134371,7 +131509,7 @@ static uint16_t ts_small_parse_table[] = { sym_fancy_literal, anon_sym_cl, anon_sym_EQ, - ACTIONS(3313), 21, + ACTIONS(4256), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -134389,14 +131527,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [152691] = 3, + [137841] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3311), 11, + ACTIONS(4266), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -134408,7 +131547,7 @@ static uint16_t ts_small_parse_table[] = { sym_fancy_literal, anon_sym_cl, anon_sym_EQ, - ACTIONS(3309), 21, + ACTIONS(4264), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -134426,14 +131565,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [152731] = 3, + [137882] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3307), 11, + ACTIONS(4270), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -134445,7 +131585,7 @@ static uint16_t ts_small_parse_table[] = { sym_fancy_literal, anon_sym_cl, anon_sym_EQ, - ACTIONS(3305), 21, + ACTIONS(4268), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -134463,14 +131603,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [152771] = 3, + [137923] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3311), 11, + ACTIONS(4278), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -134482,7 +131623,7 @@ static uint16_t ts_small_parse_table[] = { sym_fancy_literal, anon_sym_cl, anon_sym_EQ, - ACTIONS(3309), 21, + ACTIONS(4276), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -134500,14 +131641,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [152811] = 3, + [137964] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3307), 11, + ACTIONS(4358), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -134519,7 +131661,7 @@ static uint16_t ts_small_parse_table[] = { sym_fancy_literal, anon_sym_cl, anon_sym_EQ, - ACTIONS(3305), 21, + ACTIONS(4356), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -134537,14 +131679,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [152851] = 3, + [138005] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3303), 11, + ACTIONS(4362), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -134556,7 +131699,7 @@ static uint16_t ts_small_parse_table[] = { sym_fancy_literal, anon_sym_cl, anon_sym_EQ, - ACTIONS(3301), 21, + ACTIONS(4360), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -134574,14 +131717,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [152891] = 3, + [138046] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3299), 11, + ACTIONS(4374), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -134593,7 +131737,7 @@ static uint16_t ts_small_parse_table[] = { sym_fancy_literal, anon_sym_cl, anon_sym_EQ, - ACTIONS(3297), 21, + ACTIONS(4372), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -134611,51 +131755,53 @@ static uint16_t ts_small_parse_table[] = { 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, - [152931] = 3, + [138087] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3091), 11, + ACTIONS(4302), 3, 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_EQ, - ACTIONS(3089), 21, + anon_sym_being, + ACTIONS(4300), 30, 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, + anon_sym_cl, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [152971] = 3, + [138128] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3091), 11, + ACTIONS(4482), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -134667,7 +131813,7 @@ static uint16_t ts_small_parse_table[] = { sym_fancy_literal, anon_sym_cl, anon_sym_EQ, - ACTIONS(3089), 21, + ACTIONS(4480), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -134685,14 +131831,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [153011] = 3, + [138169] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3251), 11, + ACTIONS(4478), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -134704,7 +131851,7 @@ static uint16_t ts_small_parse_table[] = { sym_fancy_literal, anon_sym_cl, anon_sym_EQ, - ACTIONS(3249), 21, + ACTIONS(4476), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -134722,14 +131869,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [153051] = 3, + [138210] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3287), 11, + ACTIONS(4474), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -134741,7 +131889,7 @@ static uint16_t ts_small_parse_table[] = { sym_fancy_literal, anon_sym_cl, anon_sym_EQ, - ACTIONS(3285), 21, + ACTIONS(4472), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -134759,88 +131907,129 @@ static uint16_t ts_small_parse_table[] = { 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, - [153091] = 3, + [138251] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3063), 11, + ACTIONS(4298), 3, 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_EQ, - ACTIONS(3061), 21, + anon_sym_being, + ACTIONS(4296), 30, 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, + anon_sym_cl, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [153131] = 3, + [138292] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3063), 11, + ACTIONS(4294), 3, 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_being, + ACTIONS(4292), 30, + 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, + anon_sym_SQUOTE, + anon_sym_COMMA_AT, anon_sym_cl, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, anon_sym_EQ, - ACTIONS(3061), 21, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [138333] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4234), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(4232), 30, 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, + anon_sym_cl, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [153171] = 3, + [138374] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4060), 10, + ACTIONS(5119), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -134851,7 +132040,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4058), 22, + ACTIONS(5117), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -134870,51 +132059,53 @@ static uint16_t ts_small_parse_table[] = { 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, - [153211] = 3, + [138415] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4060), 10, + ACTIONS(4234), 3, 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(4058), 22, + anon_sym_being, + ACTIONS(4232), 30, 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_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, + anon_sym_cl, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [153251] = 3, + [138456] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3279), 11, + ACTIONS(4470), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -134926,7 +132117,7 @@ static uint16_t ts_small_parse_table[] = { sym_fancy_literal, anon_sym_cl, anon_sym_EQ, - ACTIONS(3277), 21, + ACTIONS(4468), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -134944,88 +132135,129 @@ static uint16_t ts_small_parse_table[] = { 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, - [153291] = 3, + [138497] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3275), 11, + ACTIONS(4198), 3, 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_EQ, - ACTIONS(3273), 21, + anon_sym_being, + ACTIONS(4196), 30, 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, + anon_sym_cl, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [153331] = 3, + [138538] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3271), 11, + ACTIONS(4230), 3, 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_being, + ACTIONS(4228), 30, + 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, + anon_sym_SQUOTE, + anon_sym_COMMA_AT, anon_sym_cl, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, anon_sym_EQ, - ACTIONS(3269), 21, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [138579] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4218), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(4216), 30, 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, + anon_sym_cl, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [153371] = 3, + [138620] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4064), 10, + ACTIONS(5147), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -135036,7 +132268,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4062), 22, + ACTIONS(5145), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -135055,14 +132287,53 @@ static uint16_t ts_small_parse_table[] = { 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, - [153411] = 3, + [138661] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4064), 10, + ACTIONS(4206), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(4204), 30, + 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, + anon_sym_SQUOTE, + anon_sym_COMMA_AT, + anon_sym_cl, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [138702] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(5151), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -135073,7 +132344,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4062), 22, + ACTIONS(5149), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -135092,14 +132363,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [153451] = 3, + [138743] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3267), 11, + ACTIONS(5151), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -135110,8 +132382,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_EQ, - ACTIONS(3265), 21, + ACTIONS(5149), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -135120,6 +132391,7 @@ static 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, @@ -135129,14 +132401,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [153491] = 3, + [138784] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4064), 10, + ACTIONS(4466), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -135147,7 +132420,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4062), 22, + anon_sym_EQ, + ACTIONS(4464), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -135156,7 +132430,6 @@ static 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, @@ -135166,51 +132439,53 @@ static uint16_t ts_small_parse_table[] = { 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, - [153531] = 3, + [138825] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4064), 10, + ACTIONS(4510), 3, 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(4062), 22, + anon_sym_being, + ACTIONS(4508), 30, 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_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, + anon_sym_cl, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [153571] = 3, + [138866] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3263), 11, + ACTIONS(4462), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -135222,7 +132497,7 @@ static uint16_t ts_small_parse_table[] = { sym_fancy_literal, anon_sym_cl, anon_sym_EQ, - ACTIONS(3261), 21, + ACTIONS(4460), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -135240,14 +132515,53 @@ static uint16_t ts_small_parse_table[] = { 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, - [153611] = 3, + [138907] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4068), 10, + ACTIONS(4194), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(4192), 30, + 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, + anon_sym_SQUOTE, + anon_sym_COMMA_AT, + anon_sym_cl, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [138948] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4458), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -135258,7 +132572,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4066), 22, + anon_sym_EQ, + ACTIONS(4456), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -135267,7 +132582,6 @@ static 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, @@ -135277,14 +132591,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [153651] = 3, + [138989] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4068), 10, + ACTIONS(5119), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -135295,7 +132610,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4066), 22, + ACTIONS(5117), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -135314,14 +132629,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [153691] = 3, + [139030] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3259), 11, + ACTIONS(4454), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -135333,7 +132649,7 @@ static uint16_t ts_small_parse_table[] = { sym_fancy_literal, anon_sym_cl, anon_sym_EQ, - ACTIONS(3257), 21, + ACTIONS(4452), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -135351,14 +132667,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [153731] = 3, + [139071] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4068), 10, + ACTIONS(5155), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -135369,7 +132686,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4066), 22, + ACTIONS(5153), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -135388,14 +132705,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [153771] = 3, + [139112] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4068), 10, + ACTIONS(4450), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -135406,7 +132724,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4066), 22, + anon_sym_EQ, + ACTIONS(4448), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -135415,7 +132734,6 @@ static 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, @@ -135425,14 +132743,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [153811] = 3, + [139153] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4072), 10, + ACTIONS(4446), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -135443,7 +132762,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4070), 22, + anon_sym_EQ, + ACTIONS(4444), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -135452,7 +132772,6 @@ static 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, @@ -135462,14 +132781,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [153851] = 3, + [139194] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4072), 10, + ACTIONS(4422), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -135480,7 +132800,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4070), 22, + anon_sym_EQ, + ACTIONS(4420), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -135489,7 +132810,6 @@ static 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, @@ -135499,14 +132819,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [153891] = 3, + [139235] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4072), 10, + ACTIONS(4374), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -135517,7 +132838,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4070), 22, + anon_sym_EQ, + ACTIONS(4372), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -135526,7 +132848,6 @@ static 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, @@ -135536,14 +132857,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [153931] = 3, + [139276] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4072), 10, + ACTIONS(4146), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -135554,7 +132876,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4070), 22, + anon_sym_EQ, + ACTIONS(4144), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -135563,7 +132886,6 @@ static 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, @@ -135573,14 +132895,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [153971] = 3, + [139317] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3255), 11, + ACTIONS(4394), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -135592,7 +132915,7 @@ static uint16_t ts_small_parse_table[] = { sym_fancy_literal, anon_sym_cl, anon_sym_EQ, - ACTIONS(3253), 21, + ACTIONS(4392), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -135610,14 +132933,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [154011] = 3, + [139358] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3291), 11, + ACTIONS(4390), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -135629,7 +132953,7 @@ static uint16_t ts_small_parse_table[] = { sym_fancy_literal, anon_sym_cl, anon_sym_EQ, - ACTIONS(3289), 21, + ACTIONS(4388), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -135647,14 +132971,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [154051] = 3, + [139399] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3247), 11, + ACTIONS(4386), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -135666,7 +132991,7 @@ static uint16_t ts_small_parse_table[] = { sym_fancy_literal, anon_sym_cl, anon_sym_EQ, - ACTIONS(3245), 21, + ACTIONS(4384), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -135684,14 +133009,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [154091] = 3, + [139440] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3243), 11, + ACTIONS(4378), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -135703,7 +133029,7 @@ static uint16_t ts_small_parse_table[] = { sym_fancy_literal, anon_sym_cl, anon_sym_EQ, - ACTIONS(3241), 21, + ACTIONS(4376), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -135721,14 +133047,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [154131] = 3, + [139481] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3239), 11, + ACTIONS(4374), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -135740,7 +133067,7 @@ static uint16_t ts_small_parse_table[] = { sym_fancy_literal, anon_sym_cl, anon_sym_EQ, - ACTIONS(3237), 21, + ACTIONS(4372), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -135758,18 +133085,22 @@ static uint16_t ts_small_parse_table[] = { 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, - [154171] = 3, + [139522] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3235), 11, + ACTIONS(5157), 1, + anon_sym_COLON, + ACTIONS(5159), 1, + anon_sym_COLON_COLON, + ACTIONS(4342), 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, @@ -135777,11 +133108,10 @@ static uint16_t ts_small_parse_table[] = { sym_fancy_literal, anon_sym_cl, anon_sym_EQ, - ACTIONS(3233), 21, + ACTIONS(4340), 21, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -135795,14 +133125,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [154211] = 3, + [139567] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3231), 11, + ACTIONS(4350), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -135814,7 +133145,7 @@ static uint16_t ts_small_parse_table[] = { sym_fancy_literal, anon_sym_cl, anon_sym_EQ, - ACTIONS(3229), 21, + ACTIONS(4348), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -135832,51 +133163,91 @@ static uint16_t ts_small_parse_table[] = { 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, - [154251] = 3, + [139608] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3227), 11, + ACTIONS(4174), 3, 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_being, + ACTIONS(4172), 30, + 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, + anon_sym_SQUOTE, + anon_sym_COMMA_AT, anon_sym_cl, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, anon_sym_EQ, - ACTIONS(3225), 21, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [139649] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4154), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(4152), 30, 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, + anon_sym_cl, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [154291] = 3, + [139690] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3223), 11, + ACTIONS(5155), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -135887,8 +133258,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_EQ, - ACTIONS(3221), 21, + ACTIONS(5153), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -135897,6 +133267,7 @@ static 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, @@ -135906,14 +133277,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [154331] = 3, + [139731] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3219), 11, + ACTIONS(4342), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -135925,7 +133297,7 @@ static uint16_t ts_small_parse_table[] = { sym_fancy_literal, anon_sym_cl, anon_sym_EQ, - ACTIONS(3217), 21, + ACTIONS(4340), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -135943,14 +133315,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [154371] = 3, + [139772] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3215), 11, + ACTIONS(5155), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -135961,8 +133334,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_EQ, - ACTIONS(3213), 21, + ACTIONS(5153), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -135971,6 +133343,7 @@ static 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, @@ -135980,14 +133353,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [154411] = 3, + [139813] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3211), 11, + ACTIONS(5163), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -135998,8 +133372,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_EQ, - ACTIONS(3209), 21, + ACTIONS(5161), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -136008,6 +133381,7 @@ static 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, @@ -136017,14 +133391,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [154451] = 3, + [139854] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3207), 11, + ACTIONS(5163), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -136035,8 +133410,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_EQ, - ACTIONS(3205), 21, + ACTIONS(5161), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -136045,6 +133419,7 @@ static 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, @@ -136054,14 +133429,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [154491] = 3, + [139895] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3203), 11, + ACTIONS(5163), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -136072,8 +133448,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_EQ, - ACTIONS(3201), 21, + ACTIONS(5161), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -136082,6 +133457,7 @@ static 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, @@ -136091,14 +133467,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [154531] = 3, + [139936] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3199), 11, + ACTIONS(5163), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -136109,8 +133486,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_EQ, - ACTIONS(3197), 21, + ACTIONS(5161), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -136119,6 +133495,7 @@ static 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, @@ -136128,14 +133505,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [154571] = 3, + [139977] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3195), 11, + ACTIONS(5167), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -136146,8 +133524,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_EQ, - ACTIONS(3193), 21, + ACTIONS(5165), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -136156,6 +133533,7 @@ static 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, @@ -136165,14 +133543,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [154611] = 3, + [140018] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3191), 11, + ACTIONS(5167), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -136183,8 +133562,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_EQ, - ACTIONS(3189), 21, + ACTIONS(5165), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -136193,6 +133571,7 @@ static 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, @@ -136202,14 +133581,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [154651] = 3, + [140059] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3187), 11, + ACTIONS(5171), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -136220,8 +133600,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_EQ, - ACTIONS(3185), 21, + ACTIONS(5169), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -136230,6 +133609,7 @@ static 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, @@ -136239,14 +133619,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [154691] = 3, + [140100] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4076), 10, + ACTIONS(5171), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -136257,7 +133638,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4074), 22, + ACTIONS(5169), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -136276,14 +133657,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [154731] = 3, + [140141] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3179), 11, + ACTIONS(4338), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -136295,7 +133677,7 @@ static uint16_t ts_small_parse_table[] = { sym_fancy_literal, anon_sym_cl, anon_sym_EQ, - ACTIONS(3177), 21, + ACTIONS(4336), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -136313,14 +133695,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [154771] = 3, + [140182] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3175), 11, + ACTIONS(5155), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -136331,8 +133714,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_EQ, - ACTIONS(3173), 21, + ACTIONS(5153), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -136341,6 +133723,7 @@ static 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, @@ -136350,14 +133733,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [154811] = 3, + [140223] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3171), 11, + ACTIONS(4334), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -136369,7 +133753,7 @@ static uint16_t ts_small_parse_table[] = { sym_fancy_literal, anon_sym_cl, anon_sym_EQ, - ACTIONS(3169), 21, + ACTIONS(4332), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -136387,14 +133771,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [154851] = 3, + [140264] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3167), 11, + ACTIONS(4314), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -136406,7 +133791,7 @@ static uint16_t ts_small_parse_table[] = { sym_fancy_literal, anon_sym_cl, anon_sym_EQ, - ACTIONS(3165), 21, + ACTIONS(4312), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -136424,18 +133809,22 @@ static uint16_t ts_small_parse_table[] = { 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, - [154891] = 3, + [140305] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3067), 11, + ACTIONS(5157), 1, + anon_sym_COLON, + ACTIONS(5159), 1, + anon_sym_COLON_COLON, + ACTIONS(4306), 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, @@ -136443,11 +133832,10 @@ static uint16_t ts_small_parse_table[] = { sym_fancy_literal, anon_sym_cl, anon_sym_EQ, - ACTIONS(3065), 21, + ACTIONS(4304), 21, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, anon_sym_DQUOTE, anon_sym_CARET, anon_sym_POUND_CARET, @@ -136461,51 +133849,53 @@ static uint16_t ts_small_parse_table[] = { 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, - [154931] = 3, + [140350] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3163), 11, + ACTIONS(4150), 3, 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_EQ, - ACTIONS(3161), 21, + anon_sym_being, + ACTIONS(4148), 30, 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, + anon_sym_cl, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [154971] = 3, + [140391] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3159), 11, + ACTIONS(5175), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -136516,8 +133906,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_EQ, - ACTIONS(3157), 21, + ACTIONS(5173), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -136526,6 +133915,7 @@ static 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, @@ -136535,51 +133925,53 @@ static uint16_t ts_small_parse_table[] = { 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, - [155011] = 3, + [140432] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3391), 1, - anon_sym_COLON, - ACTIONS(3389), 31, + ACTIONS(4170), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(4168), 30, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_num_lit_token1, - anon_sym_COLON_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_COMMA_AT, anon_sym_cl, - 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_into, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [155051] = 3, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [140473] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3155), 11, + ACTIONS(5175), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -136590,8 +133982,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_EQ, - ACTIONS(3153), 21, + ACTIONS(5173), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -136600,6 +133991,7 @@ static 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, @@ -136609,88 +134001,91 @@ static uint16_t ts_small_parse_table[] = { 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, - [155091] = 3, + [140514] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3151), 11, + ACTIONS(4182), 3, 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_EQ, - ACTIONS(3149), 21, + anon_sym_being, + ACTIONS(4180), 30, 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, + anon_sym_cl, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [155131] = 3, + [140555] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3083), 11, + ACTIONS(4186), 3, 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_EQ, - ACTIONS(3081), 21, + anon_sym_being, + ACTIONS(4184), 30, 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, + anon_sym_cl, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [155171] = 3, + [140596] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3147), 11, + ACTIONS(5175), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -136701,8 +134096,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_EQ, - ACTIONS(3145), 21, + ACTIONS(5173), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -136711,6 +134105,7 @@ static 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, @@ -136720,14 +134115,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [155211] = 3, + [140637] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3143), 11, + ACTIONS(4262), 11, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -136739,7 +134135,7 @@ static uint16_t ts_small_parse_table[] = { sym_fancy_literal, anon_sym_cl, anon_sym_EQ, - ACTIONS(3141), 21, + ACTIONS(4260), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -136757,88 +134153,91 @@ static uint16_t ts_small_parse_table[] = { 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, - [155251] = 3, + [140678] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3139), 11, + ACTIONS(4314), 3, 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_EQ, - ACTIONS(3137), 21, + anon_sym_being, + ACTIONS(4312), 30, 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, + anon_sym_cl, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [155291] = 3, + [140719] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3135), 11, + ACTIONS(4334), 3, 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_EQ, - ACTIONS(3133), 21, + anon_sym_being, + ACTIONS(4332), 30, 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, + anon_sym_cl, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [155331] = 3, + [140760] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3131), 11, + ACTIONS(5175), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -136849,8 +134248,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_EQ, - ACTIONS(3129), 21, + ACTIONS(5173), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -136859,6 +134257,7 @@ static 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, @@ -136868,645 +134267,699 @@ static uint16_t ts_small_parse_table[] = { 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, - [155371] = 3, + [140801] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3127), 11, + ACTIONS(4202), 3, 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_EQ, - ACTIONS(3125), 21, + anon_sym_being, + ACTIONS(4200), 30, 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, + anon_sym_cl, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [155411] = 3, + [140842] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3123), 11, + ACTIONS(4342), 3, 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_EQ, - ACTIONS(3121), 21, + anon_sym_being, + ACTIONS(4340), 30, 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, + anon_sym_cl, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [155451] = 3, + [140883] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3119), 11, + ACTIONS(4350), 3, 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_EQ, - ACTIONS(3117), 21, + anon_sym_being, + ACTIONS(4348), 30, 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, + anon_sym_cl, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [155491] = 3, + [140924] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3115), 11, + ACTIONS(4210), 3, 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_EQ, - ACTIONS(3113), 21, + anon_sym_being, + ACTIONS(4208), 30, 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, + anon_sym_cl, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [155531] = 3, + [140965] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3111), 11, + ACTIONS(4374), 3, 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_EQ, - ACTIONS(3109), 21, + anon_sym_being, + ACTIONS(4372), 30, 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, + anon_sym_cl, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [155571] = 3, + [141006] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3083), 11, + ACTIONS(4378), 3, 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_EQ, - ACTIONS(3081), 21, + anon_sym_being, + ACTIONS(4376), 30, 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, + anon_sym_cl, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [155611] = 3, + [141047] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3103), 11, + ACTIONS(4214), 3, 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_EQ, - ACTIONS(3101), 21, + anon_sym_being, + ACTIONS(4212), 30, 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, + anon_sym_cl, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [155651] = 3, + [141088] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3099), 11, + ACTIONS(4222), 3, 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_EQ, - ACTIONS(3097), 21, + anon_sym_being, + ACTIONS(4220), 30, 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, + anon_sym_cl, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [155691] = 3, + [141129] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3095), 11, + ACTIONS(4226), 3, 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_EQ, - ACTIONS(3093), 21, + anon_sym_being, + ACTIONS(4224), 30, 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, + anon_sym_cl, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [155731] = 3, + [141170] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3295), 11, + ACTIONS(4238), 3, 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_EQ, - ACTIONS(3293), 21, + anon_sym_being, + ACTIONS(4236), 30, 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, + anon_sym_cl, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [155771] = 3, + [141211] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3087), 11, + ACTIONS(4374), 3, 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_being, + ACTIONS(4372), 30, + 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, + anon_sym_SQUOTE, + anon_sym_COMMA_AT, anon_sym_cl, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, anon_sym_EQ, - ACTIONS(3085), 21, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [141252] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4242), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(4240), 30, 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, + anon_sym_cl, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [155811] = 3, + [141293] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3083), 11, + ACTIONS(4446), 3, 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_EQ, - ACTIONS(3081), 21, + anon_sym_being, + ACTIONS(4444), 30, 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, + anon_sym_cl, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [155851] = 5, + [141334] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4078), 1, - anon_sym_COLON, - ACTIONS(4080), 1, - anon_sym_COLON_COLON, - ACTIONS(3075), 10, + ACTIONS(4450), 3, 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_EQ, - ACTIONS(3073), 20, + anon_sym_being, + ACTIONS(4448), 30, 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, - anon_sym_POUNDP, - anon_sym_POUNDp, + anon_sym_cl, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [155895] = 3, + [141375] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3071), 11, + ACTIONS(4246), 3, 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_EQ, - ACTIONS(3069), 21, + anon_sym_being, + ACTIONS(4244), 30, 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, + anon_sym_cl, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [155935] = 3, + [141416] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3075), 11, + ACTIONS(4454), 3, 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_EQ, - ACTIONS(3073), 21, + anon_sym_being, + ACTIONS(4452), 30, 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, + anon_sym_cl, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [155975] = 3, + [141457] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3427), 11, + ACTIONS(4278), 3, 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_EQ, - ACTIONS(3425), 21, + anon_sym_being, + ACTIONS(4276), 30, 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, + anon_sym_cl, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [156015] = 3, + [141498] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3431), 11, + ACTIONS(4458), 3, 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_EQ, - ACTIONS(3429), 21, + anon_sym_being, + ACTIONS(4456), 30, 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, + anon_sym_cl, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [156055] = 3, + [141539] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3435), 11, + ACTIONS(5119), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -137517,8 +134970,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - anon_sym_EQ, - ACTIONS(3433), 21, + ACTIONS(5117), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -137527,6 +134979,7 @@ static 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, @@ -137536,240 +134989,205 @@ static uint16_t ts_small_parse_table[] = { 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, - [156095] = 5, + [141580] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4078), 1, - anon_sym_COLON, - ACTIONS(4080), 1, - anon_sym_COLON_COLON, - ACTIONS(3283), 10, + ACTIONS(4462), 3, 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_EQ, - ACTIONS(3281), 20, + anon_sym_being, + ACTIONS(4460), 30, 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, - anon_sym_POUNDP, - anon_sym_POUNDp, + anon_sym_cl, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [156139] = 3, + [141621] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4084), 10, + ACTIONS(4362), 3, 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(4082), 22, - ts_builtin_sym_end, + anon_sym_being, + ACTIONS(4360), 30, 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, + anon_sym_cl, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [156179] = 3, + [141662] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3391), 11, + ACTIONS(4466), 3, 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_EQ, - ACTIONS(3389), 21, + anon_sym_being, + ACTIONS(4464), 30, 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, + anon_sym_cl, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [156219] = 3, + [141703] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4088), 10, + ACTIONS(4374), 3, 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(4086), 22, + anon_sym_being, + ACTIONS(4372), 30, 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_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, + anon_sym_cl, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [156259] = 4, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4090), 1, - anon_sym_COLON, - ACTIONS(4092), 1, - anon_sym_COLON_COLON, - ACTIONS(3281), 30, - sym__ws, - sym_comment, - anon_sym_POUND_, - aux_sym_num_lit_token1, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_cl, - 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_into, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [156301] = 4, + [141744] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4090), 1, - anon_sym_COLON, - ACTIONS(4092), 1, - anon_sym_COLON_COLON, - ACTIONS(3073), 30, + ACTIONS(4470), 3, + anon_sym_POUND, + anon_sym_POUND_QMARK, + anon_sym_being, + ACTIONS(4468), 30, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_POUND_QMARK_AT, + anon_sym_POUND_SQUOTE, + anon_sym_SQUOTE, + anon_sym_COMMA_AT, anon_sym_cl, + 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_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_into, - anon_sym_finally, - anon_sym_return, - anon_sym_initially, - [156343] = 3, + anon_sym_POUND_PLUS, + anon_sym_POUND_DASH, + anon_sym_POUNDC, + anon_sym_POUNDc, + [141785] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4096), 10, + ACTIONS(5179), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -137780,7 +135198,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4094), 22, + ACTIONS(5177), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -137799,14 +135217,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [156383] = 3, + [141826] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4100), 10, + ACTIONS(5179), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -137817,7 +135236,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4098), 22, + ACTIONS(5177), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -137836,14 +135255,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [156423] = 3, + [141867] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4104), 10, + ACTIONS(5179), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -137854,7 +135274,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4102), 22, + ACTIONS(5177), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -137873,14 +135293,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [156463] = 3, + [141908] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4104), 10, + ACTIONS(5179), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -137891,7 +135312,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4102), 22, + ACTIONS(5177), 23, sym__ws, sym_comment, anon_sym_POUND_, @@ -137910,88 +135331,91 @@ static uint16_t ts_small_parse_table[] = { 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, - [156503] = 3, + [141949] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4100), 10, + ACTIONS(4474), 3, 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(4098), 22, + anon_sym_being, + ACTIONS(4472), 30, 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_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, + anon_sym_cl, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [156543] = 3, + [141990] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4100), 10, + ACTIONS(4478), 3, 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(4098), 22, + anon_sym_being, + ACTIONS(4476), 30, 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_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, + anon_sym_cl, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, anon_sym_POUND_PLUS, anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [156583] = 3, + [142031] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4100), 10, + ACTIONS(5183), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -138002,7 +135426,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4098), 22, + ACTIONS(5181), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -138011,7 +135435,6 @@ static 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, @@ -138021,14 +135444,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [156623] = 3, + [142071] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4076), 10, + ACTIONS(5187), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -138039,7 +135463,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4074), 22, + ACTIONS(5185), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -138048,7 +135472,6 @@ static 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, @@ -138058,60 +135481,26 @@ static uint16_t ts_small_parse_table[] = { 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, - [156663] = 3, + [142111] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4088), 10, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, + ACTIONS(4262), 1, 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(4086), 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_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, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [156703] = 2, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(3089), 31, + ACTIONS(4260), 31, sym__ws, sym_comment, anon_sym_POUND_, aux_sym_num_lit_token1, + anon_sym_COLON_COLON, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_cl, anon_sym_EQ, aux_sym_accumulation_verb_token1, @@ -138134,10 +135523,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [156740] = 2, + [142151] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3289), 31, + ACTIONS(5189), 1, + anon_sym_COLON, + ACTIONS(5191), 1, + anon_sym_COLON_COLON, + ACTIONS(4304), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -138146,7 +135539,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_cl, anon_sym_EQ, aux_sym_accumulation_verb_token1, @@ -138169,10 +135561,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [156777] = 3, + [142193] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4108), 10, + ACTIONS(5195), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -138183,7 +135575,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4106), 21, + ACTIONS(5193), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -138201,54 +135593,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [156816] = 7, + [142233] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4113), 1, - anon_sym_POUND_, - ACTIONS(4118), 1, - anon_sym_cl, - ACTIONS(4121), 1, - anon_sym_into, - ACTIONS(4110), 2, - sym__ws, - sym_comment, - STATE(2735), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(4116), 23, - 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_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, - [156863] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4125), 10, + ACTIONS(5199), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -138259,7 +135612,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4123), 21, + ACTIONS(5197), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -138277,14 +135630,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [156902] = 3, + [142273] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4129), 10, + ACTIONS(5203), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -138295,7 +135649,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4127), 21, + ACTIONS(5201), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -138313,14 +135667,15 @@ static uint16_t ts_small_parse_table[] = { 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, - [156941] = 3, + [142313] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4133), 10, + ACTIONS(5207), 10, anon_sym_POUND, anon_sym_DOT, aux_sym_num_lit_token1, @@ -138331,7 +135686,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, sym_fancy_literal, anon_sym_cl, - ACTIONS(4131), 21, + ACTIONS(5205), 22, sym__ws, sym_comment, anon_sym_POUND_, @@ -138349,50 +135704,53 @@ static uint16_t ts_small_parse_table[] = { 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, - [156980] = 3, + [142353] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4137), 10, - anon_sym_POUND, - anon_sym_DOT, - aux_sym_num_lit_token1, + ACTIONS(5189), 1, 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(4135), 21, + ACTIONS(5191), 1, + anon_sym_COLON_COLON, + ACTIONS(4340), 30, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + aux_sym_num_lit_token1, 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, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [157019] = 2, + anon_sym_RPAREN, + anon_sym_cl, + 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_into, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [142395] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3425), 31, + ACTIONS(4256), 31, sym__ws, sym_comment, anon_sym_POUND_, @@ -138424,10 +135782,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [157056] = 2, + [142432] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3341), 31, + ACTIONS(4480), 31, sym__ws, sym_comment, anon_sym_POUND_, @@ -138459,10 +135817,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [157093] = 2, + [142469] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3101), 31, + ACTIONS(4144), 31, sym__ws, sym_comment, anon_sym_POUND_, @@ -138494,63 +135852,56 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [157130] = 3, + [142506] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4141), 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(4139), 21, + ACTIONS(4336), 31, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, - anon_sym_DQUOTE, + aux_sym_num_lit_token1, 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, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [157169] = 7, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4146), 1, - anon_sym_POUND_, - ACTIONS(4151), 1, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_cl, - ACTIONS(4154), 1, + 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_into, - ACTIONS(4143), 2, + anon_sym_finally, + anon_sym_return, + anon_sym_initially, + [142543] = 2, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4280), 31, sym__ws, sym_comment, - STATE(2720), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(4149), 23, + anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -138567,13 +135918,14 @@ static 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, - [157216] = 2, + [142580] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3145), 31, + ACTIONS(4284), 31, sym__ws, sym_comment, anon_sym_POUND_, @@ -138605,10 +135957,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [157253] = 2, + [142617] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3065), 31, + ACTIONS(4288), 31, sym__ws, sym_comment, anon_sym_POUND_, @@ -138640,10 +135992,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [157290] = 2, + [142654] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3165), 31, + ACTIONS(4288), 31, sym__ws, sym_comment, anon_sym_POUND_, @@ -138675,10 +136027,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [157327] = 2, + [142691] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3169), 31, + ACTIONS(4324), 31, sym__ws, sym_comment, anon_sym_POUND_, @@ -138710,10 +136062,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [157364] = 2, + [142728] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3241), 31, + ACTIONS(4320), 31, sym__ws, sym_comment, anon_sym_POUND_, @@ -138745,10 +136097,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [157401] = 2, + [142765] = 7, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(5212), 1, + anon_sym_POUND_, + ACTIONS(5217), 1, + anon_sym_cl, + ACTIONS(5220), 1, + anon_sym_into, + ACTIONS(5209), 2, + sym__ws, + sym_comment, + STATE(2747), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(5215), 23, + 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_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, + [142812] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3245), 31, + ACTIONS(4156), 31, sym__ws, sym_comment, anon_sym_POUND_, @@ -138780,10 +136172,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [157438] = 2, + [142849] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3317), 31, + ACTIONS(4264), 31, sym__ws, sym_comment, anon_sym_POUND_, @@ -138815,10 +136207,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [157475] = 2, + [142886] = 7, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(5225), 1, + anon_sym_POUND_, + ACTIONS(5230), 1, + anon_sym_cl, + ACTIONS(5233), 1, + anon_sym_into, + ACTIONS(5222), 2, + sym__ws, + sym_comment, + STATE(2708), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(5228), 23, + 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_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, + [142933] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3313), 31, + ACTIONS(4252), 31, sym__ws, sym_comment, anon_sym_POUND_, @@ -138850,10 +136282,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [157512] = 2, + [142970] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3285), 31, + ACTIONS(4380), 31, sym__ws, sym_comment, anon_sym_POUND_, @@ -138885,10 +136317,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [157549] = 2, + [143007] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3249), 31, + ACTIONS(4164), 31, sym__ws, sym_comment, anon_sym_POUND_, @@ -138920,10 +136352,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [157586] = 2, + [143044] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3089), 31, + ACTIONS(4400), 31, sym__ws, sym_comment, anon_sym_POUND_, @@ -138955,10 +136387,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [157623] = 2, + [143081] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3209), 30, + ACTIONS(4160), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -138989,10 +136421,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [157659] = 2, + [143117] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3293), 30, + ACTIONS(4348), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -139023,10 +136455,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [157695] = 2, + [143153] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3173), 30, + ACTIONS(4416), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -139057,10 +136489,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [157731] = 2, + [143189] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3161), 30, + ACTIONS(4412), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -139091,10 +136523,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [157767] = 2, + [143225] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3105), 30, + ACTIONS(4368), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -139125,10 +136557,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [157803] = 2, + [143261] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3237), 30, + ACTIONS(4188), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -139159,10 +136591,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [157839] = 2, + [143297] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3261), 30, + ACTIONS(4404), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -139193,10 +136625,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [157875] = 2, + [143333] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3097), 30, + ACTIONS(4396), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -139227,10 +136659,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [157911] = 2, + [143369] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3093), 30, + ACTIONS(4368), 30, sym__ws, sym_comment, anon_sym_POUND_, @@ -139261,20 +136693,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [157947] = 3, + [143405] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4156), 1, - aux_sym_num_lit_token2, - ACTIONS(3055), 28, + ACTIONS(4408), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -139295,130 +136727,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [157984] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4160), 2, - anon_sym_COLON, - anon_sym_AT, - ACTIONS(4158), 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, - [158021] = 9, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(3954), 1, - aux_sym_num_lit_token1, - ACTIONS(3962), 1, - anon_sym_SQUOTE, - ACTIONS(3970), 1, - anon_sym_SLASH, - ACTIONS(4162), 1, - anon_sym_COMMA, - STATE(2268), 1, - sym__format_token, - STATE(3305), 1, - aux_sym_format_modifiers_repeat1, - STATE(3347), 1, - sym_format_directive_type, - ACTIONS(3960), 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, - [158069] = 9, + [143441] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3954), 1, - aux_sym_num_lit_token1, - ACTIONS(3962), 1, - anon_sym_SQUOTE, - ACTIONS(3970), 1, - anon_sym_SLASH, - ACTIONS(4162), 1, - anon_sym_COMMA, - STATE(2268), 1, - sym__format_token, - STATE(3305), 1, - aux_sym_format_modifiers_repeat1, - STATE(3342), 1, - sym_format_directive_type, - ACTIONS(3960), 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, - [158117] = 2, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4164), 27, + ACTIONS(4364), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -139435,21 +136757,24 @@ static 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, - [158150] = 2, + [143477] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4166), 27, + ACTIONS(4176), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -139466,21 +136791,24 @@ static 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, - [158183] = 2, + [143513] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4168), 27, + ACTIONS(4364), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -139497,21 +136825,24 @@ static 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, - [158216] = 2, + [143549] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4170), 27, + ACTIONS(4216), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -139528,21 +136859,24 @@ static 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, - [158249] = 2, + [143585] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4170), 27, + ACTIONS(4352), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -139559,21 +136893,24 @@ static 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, - [158282] = 2, + [143621] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4168), 27, + ACTIONS(4344), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -139590,21 +136927,24 @@ static 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, - [158315] = 2, + [143657] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4172), 27, + ACTIONS(4328), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -139621,21 +136961,24 @@ static 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, - [158348] = 2, + [143693] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4172), 27, + ACTIONS(4504), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -139652,21 +136995,24 @@ static 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, - [158381] = 2, + [143729] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4174), 27, + ACTIONS(4140), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -139683,21 +137029,24 @@ static 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, - [158414] = 2, + [143765] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4176), 27, + ACTIONS(4204), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -139714,21 +137063,24 @@ static 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, - [158447] = 2, + [143801] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4176), 27, + ACTIONS(4316), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -139745,21 +137097,24 @@ static 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, - [158480] = 2, + [143837] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4178), 27, + ACTIONS(4500), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -139776,21 +137131,24 @@ static 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, - [158513] = 2, + [143873] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4180), 27, + ACTIONS(4300), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -139807,21 +137165,24 @@ static 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, - [158546] = 2, + [143909] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4178), 27, + ACTIONS(4504), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -139838,21 +137199,24 @@ static 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, - [158579] = 2, + [143945] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4182), 27, + ACTIONS(4484), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -139869,21 +137233,24 @@ static 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, - [158612] = 2, + [143981] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4184), 27, + ACTIONS(4496), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -139900,21 +137267,24 @@ static 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, - [158645] = 2, + [144017] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4186), 27, + ACTIONS(4500), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -139931,21 +137301,24 @@ static 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, - [158678] = 2, + [144053] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4188), 27, + ACTIONS(4504), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -139962,21 +137335,24 @@ static 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, - [158711] = 2, + [144089] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4190), 27, + ACTIONS(4500), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -139993,21 +137369,24 @@ static 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, - [158744] = 2, + [144125] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4186), 27, + ACTIONS(4316), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -140024,21 +137403,24 @@ static 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, - [158777] = 2, + [144161] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4192), 27, + ACTIONS(4300), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -140055,21 +137437,24 @@ static 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, - [158810] = 2, + [144197] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4194), 27, + ACTIONS(4296), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -140086,21 +137471,24 @@ static 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, - [158843] = 2, + [144233] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4194), 27, + ACTIONS(4504), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -140117,21 +137505,24 @@ static 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, - [158876] = 2, + [144269] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4196), 27, + ACTIONS(4508), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -140148,21 +137539,24 @@ static 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, - [158909] = 2, + [144305] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4196), 27, + ACTIONS(4272), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -140179,21 +137573,24 @@ static 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, - [158942] = 2, + [144341] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4198), 27, + ACTIONS(4484), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -140210,21 +137607,24 @@ static 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, - [158975] = 2, + [144377] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4200), 27, + ACTIONS(4512), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -140241,21 +137641,24 @@ static 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, - [159008] = 2, + [144413] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4202), 27, + ACTIONS(4440), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -140272,21 +137675,24 @@ static 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, - [159041] = 2, + [144449] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4204), 27, + ACTIONS(4292), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -140303,21 +137709,24 @@ static 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, - [159074] = 2, + [144485] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4206), 27, + ACTIONS(4488), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -140334,21 +137743,24 @@ static 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, - [159107] = 2, + [144521] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4206), 27, + ACTIONS(4384), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -140365,21 +137777,24 @@ static 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, - [159140] = 2, + [144557] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4208), 27, + ACTIONS(4492), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -140396,21 +137811,24 @@ static 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, - [159173] = 2, + [144593] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4190), 27, + ACTIONS(4388), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -140427,21 +137845,24 @@ static 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, - [159206] = 2, + [144629] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4192), 27, + ACTIONS(4392), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -140458,21 +137879,24 @@ static 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, - [159239] = 2, + [144665] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4208), 27, + ACTIONS(4232), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -140489,21 +137913,24 @@ static 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, - [159272] = 2, + [144701] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4210), 27, + ACTIONS(4232), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -140520,21 +137947,24 @@ static 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, - [159305] = 2, + [144737] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4200), 27, + ACTIONS(4428), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -140551,21 +137981,24 @@ static 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, - [159338] = 2, + [144773] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4212), 27, + ACTIONS(4196), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -140582,21 +138015,24 @@ static 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, - [159371] = 2, + [144809] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4202), 27, + ACTIONS(4228), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -140613,21 +138049,24 @@ static 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, - [159404] = 2, + [144845] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4214), 27, + ACTIONS(4312), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -140644,21 +138083,24 @@ static 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, - [159437] = 2, + [144881] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4216), 27, + ACTIONS(4332), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -140675,21 +138117,24 @@ static 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, - [159470] = 2, + [144917] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4216), 27, + ACTIONS(4420), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -140706,21 +138151,24 @@ static 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, - [159503] = 2, + [144953] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4218), 27, + ACTIONS(4340), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -140737,21 +138185,24 @@ static 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, - [159536] = 2, + [144989] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4220), 27, + ACTIONS(4424), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -140768,21 +138219,24 @@ static 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, - [159569] = 2, + [145025] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4222), 27, + ACTIONS(4428), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -140799,21 +138253,24 @@ static 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, - [159602] = 2, + [145061] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4222), 27, + ACTIONS(4372), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -140830,21 +138287,24 @@ static 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, - [159635] = 2, + [145097] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4224), 27, + ACTIONS(4376), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -140861,21 +138321,24 @@ static 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, - [159668] = 2, + [145133] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4226), 27, + ACTIONS(4248), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -140892,21 +138355,24 @@ static 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, - [159701] = 2, + [145169] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4228), 27, + ACTIONS(4372), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -140923,21 +138389,24 @@ static 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, - [159734] = 2, + [145205] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4230), 27, + ACTIONS(4444), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -140954,21 +138423,24 @@ static 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, - [159767] = 2, + [145241] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4230), 27, + ACTIONS(4448), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -140985,21 +138457,24 @@ static 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, - [159800] = 2, + [145277] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4232), 27, + ACTIONS(4452), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -141016,21 +138491,24 @@ static 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, - [159833] = 2, + [145313] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4234), 27, + ACTIONS(4456), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -141047,21 +138525,24 @@ static 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, - [159866] = 2, + [145349] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4236), 27, + ACTIONS(4460), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -141078,21 +138559,24 @@ static 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, - [159899] = 2, + [145385] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4236), 27, + ACTIONS(4464), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -141109,21 +138593,24 @@ static 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, - [159932] = 2, + [145421] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4218), 27, + ACTIONS(4468), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -141140,21 +138627,24 @@ static 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, - [159965] = 2, + [145457] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4238), 27, + ACTIONS(4472), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -141171,21 +138661,24 @@ static 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, - [159998] = 2, + [145493] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4240), 27, + ACTIONS(4476), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -141202,21 +138695,24 @@ static 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, - [160031] = 2, + [145529] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4242), 27, + ACTIONS(4500), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -141233,21 +138729,24 @@ static 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, - [160064] = 2, + [145565] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4238), 27, + ACTIONS(4372), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -141264,21 +138763,24 @@ static 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, - [160097] = 2, + [145601] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4244), 27, + ACTIONS(4360), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -141295,21 +138797,24 @@ static 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, - [160130] = 2, + [145637] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4246), 27, + ACTIONS(4356), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -141326,21 +138831,24 @@ static 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, - [160163] = 2, + [145673] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4248), 27, + ACTIONS(4276), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -141357,21 +138865,24 @@ static 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, - [160196] = 2, + [145709] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4246), 27, + ACTIONS(4496), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -141388,21 +138899,24 @@ static 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, - [160229] = 2, + [145745] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4250), 27, + ACTIONS(4272), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -141419,21 +138933,24 @@ static 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, - [160262] = 2, + [145781] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4252), 27, + ACTIONS(4268), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -141450,21 +138967,24 @@ static 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, - [160295] = 2, + [145817] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4254), 27, + ACTIONS(4244), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -141481,21 +139001,24 @@ static 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, - [160328] = 2, + [145853] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4256), 27, + ACTIONS(4240), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -141512,21 +139035,24 @@ static 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, - [160361] = 2, + [145889] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4258), 27, + ACTIONS(4236), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -141543,21 +139069,24 @@ static 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, - [160394] = 2, + [145925] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4198), 27, + ACTIONS(4224), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -141574,21 +139103,24 @@ static 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, - [160427] = 2, + [145961] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4260), 27, + ACTIONS(4220), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -141605,21 +139137,24 @@ static 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, - [160460] = 2, + [145997] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4260), 27, + ACTIONS(4212), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -141636,21 +139171,24 @@ static 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, - [160493] = 2, + [146033] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4262), 27, + ACTIONS(4208), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -141667,21 +139205,24 @@ static 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, - [160526] = 2, + [146069] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4264), 27, + ACTIONS(4200), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -141698,21 +139239,24 @@ static 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, - [160559] = 2, + [146105] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4264), 27, + ACTIONS(4440), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -141729,21 +139273,24 @@ static 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, - [160592] = 2, + [146141] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4266), 27, + ACTIONS(4184), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -141760,21 +139307,24 @@ static 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, - [160625] = 2, + [146177] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4268), 27, + ACTIONS(4180), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -141791,21 +139341,24 @@ static 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, - [160658] = 2, + [146213] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4268), 27, + ACTIONS(4168), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -141822,21 +139375,24 @@ static 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, - [160691] = 2, + [146249] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4258), 27, + ACTIONS(4148), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -141853,21 +139409,24 @@ static 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, - [160724] = 2, + [146285] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4270), 27, + ACTIONS(4152), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -141884,21 +139443,24 @@ static 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, - [160757] = 2, + [146321] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4272), 27, + ACTIONS(4172), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -141915,21 +139477,24 @@ static 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, - [160790] = 2, + [146357] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4274), 27, + ACTIONS(4416), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -141946,21 +139511,24 @@ static 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, - [160823] = 2, + [146393] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4276), 27, + ACTIONS(4424), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -141977,21 +139545,24 @@ static 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, - [160856] = 2, + [146429] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4278), 27, + ACTIONS(4432), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -142008,21 +139579,24 @@ static 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, - [160889] = 2, + [146465] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4278), 27, + ACTIONS(4428), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -142039,21 +139613,24 @@ static 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, - [160922] = 2, + [146501] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4256), 27, + ACTIONS(4192), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -142070,21 +139647,24 @@ static 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, - [160955] = 2, + [146537] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4280), 27, + ACTIONS(4428), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -142101,21 +139681,24 @@ static 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, - [160988] = 2, + [146573] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4282), 27, + ACTIONS(4436), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -142132,21 +139715,24 @@ static 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, - [161021] = 2, + [146609] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4284), 27, + ACTIONS(4432), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -142163,21 +139749,24 @@ static 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, - [161054] = 2, + [146645] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4286), 27, + ACTIONS(4440), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -142194,21 +139783,24 @@ static 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, - [161087] = 2, + [146681] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4286), 27, + ACTIONS(4440), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -142225,21 +139817,24 @@ static 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, - [161120] = 2, + [146717] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4288), 27, + ACTIONS(4436), 30, sym__ws, sym_comment, anon_sym_POUND_, + aux_sym_num_lit_token1, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_cl, + anon_sym_EQ, aux_sym_accumulation_verb_token1, anon_sym_for, anon_sym_and, @@ -142256,13 +139851,16 @@ static 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, - [161153] = 2, + [146753] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4288), 27, + ACTIONS(5235), 1, + aux_sym_num_lit_token2, + ACTIONS(4134), 28, sym__ws, sym_comment, anon_sym_POUND_, @@ -142287,13 +139885,126 @@ static 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, - [161186] = 2, + [146790] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(5239), 2, + anon_sym_COLON, + anon_sym_AT, + ACTIONS(5237), 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, + [146827] = 9, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(5037), 1, + aux_sym_num_lit_token1, + ACTIONS(5045), 1, + anon_sym_SQUOTE, + ACTIONS(5053), 1, + anon_sym_SLASH, + ACTIONS(5241), 1, + anon_sym_COMMA, + STATE(2291), 1, + sym__format_token, + STATE(3292), 1, + aux_sym_format_modifiers_repeat1, + STATE(3346), 1, + sym_format_directive_type, + ACTIONS(5043), 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, + [146875] = 9, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(5037), 1, + aux_sym_num_lit_token1, + ACTIONS(5045), 1, + anon_sym_SQUOTE, + ACTIONS(5053), 1, + anon_sym_SLASH, + ACTIONS(5241), 1, + anon_sym_COMMA, + STATE(2291), 1, + sym__format_token, + STATE(3292), 1, + aux_sym_format_modifiers_repeat1, + STATE(3340), 1, + sym_format_directive_type, + ACTIONS(5043), 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, + [146923] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4290), 27, + ACTIONS(5243), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -142321,10 +140032,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [161219] = 2, + [146956] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4292), 27, + ACTIONS(5245), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -142352,10 +140063,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [161252] = 2, + [146989] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4294), 27, + ACTIONS(5247), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -142383,10 +140094,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [161285] = 2, + [147022] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4296), 27, + ACTIONS(5249), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -142414,10 +140125,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [161318] = 2, + [147055] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4298), 27, + ACTIONS(5251), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -142445,10 +140156,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [161351] = 2, + [147088] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4300), 27, + ACTIONS(5253), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -142476,10 +140187,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [161384] = 2, + [147121] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4300), 27, + ACTIONS(5255), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -142507,10 +140218,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [161417] = 2, + [147154] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4296), 27, + ACTIONS(5255), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -142538,10 +140249,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [161450] = 2, + [147187] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4298), 27, + ACTIONS(5257), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -142569,10 +140280,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [161483] = 2, + [147220] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4302), 27, + ACTIONS(5259), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -142600,10 +140311,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [161516] = 2, + [147253] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4304), 27, + ACTIONS(5259), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -142631,10 +140342,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [161549] = 2, + [147286] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4306), 27, + ACTIONS(5261), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -142662,10 +140373,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [161582] = 2, + [147319] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4308), 27, + ACTIONS(5263), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -142693,10 +140404,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [161615] = 2, + [147352] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4310), 27, + ACTIONS(5265), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -142724,10 +140435,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [161648] = 2, + [147385] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4254), 27, + ACTIONS(5263), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -142755,10 +140466,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [161681] = 2, + [147418] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4312), 27, + ACTIONS(5267), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -142786,10 +140497,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [161714] = 2, + [147451] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4314), 27, + ACTIONS(5269), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -142817,10 +140528,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [161747] = 2, + [147484] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4316), 27, + ACTIONS(5271), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -142848,10 +140559,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [161780] = 2, + [147517] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4318), 27, + ACTIONS(5273), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -142879,10 +140590,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [161813] = 2, + [147550] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4204), 27, + ACTIONS(5275), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -142910,10 +140621,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [161846] = 2, + [147583] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4320), 27, + ACTIONS(5277), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -142941,10 +140652,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [161879] = 2, + [147616] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4306), 27, + ACTIONS(5279), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -142972,10 +140683,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [161912] = 2, + [147649] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4214), 27, + ACTIONS(5281), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -143003,10 +140714,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [161945] = 2, + [147682] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4322), 27, + ACTIONS(5281), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -143034,10 +140745,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [161978] = 2, + [147715] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4324), 27, + ACTIONS(5279), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -143065,10 +140776,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [162011] = 2, + [147748] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4326), 27, + ACTIONS(5283), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -143096,10 +140807,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [162044] = 2, + [147781] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4166), 27, + ACTIONS(5285), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -143127,10 +140838,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [162077] = 2, + [147814] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4262), 27, + ACTIONS(5287), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -143158,10 +140869,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [162110] = 2, + [147847] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4328), 27, + ACTIONS(5285), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -143189,10 +140900,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [162143] = 2, + [147880] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4330), 27, + ACTIONS(5289), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -143220,10 +140931,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [162176] = 2, + [147913] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4326), 27, + ACTIONS(5291), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -143251,10 +140962,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [162209] = 2, + [147946] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4332), 27, + ACTIONS(5275), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -143282,10 +140993,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [162242] = 2, + [147979] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4332), 27, + ACTIONS(5293), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -143313,10 +141024,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [162275] = 2, + [148012] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4334), 27, + ACTIONS(5295), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -143344,10 +141055,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [162308] = 2, + [148045] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4336), 27, + ACTIONS(5297), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -143375,10 +141086,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [162341] = 2, + [148078] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4338), 27, + ACTIONS(5299), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -143406,10 +141117,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [162374] = 2, + [148111] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4188), 27, + ACTIONS(5301), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -143437,10 +141148,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [162407] = 2, + [148144] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4340), 27, + ACTIONS(5303), 27, sym__ws, sym_comment, anon_sym_POUND_, @@ -143468,3520 +141179,2912 @@ static uint16_t ts_small_parse_table[] = { anon_sym_finally, anon_sym_return, anon_sym_initially, - [162440] = 10, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(297), 1, - anon_sym_being, - ACTIONS(4344), 1, - anon_sym_POUND_, - ACTIONS(4346), 1, - anon_sym_cl, - STATE(292), 1, - sym_for_clause_word, - STATE(953), 1, - aux_sym_for_clause_repeat1, - STATE(1212), 1, - sym__for_part, - ACTIONS(4342), 2, - sym__ws, - sym_comment, - STATE(2013), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(299), 15, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [162488] = 10, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(297), 1, - anon_sym_being, - ACTIONS(4344), 1, - anon_sym_POUND_, - ACTIONS(4346), 1, - anon_sym_cl, - STATE(292), 1, - sym_for_clause_word, - STATE(958), 1, - aux_sym_for_clause_repeat1, - STATE(1212), 1, - sym__for_part, - ACTIONS(4342), 2, - sym__ws, - sym_comment, - STATE(2013), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(299), 15, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [162536] = 10, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(297), 1, - anon_sym_being, - ACTIONS(4344), 1, - anon_sym_POUND_, - ACTIONS(4346), 1, - anon_sym_cl, - STATE(292), 1, - sym_for_clause_word, - STATE(943), 1, - aux_sym_for_clause_repeat1, - STATE(1212), 1, - sym__for_part, - ACTIONS(4342), 2, - sym__ws, - sym_comment, - STATE(2013), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(299), 15, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [162584] = 10, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(297), 1, - anon_sym_being, - ACTIONS(4344), 1, - anon_sym_POUND_, - ACTIONS(4346), 1, - anon_sym_cl, - STATE(292), 1, - sym_for_clause_word, - STATE(949), 1, - aux_sym_for_clause_repeat1, - STATE(1212), 1, - sym__for_part, - ACTIONS(4342), 2, - sym__ws, - sym_comment, - STATE(2013), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(299), 15, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [162632] = 10, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(297), 1, - anon_sym_being, - ACTIONS(4344), 1, - anon_sym_POUND_, - ACTIONS(4346), 1, - anon_sym_cl, - STATE(292), 1, - sym_for_clause_word, - STATE(945), 1, - aux_sym_for_clause_repeat1, - STATE(1212), 1, - sym__for_part, - ACTIONS(4342), 2, - sym__ws, - sym_comment, - STATE(2013), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(299), 15, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [162680] = 10, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(297), 1, - anon_sym_being, - ACTIONS(4344), 1, - anon_sym_POUND_, - ACTIONS(4346), 1, - anon_sym_cl, - STATE(292), 1, - sym_for_clause_word, - STATE(956), 1, - aux_sym_for_clause_repeat1, - STATE(1212), 1, - sym__for_part, - ACTIONS(4342), 2, - sym__ws, - sym_comment, - STATE(2013), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(299), 15, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [162728] = 10, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(297), 1, - anon_sym_being, - ACTIONS(4344), 1, - anon_sym_POUND_, - ACTIONS(4346), 1, - anon_sym_cl, - STATE(292), 1, - sym_for_clause_word, - STATE(944), 1, - aux_sym_for_clause_repeat1, - STATE(1212), 1, - sym__for_part, - ACTIONS(4342), 2, - sym__ws, - sym_comment, - STATE(2013), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(299), 15, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [162776] = 10, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(297), 1, - anon_sym_being, - ACTIONS(4344), 1, - anon_sym_POUND_, - ACTIONS(4346), 1, - anon_sym_cl, - STATE(292), 1, - sym_for_clause_word, - STATE(946), 1, - aux_sym_for_clause_repeat1, - STATE(1212), 1, - sym__for_part, - ACTIONS(4342), 2, - sym__ws, - sym_comment, - STATE(2013), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(299), 15, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [162824] = 10, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(297), 1, - anon_sym_being, - ACTIONS(4344), 1, - anon_sym_POUND_, - ACTIONS(4346), 1, - anon_sym_cl, - STATE(292), 1, - sym_for_clause_word, - STATE(957), 1, - aux_sym_for_clause_repeat1, - STATE(1212), 1, - sym__for_part, - ACTIONS(4342), 2, - sym__ws, - sym_comment, - STATE(2013), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(299), 15, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [162872] = 10, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(297), 1, - anon_sym_being, - ACTIONS(4344), 1, - anon_sym_POUND_, - ACTIONS(4346), 1, - anon_sym_cl, - STATE(292), 1, - sym_for_clause_word, - STATE(950), 1, - aux_sym_for_clause_repeat1, - STATE(1212), 1, - sym__for_part, - ACTIONS(4342), 2, - sym__ws, - sym_comment, - STATE(2013), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(299), 15, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [162920] = 10, + [148177] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(297), 1, - anon_sym_being, - ACTIONS(4344), 1, - anon_sym_POUND_, - ACTIONS(4346), 1, - anon_sym_cl, - STATE(292), 1, - sym_for_clause_word, - STATE(955), 1, - aux_sym_for_clause_repeat1, - STATE(1212), 1, - sym__for_part, - ACTIONS(4342), 2, + ACTIONS(5305), 27, sym__ws, sym_comment, - STATE(2013), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(299), 15, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [162968] = 10, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(297), 1, - anon_sym_being, - ACTIONS(4344), 1, anon_sym_POUND_, - ACTIONS(4346), 1, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_cl, - STATE(292), 1, - sym_for_clause_word, - STATE(941), 1, - aux_sym_for_clause_repeat1, - STATE(1212), 1, - sym__for_part, - ACTIONS(4342), 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, + [148210] = 2, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(5271), 27, sym__ws, sym_comment, - STATE(2013), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(299), 15, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [163016] = 2, + anon_sym_POUND_, + 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, + [148243] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4348), 25, - aux_sym_num_lit_token1, - anon_sym_TILDE, - anon_sym_SQUOTE, - anon_sym_COMMA, - 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, - [163047] = 2, + ACTIONS(5297), 27, + sym__ws, + sym_comment, + anon_sym_POUND_, + 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, + [148276] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4350), 25, - aux_sym_num_lit_token1, - anon_sym_TILDE, - anon_sym_SQUOTE, - anon_sym_COMMA, - 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, - [163078] = 18, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, - anon_sym_COLON_COLON, - ACTIONS(21), 1, - anon_sym_DQUOTE, + ACTIONS(5295), 27, + sym__ws, + sym_comment, + anon_sym_POUND_, + 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, + [148309] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3622), 1, + ACTIONS(5307), 27, + sym__ws, + sym_comment, + anon_sym_POUND_, anon_sym_CARET, - ACTIONS(3624), 1, anon_sym_POUND_CARET, - ACTIONS(4354), 1, - anon_sym_POUND_, - ACTIONS(4356), 1, - aux_sym_sym_lit_token1, - ACTIONS(4358), 1, - anon_sym_LBRACE, - ACTIONS(4360), 1, - anon_sym_POUND_QMARK, - STATE(2232), 1, - sym__bare_map_lit, - STATE(2236), 1, - sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, - sym_meta_lit, - STATE(2425), 1, - aux_sym_list_lit_repeat1, - ACTIONS(4352), 2, + 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, + [148342] = 2, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(5309), 27, sym__ws, sym_comment, - STATE(2021), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2231), 5, - sym_kwd_lit, - sym_str_lit, - sym_sym_lit, - sym_map_lit, - sym_read_cond_lit, - [163140] = 18, + anon_sym_POUND_, + 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, + [148375] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(619), 1, - anon_sym_COLON, - ACTIONS(621), 1, - anon_sym_COLON_COLON, - ACTIONS(623), 1, - anon_sym_DQUOTE, - ACTIONS(3622), 1, + ACTIONS(5309), 27, + sym__ws, + sym_comment, + anon_sym_POUND_, anon_sym_CARET, - ACTIONS(3624), 1, anon_sym_POUND_CARET, - ACTIONS(4354), 1, - anon_sym_POUND_, - ACTIONS(4358), 1, - anon_sym_LBRACE, - ACTIONS(4364), 1, - aux_sym_sym_lit_token1, - ACTIONS(4366), 1, - anon_sym_POUND_QMARK, - STATE(2232), 1, - sym__bare_map_lit, - STATE(2236), 1, - sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, - sym_meta_lit, - STATE(2426), 1, - aux_sym_list_lit_repeat1, - ACTIONS(4362), 2, + 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, + [148408] = 2, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(5311), 27, sym__ws, sym_comment, - STATE(2018), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2234), 5, - sym_kwd_lit, - sym_str_lit, - sym_sym_lit, - sym_map_lit, - sym_read_cond_lit, - [163202] = 20, - ACTIONS(29), 1, + anon_sym_POUND_, + 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, + [148441] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(821), 1, - anon_sym_COLON, - ACTIONS(823), 1, - anon_sym_COLON_COLON, - ACTIONS(3622), 1, + ACTIONS(5313), 27, + sym__ws, + sym_comment, + anon_sym_POUND_, anon_sym_CARET, - ACTIONS(3624), 1, anon_sym_POUND_CARET, - ACTIONS(4370), 1, - anon_sym_POUND_, - ACTIONS(4372), 1, - aux_sym_sym_lit_token1, - ACTIONS(4374), 1, - anon_sym_COMMA, - STATE(1740), 1, - sym_unquoting_lit, - STATE(1741), 1, - sym_list_lit, - STATE(2206), 1, - sym_sym_lit, - STATE(2207), 1, - sym_kwd_lit, - STATE(2236), 1, - sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, - sym_meta_lit, - STATE(2379), 1, - aux_sym_list_lit_repeat1, - ACTIONS(4368), 2, + 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, + [148474] = 2, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(5315), 27, sym__ws, sym_comment, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(2261), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [163268] = 8, + anon_sym_POUND_, + 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, + [148507] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(297), 1, - anon_sym_being, - ACTIONS(4344), 1, + ACTIONS(5313), 27, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(4346), 1, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_cl, - STATE(382), 1, - sym_for_clause_word, - ACTIONS(4376), 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, + [148540] = 2, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(5317), 27, sym__ws, sym_comment, - STATE(2023), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(299), 15, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [163310] = 18, + anon_sym_POUND_, + 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, + [148573] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(619), 1, - anon_sym_COLON, - ACTIONS(621), 1, - anon_sym_COLON_COLON, - ACTIONS(623), 1, - anon_sym_DQUOTE, - ACTIONS(3622), 1, - anon_sym_CARET, - ACTIONS(3624), 1, - anon_sym_POUND_CARET, - ACTIONS(4354), 1, - anon_sym_POUND_, - ACTIONS(4358), 1, - anon_sym_LBRACE, - ACTIONS(4364), 1, - aux_sym_sym_lit_token1, - ACTIONS(4366), 1, - anon_sym_POUND_QMARK, - STATE(2232), 1, - sym__bare_map_lit, - STATE(2236), 1, - sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, - sym_meta_lit, - STATE(2426), 1, - aux_sym_list_lit_repeat1, - ACTIONS(4378), 2, + ACTIONS(5319), 27, sym__ws, sym_comment, - STATE(2017), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2231), 5, - sym_kwd_lit, - sym_str_lit, - sym_sym_lit, - sym_map_lit, - sym_read_cond_lit, - [163372] = 20, - ACTIONS(29), 1, + anon_sym_POUND_, + 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, + [148606] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(821), 1, - anon_sym_COLON, - ACTIONS(823), 1, - anon_sym_COLON_COLON, - ACTIONS(3622), 1, - anon_sym_CARET, - ACTIONS(3624), 1, - anon_sym_POUND_CARET, - ACTIONS(4370), 1, - anon_sym_POUND_, - ACTIONS(4372), 1, - aux_sym_sym_lit_token1, - ACTIONS(4374), 1, - anon_sym_COMMA, - STATE(1816), 1, - sym_unquoting_lit, - STATE(1827), 1, - sym_list_lit, - STATE(2204), 1, - sym_kwd_lit, - STATE(2214), 1, - sym_sym_lit, - STATE(2236), 1, - sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, - sym_meta_lit, - STATE(2379), 1, - aux_sym_list_lit_repeat1, - ACTIONS(4368), 2, + ACTIONS(5321), 27, sym__ws, sym_comment, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(2261), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [163438] = 20, - ACTIONS(29), 1, + anon_sym_POUND_, + 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, + [148639] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(821), 1, - anon_sym_COLON, - ACTIONS(823), 1, - anon_sym_COLON_COLON, - ACTIONS(3622), 1, - anon_sym_CARET, - ACTIONS(3624), 1, - anon_sym_POUND_CARET, - ACTIONS(4370), 1, - anon_sym_POUND_, - ACTIONS(4372), 1, - aux_sym_sym_lit_token1, - ACTIONS(4374), 1, - anon_sym_COMMA, - STATE(1821), 1, - sym_unquoting_lit, - STATE(1822), 1, - sym_list_lit, - STATE(2216), 1, - sym_sym_lit, - STATE(2217), 1, - sym_kwd_lit, - STATE(2236), 1, - sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, - sym_meta_lit, - STATE(2379), 1, - aux_sym_list_lit_repeat1, - ACTIONS(4380), 2, + ACTIONS(5321), 27, sym__ws, sym_comment, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(2012), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [163504] = 18, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(619), 1, - anon_sym_COLON, - ACTIONS(621), 1, - anon_sym_COLON_COLON, - ACTIONS(623), 1, - anon_sym_DQUOTE, - ACTIONS(3622), 1, + anon_sym_POUND_, anon_sym_CARET, - ACTIONS(3624), 1, anon_sym_POUND_CARET, - ACTIONS(4354), 1, - anon_sym_POUND_, - ACTIONS(4358), 1, - anon_sym_LBRACE, - ACTIONS(4364), 1, - aux_sym_sym_lit_token1, - ACTIONS(4366), 1, - anon_sym_POUND_QMARK, - STATE(2232), 1, - sym__bare_map_lit, - STATE(2236), 1, - sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, - sym_meta_lit, - STATE(2426), 1, - aux_sym_list_lit_repeat1, - ACTIONS(4382), 2, - sym__ws, - sym_comment, - STATE(2238), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2229), 5, - sym_kwd_lit, - sym_str_lit, - sym_sym_lit, - sym_map_lit, - sym_read_cond_lit, - [163566] = 18, + 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, + [148672] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(619), 1, - anon_sym_COLON, - ACTIONS(621), 1, - anon_sym_COLON_COLON, - ACTIONS(623), 1, - anon_sym_DQUOTE, - ACTIONS(3622), 1, - anon_sym_CARET, - ACTIONS(3624), 1, - anon_sym_POUND_CARET, - ACTIONS(4354), 1, - anon_sym_POUND_, - ACTIONS(4358), 1, - anon_sym_LBRACE, - ACTIONS(4364), 1, - aux_sym_sym_lit_token1, - ACTIONS(4366), 1, - anon_sym_POUND_QMARK, - STATE(2232), 1, - sym__bare_map_lit, - STATE(2236), 1, - sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, - sym_meta_lit, - STATE(2426), 1, - aux_sym_list_lit_repeat1, - ACTIONS(4382), 2, + ACTIONS(5319), 27, sym__ws, sym_comment, - STATE(2238), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2227), 5, - sym_kwd_lit, - sym_str_lit, - sym_sym_lit, - sym_map_lit, - sym_read_cond_lit, - [163628] = 18, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, - anon_sym_COLON_COLON, - ACTIONS(21), 1, - anon_sym_DQUOTE, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(3622), 1, + anon_sym_POUND_, anon_sym_CARET, - ACTIONS(3624), 1, anon_sym_POUND_CARET, - ACTIONS(4354), 1, - anon_sym_POUND_, - ACTIONS(4356), 1, - aux_sym_sym_lit_token1, - ACTIONS(4358), 1, - anon_sym_LBRACE, - ACTIONS(4360), 1, - anon_sym_POUND_QMARK, - STATE(2232), 1, - sym__bare_map_lit, - STATE(2236), 1, - sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, - sym_meta_lit, - STATE(2425), 1, - aux_sym_list_lit_repeat1, - ACTIONS(4382), 2, - sym__ws, - sym_comment, - STATE(2238), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2227), 5, - sym_kwd_lit, - sym_str_lit, - sym_sym_lit, - sym_map_lit, - sym_read_cond_lit, - [163690] = 20, - ACTIONS(29), 1, 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, + [148705] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(821), 1, - anon_sym_COLON, - ACTIONS(823), 1, - anon_sym_COLON_COLON, - ACTIONS(3622), 1, - anon_sym_CARET, - ACTIONS(3624), 1, - anon_sym_POUND_CARET, - ACTIONS(4370), 1, - anon_sym_POUND_, - ACTIONS(4372), 1, - aux_sym_sym_lit_token1, - ACTIONS(4374), 1, - anon_sym_COMMA, - STATE(1778), 1, - sym_unquoting_lit, - STATE(1826), 1, - sym_list_lit, - STATE(2200), 1, - sym_sym_lit, - STATE(2220), 1, - sym_kwd_lit, - STATE(2236), 1, - sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, - sym_meta_lit, - STATE(2379), 1, - aux_sym_list_lit_repeat1, - ACTIONS(4384), 2, + ACTIONS(5323), 27, sym__ws, sym_comment, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(2015), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [163756] = 18, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, - anon_sym_COLON_COLON, - ACTIONS(21), 1, - anon_sym_DQUOTE, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(3622), 1, + anon_sym_POUND_, anon_sym_CARET, - ACTIONS(3624), 1, anon_sym_POUND_CARET, - ACTIONS(4354), 1, - anon_sym_POUND_, - ACTIONS(4356), 1, - aux_sym_sym_lit_token1, - ACTIONS(4358), 1, - anon_sym_LBRACE, - ACTIONS(4360), 1, - anon_sym_POUND_QMARK, - STATE(2232), 1, - sym__bare_map_lit, - STATE(2236), 1, - sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, - sym_meta_lit, - STATE(2425), 1, - aux_sym_list_lit_repeat1, - ACTIONS(4382), 2, - sym__ws, - sym_comment, - STATE(2238), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2229), 5, - sym_kwd_lit, - sym_str_lit, - sym_sym_lit, - sym_map_lit, - sym_read_cond_lit, - [163818] = 18, - ACTIONS(17), 1, - anon_sym_COLON, - ACTIONS(19), 1, - anon_sym_COLON_COLON, - ACTIONS(21), 1, - anon_sym_DQUOTE, + 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, + [148738] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3622), 1, + ACTIONS(5323), 27, + sym__ws, + sym_comment, + anon_sym_POUND_, anon_sym_CARET, - ACTIONS(3624), 1, anon_sym_POUND_CARET, - ACTIONS(4354), 1, - anon_sym_POUND_, - ACTIONS(4356), 1, - aux_sym_sym_lit_token1, - ACTIONS(4358), 1, - anon_sym_LBRACE, - ACTIONS(4360), 1, - anon_sym_POUND_QMARK, - STATE(2232), 1, - sym__bare_map_lit, - STATE(2236), 1, - sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, - sym_meta_lit, - STATE(2425), 1, - aux_sym_list_lit_repeat1, - ACTIONS(4386), 2, + 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, + [148771] = 2, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(5325), 27, sym__ws, sym_comment, - STATE(2019), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - STATE(2234), 5, - sym_kwd_lit, - sym_str_lit, - sym_sym_lit, - sym_map_lit, - sym_read_cond_lit, - [163880] = 6, + anon_sym_POUND_, + 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, + [148804] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3027), 1, - anon_sym_being, - ACTIONS(4391), 1, - anon_sym_POUND_, - ACTIONS(4388), 2, + ACTIONS(5327), 27, sym__ws, sym_comment, - STATE(2023), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(3029), 16, + anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_cl, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [163917] = 5, + 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, + [148837] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3283), 1, - anon_sym_being, - ACTIONS(4394), 1, - anon_sym_COLON, - ACTIONS(4396), 1, - anon_sym_COLON_COLON, - ACTIONS(3281), 19, + ACTIONS(5327), 27, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_cl, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [163951] = 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, + [148870] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3391), 2, - anon_sym_COLON, - anon_sym_being, - ACTIONS(3389), 20, + ACTIONS(5329), 27, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_COLON_COLON, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_cl, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [163981] = 5, + 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, + [148903] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3075), 1, - anon_sym_being, - ACTIONS(4394), 1, - anon_sym_COLON, - ACTIONS(4396), 1, - anon_sym_COLON_COLON, - ACTIONS(3073), 19, + ACTIONS(5331), 27, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_cl, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [164015] = 20, - ACTIONS(25), 1, anon_sym_CARET, - ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(583), 1, anon_sym_LPAREN, - ACTIONS(4398), 1, - anon_sym_POUND, - ACTIONS(4400), 1, - anon_sym_POUND_QMARK, - ACTIONS(4402), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(4404), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(4406), 1, - anon_sym_SQUOTE, - ACTIONS(4408), 1, - anon_sym_COMMA_AT, - ACTIONS(4410), 1, - anon_sym_POUND_PLUS, - ACTIONS(4412), 1, - anon_sym_POUND_DASH, - ACTIONS(4414), 1, - anon_sym_POUNDC, - ACTIONS(4416), 1, - anon_sym_POUNDc, - STATE(1168), 1, - sym__bare_set_lit, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2233), 1, - aux_sym_list_lit_repeat1, - STATE(2236), 1, - sym__metadata_lit, - STATE(1226), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [164078] = 3, + 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, + [148936] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3067), 3, - anon_sym_POUND, - anon_sym_COLON, - anon_sym_POUND_QMARK, - ACTIONS(3065), 18, + ACTIONS(5333), 27, 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, - [164107] = 20, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, + 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, + [148969] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(277), 1, + ACTIONS(5335), 27, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, anon_sym_LPAREN, - ACTIONS(4418), 1, - anon_sym_POUND, - ACTIONS(4420), 1, - anon_sym_POUND_QMARK, - ACTIONS(4422), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(4424), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(4426), 1, - anon_sym_SQUOTE, - ACTIONS(4428), 1, - anon_sym_COMMA_AT, - ACTIONS(4430), 1, - anon_sym_POUND_PLUS, - ACTIONS(4432), 1, - anon_sym_POUND_DASH, - ACTIONS(4434), 1, - anon_sym_POUNDC, - ACTIONS(4436), 1, - anon_sym_POUNDc, - STATE(2155), 1, - sym__bare_set_lit, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2233), 1, - aux_sym_list_lit_repeat1, - STATE(2236), 1, - sym__metadata_lit, - STATE(2074), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [164170] = 3, + 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, + [149002] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3391), 3, - anon_sym_POUND, - anon_sym_COLON, - anon_sym_POUND_QMARK, - ACTIONS(3389), 18, + ACTIONS(5315), 27, 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, - [164199] = 3, + 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, + [149035] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3427), 3, - anon_sym_POUND, - anon_sym_COLON, - anon_sym_POUND_QMARK, - ACTIONS(3425), 18, + ACTIONS(5337), 27, 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, - [164228] = 20, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, + 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, + [149068] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(693), 1, + ACTIONS(5325), 27, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, anon_sym_LPAREN, - ACTIONS(4438), 1, - anon_sym_POUND, - ACTIONS(4440), 1, - anon_sym_POUND_QMARK, - ACTIONS(4442), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(4444), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(4446), 1, - anon_sym_SQUOTE, - ACTIONS(4448), 1, - anon_sym_COMMA_AT, - ACTIONS(4450), 1, - anon_sym_POUND_PLUS, - ACTIONS(4452), 1, - anon_sym_POUND_DASH, - ACTIONS(4454), 1, - anon_sym_POUNDC, - ACTIONS(4456), 1, - anon_sym_POUNDc, - STATE(1488), 1, - sym__bare_set_lit, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2233), 1, - aux_sym_list_lit_repeat1, - STATE(2236), 1, - sym__metadata_lit, - STATE(1489), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [164291] = 3, + 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, + [149101] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3295), 3, - anon_sym_POUND, - anon_sym_COLON, - anon_sym_POUND_QMARK, - ACTIONS(3293), 18, + ACTIONS(5339), 27, 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, - [164320] = 3, + 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, + [149134] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3095), 3, - anon_sym_POUND, - anon_sym_COLON, - anon_sym_POUND_QMARK, - ACTIONS(3093), 18, + ACTIONS(5341), 27, 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, - [164349] = 3, + 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, + [149167] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3099), 3, - anon_sym_POUND, - anon_sym_COLON, - anon_sym_POUND_QMARK, - ACTIONS(3097), 18, + ACTIONS(5343), 27, 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, - [164378] = 20, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, + 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, + [149200] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(741), 1, - anon_sym_LPAREN, - ACTIONS(4458), 1, - anon_sym_POUND, - ACTIONS(4460), 1, - anon_sym_POUND_QMARK, - ACTIONS(4462), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(4464), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(4466), 1, - anon_sym_SQUOTE, - ACTIONS(4468), 1, - anon_sym_COMMA_AT, - ACTIONS(4470), 1, - anon_sym_POUND_PLUS, - ACTIONS(4472), 1, - anon_sym_POUND_DASH, - ACTIONS(4474), 1, - anon_sym_POUNDC, - ACTIONS(4476), 1, - anon_sym_POUNDc, - STATE(1791), 1, - sym__bare_set_lit, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2233), 1, - aux_sym_list_lit_repeat1, - STATE(2236), 1, - sym__metadata_lit, - STATE(1792), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [164441] = 20, - ACTIONS(25), 1, + ACTIONS(5343), 27, + sym__ws, + sym_comment, + anon_sym_POUND_, anon_sym_CARET, - ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(789), 1, anon_sym_LPAREN, - ACTIONS(4478), 1, - anon_sym_POUND, - ACTIONS(4480), 1, - anon_sym_POUND_QMARK, - ACTIONS(4482), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(4484), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(4486), 1, - anon_sym_SQUOTE, - ACTIONS(4488), 1, - anon_sym_COMMA_AT, - ACTIONS(4490), 1, - anon_sym_POUND_PLUS, - ACTIONS(4492), 1, - anon_sym_POUND_DASH, - ACTIONS(4494), 1, - anon_sym_POUNDC, - ACTIONS(4496), 1, - anon_sym_POUNDc, - STATE(1368), 1, - sym__bare_set_lit, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2233), 1, - aux_sym_list_lit_repeat1, - STATE(2236), 1, - sym__metadata_lit, - STATE(1369), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [164504] = 3, + 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, + [149233] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3103), 3, - anon_sym_POUND, - anon_sym_COLON, - anon_sym_POUND_QMARK, - ACTIONS(3101), 18, + ACTIONS(5345), 27, 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, - [164533] = 3, + 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, + [149266] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3107), 3, - anon_sym_POUND, - anon_sym_COLON, - anon_sym_POUND_QMARK, - ACTIONS(3105), 18, + ACTIONS(5345), 27, 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, - [164562] = 4, + 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, + [149299] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3057), 1, - anon_sym_being, - ACTIONS(4498), 1, - aux_sym_num_lit_token2, - ACTIONS(3055), 19, + ACTIONS(5347), 27, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_cl, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [164593] = 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, + [149332] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3211), 3, - anon_sym_POUND, - anon_sym_COLON, - anon_sym_POUND_QMARK, - ACTIONS(3209), 18, + ACTIONS(5349), 27, 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, - [164622] = 20, - ACTIONS(25), 1, anon_sym_CARET, - ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(29), 1, 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, + [149365] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4500), 1, - anon_sym_POUND, - ACTIONS(4502), 1, - anon_sym_POUND_QMARK, - ACTIONS(4504), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(4506), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(4508), 1, - anon_sym_SQUOTE, - ACTIONS(4510), 1, - anon_sym_COMMA_AT, - ACTIONS(4512), 1, - anon_sym_POUND_PLUS, - ACTIONS(4514), 1, - anon_sym_POUND_DASH, - ACTIONS(4516), 1, - anon_sym_POUNDC, - ACTIONS(4518), 1, - anon_sym_POUNDc, - STATE(1536), 1, - sym__bare_set_lit, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2233), 1, - aux_sym_list_lit_repeat1, - STATE(2236), 1, - sym__metadata_lit, - STATE(1597), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [164685] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(3343), 3, - anon_sym_POUND, - anon_sym_COLON, - anon_sym_POUND_QMARK, - ACTIONS(3341), 18, + ACTIONS(5349), 27, 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, - [164714] = 3, + 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, + [149398] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3147), 3, - anon_sym_POUND, - anon_sym_COLON, - anon_sym_POUND_QMARK, - ACTIONS(3145), 18, + ACTIONS(5347), 27, 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, - [164743] = 3, + 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, + [149431] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3319), 3, - anon_sym_POUND, - anon_sym_COLON, - anon_sym_POUND_QMARK, - ACTIONS(3317), 18, + ACTIONS(5351), 27, 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, - [164772] = 3, + 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, + [149464] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3315), 3, - anon_sym_POUND, - anon_sym_COLON, - anon_sym_POUND_QMARK, - ACTIONS(3313), 18, + ACTIONS(5353), 27, 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, - [164801] = 3, + 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, + [149497] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3163), 3, - anon_sym_POUND, - anon_sym_COLON, - anon_sym_POUND_QMARK, - ACTIONS(3161), 18, + ACTIONS(5355), 27, 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, - [164830] = 20, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(4478), 1, - anon_sym_POUND, - ACTIONS(4480), 1, - anon_sym_POUND_QMARK, - ACTIONS(4482), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(4494), 1, - anon_sym_POUNDC, - ACTIONS(4496), 1, - anon_sym_POUNDc, - ACTIONS(4520), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(4522), 1, - anon_sym_SQUOTE, - ACTIONS(4524), 1, - anon_sym_COMMA_AT, - ACTIONS(4526), 1, - anon_sym_POUND_PLUS, - ACTIONS(4528), 1, - anon_sym_POUND_DASH, - STATE(1368), 1, - sym__bare_set_lit, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2233), 1, - aux_sym_list_lit_repeat1, - STATE(2236), 1, - sym__metadata_lit, - STATE(1369), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [164893] = 3, + 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, + [149530] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3167), 3, - anon_sym_POUND, - anon_sym_COLON, - anon_sym_POUND_QMARK, - ACTIONS(3165), 18, + ACTIONS(5357), 27, 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, - [164922] = 20, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, + 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, + [149563] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(631), 1, - anon_sym_LPAREN, - ACTIONS(4478), 1, - anon_sym_POUND, - ACTIONS(4494), 1, - anon_sym_POUNDC, - ACTIONS(4496), 1, - anon_sym_POUNDc, - ACTIONS(4530), 1, - anon_sym_POUND_QMARK, - ACTIONS(4532), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(4534), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(4536), 1, - anon_sym_SQUOTE, - ACTIONS(4538), 1, - anon_sym_COMMA_AT, - ACTIONS(4540), 1, - anon_sym_POUND_PLUS, - ACTIONS(4542), 1, - anon_sym_POUND_DASH, - STATE(1368), 1, - sym__bare_set_lit, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2233), 1, - aux_sym_list_lit_repeat1, - STATE(2236), 1, - sym__metadata_lit, - STATE(1369), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [164985] = 20, - ACTIONS(25), 1, + ACTIONS(5359), 27, + sym__ws, + sym_comment, + anon_sym_POUND_, anon_sym_CARET, - ACTIONS(27), 1, 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, + [149596] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(4544), 1, - anon_sym_POUND, - ACTIONS(4546), 1, - anon_sym_POUND_QMARK, - ACTIONS(4548), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(4550), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(4552), 1, - anon_sym_SQUOTE, - ACTIONS(4554), 1, - anon_sym_COMMA_AT, - ACTIONS(4556), 1, - anon_sym_POUND_PLUS, - ACTIONS(4558), 1, - anon_sym_POUND_DASH, - ACTIONS(4560), 1, - anon_sym_POUNDC, - ACTIONS(4562), 1, - anon_sym_POUNDc, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2233), 1, - aux_sym_list_lit_repeat1, - STATE(2236), 1, - sym__metadata_lit, - STATE(2324), 1, - sym__bare_set_lit, - STATE(2253), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [165048] = 20, - ACTIONS(25), 1, + ACTIONS(5353), 27, + sym__ws, + sym_comment, + anon_sym_POUND_, anon_sym_CARET, - ACTIONS(27), 1, anon_sym_POUND_CARET, - ACTIONS(29), 1, 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, + [149629] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4500), 1, - anon_sym_POUND, - ACTIONS(4502), 1, - anon_sym_POUND_QMARK, - ACTIONS(4504), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(4516), 1, - anon_sym_POUNDC, - ACTIONS(4518), 1, - anon_sym_POUNDc, - ACTIONS(4564), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(4566), 1, - anon_sym_SQUOTE, - ACTIONS(4568), 1, - anon_sym_COMMA_AT, - ACTIONS(4570), 1, - anon_sym_POUND_PLUS, - ACTIONS(4572), 1, - anon_sym_POUND_DASH, - STATE(1536), 1, - sym__bare_set_lit, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2233), 1, - aux_sym_list_lit_repeat1, - STATE(2236), 1, - sym__metadata_lit, - STATE(1597), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [165111] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(3171), 3, - anon_sym_POUND, - anon_sym_COLON, - anon_sym_POUND_QMARK, - ACTIONS(3169), 18, + ACTIONS(5361), 27, 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, - [165140] = 4, + 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, + [149662] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4574), 1, - aux_sym_num_lit_token2, - ACTIONS(3057), 2, - anon_sym_POUND, - anon_sym_POUND_QMARK, - ACTIONS(3055), 18, + ACTIONS(5245), 27, sym__ws, sym_comment, anon_sym_POUND_, - aux_sym_num_lit_token1, 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_RPAREN, anon_sym_cl, - anon_sym_EQ, - anon_sym_into, - anon_sym_POUND_PLUS, - anon_sym_POUND_DASH, - anon_sym_POUNDC, - anon_sym_POUNDc, - [165171] = 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, + [149695] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3175), 3, - anon_sym_POUND, - anon_sym_COLON, - anon_sym_POUND_QMARK, - ACTIONS(3173), 18, + ACTIONS(5363), 27, 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, - [165200] = 20, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, + 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, + [149728] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(829), 1, + ACTIONS(5365), 27, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, anon_sym_LPAREN, - ACTIONS(4544), 1, - anon_sym_POUND, - ACTIONS(4560), 1, - anon_sym_POUNDC, - ACTIONS(4562), 1, - anon_sym_POUNDc, - ACTIONS(4576), 1, - anon_sym_POUND_QMARK, - ACTIONS(4578), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(4580), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(4582), 1, - anon_sym_SQUOTE, - ACTIONS(4584), 1, - anon_sym_COMMA_AT, - ACTIONS(4586), 1, - anon_sym_POUND_PLUS, - ACTIONS(4588), 1, - anon_sym_POUND_DASH, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2233), 1, - aux_sym_list_lit_repeat1, - STATE(2236), 1, - sym__metadata_lit, - STATE(2324), 1, - sym__bare_set_lit, - STATE(2253), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [165263] = 3, + 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, + [149761] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3091), 3, - anon_sym_POUND, - anon_sym_COLON, - anon_sym_POUND_QMARK, - ACTIONS(3089), 18, + ACTIONS(5365), 27, 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, - [165292] = 3, + 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, + [149794] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3091), 3, - anon_sym_POUND, - anon_sym_COLON, - anon_sym_POUND_QMARK, - ACTIONS(3089), 18, + ACTIONS(5367), 27, 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, - [165321] = 3, + 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, + [149827] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3251), 3, - anon_sym_POUND, - anon_sym_COLON, - anon_sym_POUND_QMARK, - ACTIONS(3249), 18, + ACTIONS(5369), 27, 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, - [165350] = 3, + 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, + [149860] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3287), 3, - anon_sym_POUND, - anon_sym_COLON, - anon_sym_POUND_QMARK, - ACTIONS(3285), 18, + ACTIONS(5371), 27, 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, - [165379] = 3, + 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, + [149893] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3263), 3, - anon_sym_POUND, - anon_sym_COLON, - anon_sym_POUND_QMARK, - ACTIONS(3261), 18, + ACTIONS(5373), 27, 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, - [165408] = 20, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, + 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, + [149926] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(557), 1, + ACTIONS(5375), 27, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, anon_sym_LPAREN, - ACTIONS(4590), 1, - anon_sym_POUND, - ACTIONS(4592), 1, - anon_sym_POUND_QMARK, - ACTIONS(4594), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(4596), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(4598), 1, - anon_sym_SQUOTE, - ACTIONS(4600), 1, - anon_sym_COMMA_AT, - ACTIONS(4602), 1, - anon_sym_POUND_PLUS, - ACTIONS(4604), 1, - anon_sym_POUND_DASH, - ACTIONS(4606), 1, - anon_sym_POUNDC, - ACTIONS(4608), 1, - anon_sym_POUNDc, - STATE(1068), 1, - sym__bare_set_lit, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2233), 1, - aux_sym_list_lit_repeat1, - STATE(2236), 1, - sym__metadata_lit, - STATE(1067), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [165471] = 3, + 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, + [149959] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3291), 3, - anon_sym_POUND, - anon_sym_COLON, - anon_sym_POUND_QMARK, - ACTIONS(3289), 18, + ACTIONS(5377), 27, 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, - [165500] = 20, - ACTIONS(25), 1, - anon_sym_CARET, - ACTIONS(27), 1, - anon_sym_POUND_CARET, + 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, + [149992] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(631), 1, + ACTIONS(5359), 27, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, anon_sym_LPAREN, - ACTIONS(4530), 1, - anon_sym_POUND_QMARK, - ACTIONS(4544), 1, - anon_sym_POUND, - ACTIONS(4560), 1, - anon_sym_POUNDC, - ACTIONS(4562), 1, - anon_sym_POUNDc, - ACTIONS(4610), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(4612), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(4614), 1, - anon_sym_SQUOTE, - ACTIONS(4616), 1, - anon_sym_COMMA_AT, - ACTIONS(4618), 1, - anon_sym_POUND_PLUS, - ACTIONS(4620), 1, - anon_sym_POUND_DASH, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2233), 1, - aux_sym_list_lit_repeat1, - STATE(2236), 1, - sym__metadata_lit, - STATE(2324), 1, - sym__bare_set_lit, - STATE(2253), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [165563] = 20, - ACTIONS(25), 1, + 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, + [150025] = 2, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(5377), 27, + sym__ws, + sym_comment, + anon_sym_POUND_, anon_sym_CARET, - ACTIONS(27), 1, 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, + [150058] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(541), 1, + ACTIONS(5375), 27, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, anon_sym_LPAREN, - ACTIONS(4622), 1, - anon_sym_POUND, - ACTIONS(4624), 1, - anon_sym_POUND_QMARK, - ACTIONS(4626), 1, - anon_sym_POUND_QMARK_AT, - ACTIONS(4628), 1, - anon_sym_POUND_SQUOTE, - ACTIONS(4630), 1, - anon_sym_SQUOTE, - ACTIONS(4632), 1, - anon_sym_COMMA_AT, - ACTIONS(4634), 1, - anon_sym_POUND_PLUS, - ACTIONS(4636), 1, - anon_sym_POUND_DASH, - ACTIONS(4638), 1, - anon_sym_POUNDC, - ACTIONS(4640), 1, - anon_sym_POUNDc, - STATE(839), 1, - sym__bare_set_lit, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2233), 1, - aux_sym_list_lit_repeat1, - STATE(2236), 1, - sym__metadata_lit, - STATE(838), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [165626] = 3, + 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, + [150091] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3247), 3, - anon_sym_POUND, - anon_sym_COLON, - anon_sym_POUND_QMARK, - ACTIONS(3245), 18, + ACTIONS(5379), 27, 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, - [165655] = 3, + 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, + [150124] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3243), 3, - anon_sym_POUND, - anon_sym_COLON, - anon_sym_POUND_QMARK, - ACTIONS(3241), 18, + ACTIONS(5381), 27, 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, - [165684] = 3, + 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, + [150157] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3239), 3, - anon_sym_POUND, - anon_sym_COLON, - anon_sym_POUND_QMARK, - ACTIONS(3237), 18, + ACTIONS(5383), 27, 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, - [165713] = 3, + 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, + [150190] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3099), 1, - anon_sym_being, - ACTIONS(3097), 19, + ACTIONS(5385), 27, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_cl, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [165741] = 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, + [150223] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3395), 1, - anon_sym_being, - ACTIONS(3393), 19, + ACTIONS(5385), 27, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_cl, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [165769] = 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, + [150256] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3223), 1, - anon_sym_being, - ACTIONS(3221), 19, + ACTIONS(5387), 27, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_cl, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [165797] = 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, + [150289] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3151), 1, - anon_sym_being, - ACTIONS(3149), 19, + ACTIONS(5307), 27, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_cl, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [165825] = 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, + [150322] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3219), 1, - anon_sym_being, - ACTIONS(3217), 19, + ACTIONS(5381), 27, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_cl, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [165853] = 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, + [150355] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3139), 1, - anon_sym_being, - ACTIONS(3137), 19, + ACTIONS(5387), 27, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_cl, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [165881] = 15, + 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, + [150388] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(741), 1, - anon_sym_LPAREN, - ACTIONS(743), 1, - anon_sym_LBRACE, - ACTIONS(3622), 1, + ACTIONS(5389), 27, + sym__ws, + sym_comment, + anon_sym_POUND_, anon_sym_CARET, - ACTIONS(3624), 1, anon_sym_POUND_CARET, - ACTIONS(4642), 1, - aux_sym__form_token1, - STATE(1789), 1, - sym_list_lit, - STATE(2236), 1, - sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, - sym_meta_lit, - STATE(2359), 1, - sym_array_dimension, - STATE(2398), 1, - aux_sym_list_lit_repeat1, - ACTIONS(735), 3, - aux_sym_char_lit_token1, - aux_sym_char_lit_token2, - aux_sym_char_lit_token4, - ACTIONS(737), 3, - aux_sym_char_lit_token3, - aux_sym_char_lit_token5, - aux_sym_char_lit_token6, - STATE(1812), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [165933] = 3, + 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, + [150421] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3239), 1, - anon_sym_being, - ACTIONS(3237), 19, + ACTIONS(5389), 27, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_cl, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [165961] = 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, + [150454] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3247), 1, - anon_sym_being, - ACTIONS(3245), 19, + ACTIONS(5391), 27, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_cl, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [165989] = 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, + [150487] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3215), 1, - anon_sym_being, - ACTIONS(3213), 19, + ACTIONS(5393), 27, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_cl, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [166017] = 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, + [150520] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3291), 1, - anon_sym_being, - ACTIONS(3289), 19, + ACTIONS(5393), 27, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_cl, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [166045] = 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, + [150553] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3147), 1, - anon_sym_being, - ACTIONS(3145), 19, + ACTIONS(5391), 27, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_cl, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [166073] = 15, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(633), 1, - anon_sym_LBRACE, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(3622), 1, anon_sym_CARET, - ACTIONS(3624), 1, anon_sym_POUND_CARET, - ACTIONS(4644), 1, - aux_sym__form_token1, - STATE(2236), 1, - sym__metadata_lit, - STATE(2323), 1, - sym_list_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, - sym_meta_lit, - STATE(2374), 1, - sym_array_dimension, - STATE(2385), 1, - aux_sym_list_lit_repeat1, - ACTIONS(625), 3, - aux_sym_char_lit_token1, - aux_sym_char_lit_token2, - aux_sym_char_lit_token4, - ACTIONS(627), 3, - aux_sym_char_lit_token3, - aux_sym_char_lit_token5, - aux_sym_char_lit_token6, - STATE(2332), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [166125] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(3083), 1, - anon_sym_being, - ACTIONS(3081), 19, - sym__ws, - sym_comment, - anon_sym_POUND_, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_cl, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [166153] = 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, + [150586] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3263), 1, - anon_sym_being, - ACTIONS(3261), 19, + ACTIONS(5395), 27, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_cl, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [166181] = 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, + [150619] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3211), 1, - anon_sym_being, - ACTIONS(3209), 19, + ACTIONS(5397), 27, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_cl, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [166209] = 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, + [150652] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3227), 1, - anon_sym_being, - ACTIONS(3225), 19, + ACTIONS(5399), 27, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_cl, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [166237] = 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, + [150685] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3255), 1, - anon_sym_being, - ACTIONS(3253), 19, + ACTIONS(5401), 27, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_cl, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [166265] = 15, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(557), 1, - anon_sym_LPAREN, - ACTIONS(559), 1, - anon_sym_LBRACE, - ACTIONS(3622), 1, anon_sym_CARET, - ACTIONS(3624), 1, anon_sym_POUND_CARET, - ACTIONS(4646), 1, - aux_sym__form_token1, - STATE(1071), 1, - sym_list_lit, - STATE(2236), 1, - sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, - sym_meta_lit, - STATE(2355), 1, - sym_array_dimension, - STATE(2409), 1, - aux_sym_list_lit_repeat1, - ACTIONS(553), 3, - aux_sym_char_lit_token1, - aux_sym_char_lit_token2, - aux_sym_char_lit_token4, - ACTIONS(555), 3, - aux_sym_char_lit_token3, - aux_sym_char_lit_token5, - aux_sym_char_lit_token6, - STATE(1058), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [166317] = 3, + 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, + [150718] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3259), 1, - anon_sym_being, - ACTIONS(3257), 19, + ACTIONS(5403), 27, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_cl, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [166345] = 15, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(631), 1, - anon_sym_LPAREN, - ACTIONS(633), 1, - anon_sym_LBRACE, - ACTIONS(3622), 1, anon_sym_CARET, - ACTIONS(3624), 1, anon_sym_POUND_CARET, - ACTIONS(4648), 1, - aux_sym__form_token1, - STATE(2236), 1, - sym__metadata_lit, - STATE(2323), 1, - sym_list_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, - sym_meta_lit, - STATE(2376), 1, - sym_array_dimension, - STATE(2393), 1, - aux_sym_list_lit_repeat1, - ACTIONS(625), 3, - aux_sym_char_lit_token1, - aux_sym_char_lit_token2, - aux_sym_char_lit_token4, - ACTIONS(627), 3, - aux_sym_char_lit_token3, - aux_sym_char_lit_token5, - aux_sym_char_lit_token6, - STATE(2332), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [166397] = 3, + 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, + [150751] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3267), 1, - anon_sym_being, - ACTIONS(3265), 19, + ACTIONS(5405), 27, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_cl, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [166425] = 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, + [150784] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3207), 1, - anon_sym_being, - ACTIONS(3205), 19, + ACTIONS(5401), 27, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_cl, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [166453] = 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, + [150817] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3271), 1, - anon_sym_being, - ACTIONS(3269), 19, + ACTIONS(5407), 27, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_cl, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [166481] = 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, + [150850] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3203), 1, - anon_sym_being, - ACTIONS(3201), 19, + ACTIONS(5407), 27, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_cl, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [166509] = 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, + [150883] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3199), 1, - anon_sym_being, - ACTIONS(3197), 19, + ACTIONS(5409), 27, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_cl, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [166537] = 15, + 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, + [150916] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(633), 1, - anon_sym_LBRACE, - ACTIONS(829), 1, - anon_sym_LPAREN, - ACTIONS(3622), 1, + ACTIONS(5411), 27, + sym__ws, + sym_comment, + anon_sym_POUND_, anon_sym_CARET, - ACTIONS(3624), 1, anon_sym_POUND_CARET, - ACTIONS(4650), 1, - aux_sym__form_token1, - STATE(2236), 1, - sym__metadata_lit, - STATE(2323), 1, - sym_list_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, - sym_meta_lit, - STATE(2352), 1, - sym_array_dimension, - STATE(2380), 1, - aux_sym_list_lit_repeat1, - ACTIONS(625), 3, - aux_sym_char_lit_token1, - aux_sym_char_lit_token2, - aux_sym_char_lit_token4, - ACTIONS(627), 3, - aux_sym_char_lit_token3, - aux_sym_char_lit_token5, - aux_sym_char_lit_token6, - STATE(2332), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [166589] = 3, + 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, + [150949] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3275), 1, - anon_sym_being, - ACTIONS(3273), 19, + ACTIONS(5399), 27, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_cl, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [166617] = 15, + 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, + [150982] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(791), 1, - anon_sym_LBRACE, - ACTIONS(3622), 1, + ACTIONS(5411), 27, + sym__ws, + sym_comment, + anon_sym_POUND_, anon_sym_CARET, - ACTIONS(3624), 1, anon_sym_POUND_CARET, - ACTIONS(4652), 1, - aux_sym__form_token1, - STATE(1366), 1, - sym_list_lit, - STATE(2236), 1, - sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, - sym_meta_lit, - STATE(2346), 1, - sym_array_dimension, - STATE(2389), 1, - aux_sym_list_lit_repeat1, - ACTIONS(783), 3, - aux_sym_char_lit_token1, - aux_sym_char_lit_token2, - aux_sym_char_lit_token4, - ACTIONS(785), 3, - aux_sym_char_lit_token3, - aux_sym_char_lit_token5, - aux_sym_char_lit_token6, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [166669] = 3, + 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, + [151015] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3279), 1, - anon_sym_being, - ACTIONS(3277), 19, + ACTIONS(5413), 27, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_cl, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [166697] = 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, + [151048] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3063), 1, - anon_sym_being, - ACTIONS(3061), 19, + ACTIONS(5415), 27, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_cl, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [166725] = 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, + [151081] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3063), 1, - anon_sym_being, - ACTIONS(3061), 19, + ACTIONS(5415), 27, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_cl, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [166753] = 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, + [151114] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3195), 1, - anon_sym_being, - ACTIONS(3193), 19, + ACTIONS(5417), 27, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_cl, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [166781] = 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, + [151147] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3135), 1, - anon_sym_being, - ACTIONS(3133), 19, + ACTIONS(5419), 27, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_cl, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [166809] = 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, + [151180] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3287), 1, - anon_sym_being, - ACTIONS(3285), 19, + ACTIONS(5419), 27, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_cl, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [166837] = 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, + [151213] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3175), 1, - anon_sym_being, - ACTIONS(3173), 19, + ACTIONS(5379), 27, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_cl, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [166865] = 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, + [151246] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3251), 1, + ACTIONS(308), 1, anon_sym_being, - ACTIONS(3249), 19, - sym__ws, - sym_comment, + ACTIONS(5423), 1, anon_sym_POUND_, + ACTIONS(5425), 1, anon_sym_cl, + STATE(292), 1, + sym_for_clause_word, + STATE(960), 1, + aux_sym_for_clause_repeat1, + STATE(1250), 1, + sym__for_part, + ACTIONS(5421), 2, + sym__ws, + sym_comment, + STATE(2105), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(310), 15, anon_sym_in, anon_sym_across, anon_sym_using, @@ -146997,16 +144100,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [166893] = 3, + [151294] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3163), 1, + ACTIONS(308), 1, anon_sym_being, - ACTIONS(3161), 19, - sym__ws, - sym_comment, + ACTIONS(5423), 1, anon_sym_POUND_, + ACTIONS(5425), 1, anon_sym_cl, + STATE(292), 1, + sym_for_clause_word, + STATE(953), 1, + aux_sym_for_clause_repeat1, + STATE(1250), 1, + sym__for_part, + ACTIONS(5421), 2, + sym__ws, + sym_comment, + STATE(2105), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(310), 15, anon_sym_in, anon_sym_across, anon_sym_using, @@ -147022,53 +144138,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [166921] = 15, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(541), 1, - anon_sym_LPAREN, - ACTIONS(543), 1, - anon_sym_LBRACE, - ACTIONS(3622), 1, - anon_sym_CARET, - ACTIONS(3624), 1, - anon_sym_POUND_CARET, - ACTIONS(4654), 1, - aux_sym__form_token1, - STATE(841), 1, - sym_list_lit, - STATE(2236), 1, - sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, - sym_meta_lit, - STATE(2365), 1, - sym_array_dimension, - STATE(2395), 1, - aux_sym_list_lit_repeat1, - ACTIONS(537), 3, - aux_sym_char_lit_token1, - aux_sym_char_lit_token2, - aux_sym_char_lit_token4, - ACTIONS(539), 3, - aux_sym_char_lit_token3, - aux_sym_char_lit_token5, - aux_sym_char_lit_token6, - STATE(939), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [166973] = 3, + [151342] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3191), 1, + ACTIONS(308), 1, anon_sym_being, - ACTIONS(3189), 19, - sym__ws, - sym_comment, + ACTIONS(5423), 1, anon_sym_POUND_, + ACTIONS(5425), 1, anon_sym_cl, + STATE(292), 1, + sym_for_clause_word, + STATE(952), 1, + aux_sym_for_clause_repeat1, + STATE(1250), 1, + sym__for_part, + ACTIONS(5421), 2, + sym__ws, + sym_comment, + STATE(2105), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(310), 15, anon_sym_in, anon_sym_across, anon_sym_using, @@ -147084,53 +144176,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [167001] = 15, - ACTIONS(29), 1, - anon_sym_LPAREN, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(441), 1, - anon_sym_LBRACE, - ACTIONS(3622), 1, - anon_sym_CARET, - ACTIONS(3624), 1, - anon_sym_POUND_CARET, - ACTIONS(4656), 1, - aux_sym__form_token1, - STATE(1542), 1, - sym_list_lit, - STATE(2236), 1, - sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, - sym_meta_lit, - STATE(2357), 1, - sym_array_dimension, - STATE(2379), 1, - aux_sym_list_lit_repeat1, - ACTIONS(437), 3, - aux_sym_char_lit_token1, - aux_sym_char_lit_token2, - aux_sym_char_lit_token4, - ACTIONS(439), 3, - aux_sym_char_lit_token3, - aux_sym_char_lit_token5, - aux_sym_char_lit_token6, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [167053] = 3, + [151390] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3091), 1, + ACTIONS(308), 1, anon_sym_being, - ACTIONS(3089), 19, - sym__ws, - sym_comment, + ACTIONS(5423), 1, anon_sym_POUND_, + ACTIONS(5425), 1, anon_sym_cl, + STATE(292), 1, + sym_for_clause_word, + STATE(958), 1, + aux_sym_for_clause_repeat1, + STATE(1250), 1, + sym__for_part, + ACTIONS(5421), 2, + sym__ws, + sym_comment, + STATE(2105), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(310), 15, anon_sym_in, anon_sym_across, anon_sym_using, @@ -147146,16 +144214,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [167081] = 3, + [151438] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3243), 1, + ACTIONS(308), 1, anon_sym_being, - ACTIONS(3241), 19, - sym__ws, - sym_comment, + ACTIONS(5423), 1, anon_sym_POUND_, + ACTIONS(5425), 1, anon_sym_cl, + STATE(292), 1, + sym_for_clause_word, + STATE(948), 1, + aux_sym_for_clause_repeat1, + STATE(1250), 1, + sym__for_part, + ACTIONS(5421), 2, + sym__ws, + sym_comment, + STATE(2105), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(310), 15, anon_sym_in, anon_sym_across, anon_sym_using, @@ -147171,16 +144252,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [167109] = 3, + [151486] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3231), 1, + ACTIONS(308), 1, anon_sym_being, - ACTIONS(3229), 19, - sym__ws, - sym_comment, + ACTIONS(5423), 1, anon_sym_POUND_, + ACTIONS(5425), 1, anon_sym_cl, + STATE(292), 1, + sym_for_clause_word, + STATE(949), 1, + aux_sym_for_clause_repeat1, + STATE(1250), 1, + sym__for_part, + ACTIONS(5421), 2, + sym__ws, + sym_comment, + STATE(2105), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(310), 15, anon_sym_in, anon_sym_across, anon_sym_using, @@ -147196,16 +144290,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [167137] = 3, + [151534] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3091), 1, + ACTIONS(308), 1, anon_sym_being, - ACTIONS(3089), 19, - sym__ws, - sym_comment, + ACTIONS(5423), 1, anon_sym_POUND_, + ACTIONS(5425), 1, anon_sym_cl, + STATE(292), 1, + sym_for_clause_word, + STATE(944), 1, + aux_sym_for_clause_repeat1, + STATE(1250), 1, + sym__for_part, + ACTIONS(5421), 2, + sym__ws, + sym_comment, + STATE(2105), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(310), 15, anon_sym_in, anon_sym_across, anon_sym_using, @@ -147221,16 +144328,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [167165] = 3, + [151582] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3187), 1, + ACTIONS(308), 1, anon_sym_being, - ACTIONS(3185), 19, - sym__ws, - sym_comment, + ACTIONS(5423), 1, anon_sym_POUND_, + ACTIONS(5425), 1, anon_sym_cl, + STATE(292), 1, + sym_for_clause_word, + STATE(947), 1, + aux_sym_for_clause_repeat1, + STATE(1250), 1, + sym__for_part, + ACTIONS(5421), 2, + sym__ws, + sym_comment, + STATE(2105), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(310), 15, anon_sym_in, anon_sym_across, anon_sym_using, @@ -147246,16 +144366,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [167193] = 3, + [151630] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3183), 1, + ACTIONS(308), 1, anon_sym_being, - ACTIONS(3181), 19, - sym__ws, - sym_comment, + ACTIONS(5423), 1, anon_sym_POUND_, + ACTIONS(5425), 1, anon_sym_cl, + STATE(292), 1, + sym_for_clause_word, + STATE(955), 1, + aux_sym_for_clause_repeat1, + STATE(1250), 1, + sym__for_part, + ACTIONS(5421), 2, + sym__ws, + sym_comment, + STATE(2105), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(310), 15, anon_sym_in, anon_sym_across, anon_sym_using, @@ -147271,16 +144404,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [167221] = 3, + [151678] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3299), 1, + ACTIONS(308), 1, anon_sym_being, - ACTIONS(3297), 19, - sym__ws, - sym_comment, + ACTIONS(5423), 1, anon_sym_POUND_, + ACTIONS(5425), 1, anon_sym_cl, + STATE(292), 1, + sym_for_clause_word, + STATE(945), 1, + aux_sym_for_clause_repeat1, + STATE(1250), 1, + sym__for_part, + ACTIONS(5421), 2, + sym__ws, + sym_comment, + STATE(2105), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(310), 15, anon_sym_in, anon_sym_across, anon_sym_using, @@ -147296,16 +144442,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [167249] = 3, + [151726] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3303), 1, + ACTIONS(308), 1, anon_sym_being, - ACTIONS(3301), 19, - sym__ws, - sym_comment, + ACTIONS(5423), 1, anon_sym_POUND_, + ACTIONS(5425), 1, anon_sym_cl, + STATE(292), 1, + sym_for_clause_word, + STATE(956), 1, + aux_sym_for_clause_repeat1, + STATE(1250), 1, + sym__for_part, + ACTIONS(5421), 2, + sym__ws, + sym_comment, + STATE(2105), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(310), 15, anon_sym_in, anon_sym_across, anon_sym_using, @@ -147321,16 +144480,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [167277] = 3, + [151774] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3435), 1, + ACTIONS(308), 1, anon_sym_being, - ACTIONS(3433), 19, - sym__ws, - sym_comment, + ACTIONS(5423), 1, anon_sym_POUND_, + ACTIONS(5425), 1, anon_sym_cl, + STATE(292), 1, + sym_for_clause_word, + STATE(950), 1, + aux_sym_for_clause_repeat1, + STATE(1250), 1, + sym__for_part, + ACTIONS(5421), 2, + sym__ws, + sym_comment, + STATE(2105), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(310), 15, anon_sym_in, anon_sym_across, anon_sym_using, @@ -147346,41 +144518,173 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [167305] = 3, + [151822] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3431), 1, - anon_sym_being, - ACTIONS(3429), 19, + ACTIONS(5427), 25, + aux_sym_num_lit_token1, + anon_sym_TILDE, + anon_sym_SQUOTE, + anon_sym_COMMA, + 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, + [151853] = 2, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(5429), 25, + aux_sym_num_lit_token1, + anon_sym_TILDE, + anon_sym_SQUOTE, + anon_sym_COMMA, + 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, + [151884] = 20, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(592), 1, + anon_sym_COLON, + ACTIONS(594), 1, + anon_sym_COLON_COLON, + ACTIONS(4703), 1, + anon_sym_CARET, + ACTIONS(4705), 1, + anon_sym_POUND_CARET, + ACTIONS(5433), 1, + anon_sym_POUND_, + ACTIONS(5435), 1, + aux_sym_sym_lit_token1, + ACTIONS(5437), 1, + anon_sym_COMMA, + STATE(1570), 1, + sym_list_lit, + STATE(1571), 1, + sym_unquoting_lit, + STATE(2199), 1, + sym_kwd_lit, + STATE(2212), 1, + sym_sym_lit, + STATE(2237), 1, + sym__metadata_lit, + STATE(2352), 1, + sym_meta_lit, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2418), 1, + aux_sym_list_lit_repeat1, + ACTIONS(5431), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_cl, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [167333] = 3, + STATE(1562), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2275), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [151950] = 18, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3427), 1, - anon_sym_being, - ACTIONS(3425), 19, + ACTIONS(857), 1, + anon_sym_COLON, + ACTIONS(859), 1, + anon_sym_COLON_COLON, + ACTIONS(861), 1, + anon_sym_DQUOTE, + ACTIONS(4703), 1, + anon_sym_CARET, + ACTIONS(4705), 1, + anon_sym_POUND_CARET, + ACTIONS(5441), 1, + anon_sym_POUND_, + ACTIONS(5443), 1, + aux_sym_sym_lit_token1, + ACTIONS(5445), 1, + anon_sym_LBRACE, + ACTIONS(5447), 1, + anon_sym_POUND_QMARK, + STATE(2225), 1, + sym__bare_map_lit, + STATE(2237), 1, + sym__metadata_lit, + STATE(2352), 1, + sym_meta_lit, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2424), 1, + aux_sym_list_lit_repeat1, + ACTIONS(5439), 2, sym__ws, sym_comment, + STATE(2236), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(2227), 5, + sym_kwd_lit, + sym_str_lit, + sym_sym_lit, + sym_map_lit, + sym_read_cond_lit, + [152012] = 8, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(308), 1, + anon_sym_being, + ACTIONS(5423), 1, anon_sym_POUND_, + ACTIONS(5425), 1, anon_sym_cl, + STATE(382), 1, + sym_for_clause_word, + ACTIONS(5449), 2, + sym__ws, + sym_comment, + STATE(2116), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(310), 15, anon_sym_in, anon_sym_across, anon_sym_using, @@ -147396,215 +144700,467 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [167361] = 3, + [152054] = 18, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, + anon_sym_COLON_COLON, + ACTIONS(21), 1, + anon_sym_DQUOTE, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3075), 1, - anon_sym_being, - ACTIONS(3073), 19, + ACTIONS(4703), 1, + anon_sym_CARET, + ACTIONS(4705), 1, + anon_sym_POUND_CARET, + ACTIONS(5441), 1, + anon_sym_POUND_, + ACTIONS(5445), 1, + anon_sym_LBRACE, + ACTIONS(5451), 1, + aux_sym_sym_lit_token1, + ACTIONS(5453), 1, + anon_sym_POUND_QMARK, + STATE(2225), 1, + sym__bare_map_lit, + STATE(2237), 1, + sym__metadata_lit, + STATE(2352), 1, + sym_meta_lit, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2425), 1, + aux_sym_list_lit_repeat1, + ACTIONS(5439), 2, sym__ws, sym_comment, + STATE(2236), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(2227), 5, + sym_kwd_lit, + sym_str_lit, + sym_sym_lit, + sym_map_lit, + sym_read_cond_lit, + [152116] = 20, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(592), 1, + anon_sym_COLON, + ACTIONS(594), 1, + anon_sym_COLON_COLON, + ACTIONS(4703), 1, + anon_sym_CARET, + ACTIONS(4705), 1, + anon_sym_POUND_CARET, + ACTIONS(5433), 1, anon_sym_POUND_, - anon_sym_cl, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [167389] = 3, + ACTIONS(5435), 1, + aux_sym_sym_lit_token1, + ACTIONS(5437), 1, + anon_sym_COMMA, + STATE(1775), 1, + sym_list_lit, + STATE(1776), 1, + sym_unquoting_lit, + STATE(2214), 1, + sym_sym_lit, + STATE(2220), 1, + sym_kwd_lit, + STATE(2237), 1, + sym__metadata_lit, + STATE(2352), 1, + sym_meta_lit, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2418), 1, + aux_sym_list_lit_repeat1, + ACTIONS(5431), 2, + sym__ws, + sym_comment, + STATE(1562), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2275), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [152182] = 20, + ACTIONS(29), 1, + anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3179), 1, - anon_sym_being, - ACTIONS(3177), 19, + ACTIONS(592), 1, + anon_sym_COLON, + ACTIONS(594), 1, + anon_sym_COLON_COLON, + ACTIONS(4703), 1, + anon_sym_CARET, + ACTIONS(4705), 1, + anon_sym_POUND_CARET, + ACTIONS(5433), 1, + anon_sym_POUND_, + ACTIONS(5435), 1, + aux_sym_sym_lit_token1, + ACTIONS(5437), 1, + anon_sym_COMMA, + STATE(1744), 1, + sym_list_lit, + STATE(1745), 1, + sym_unquoting_lit, + STATE(2215), 1, + sym_kwd_lit, + STATE(2216), 1, + sym_sym_lit, + STATE(2237), 1, + sym__metadata_lit, + STATE(2352), 1, + sym_meta_lit, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2418), 1, + aux_sym_list_lit_repeat1, + ACTIONS(5455), 2, sym__ws, sym_comment, + STATE(1562), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2107), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [152248] = 20, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(592), 1, + anon_sym_COLON, + ACTIONS(594), 1, + anon_sym_COLON_COLON, + ACTIONS(4703), 1, + anon_sym_CARET, + ACTIONS(4705), 1, + anon_sym_POUND_CARET, + ACTIONS(5433), 1, anon_sym_POUND_, - anon_sym_cl, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [167417] = 3, + ACTIONS(5435), 1, + aux_sym_sym_lit_token1, + ACTIONS(5437), 1, + anon_sym_COMMA, + STATE(1777), 1, + sym_list_lit, + STATE(1778), 1, + sym_unquoting_lit, + STATE(2200), 1, + sym_sym_lit, + STATE(2211), 1, + sym_kwd_lit, + STATE(2237), 1, + sym__metadata_lit, + STATE(2352), 1, + sym_meta_lit, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2418), 1, + aux_sym_list_lit_repeat1, + ACTIONS(5457), 2, + sym__ws, + sym_comment, + STATE(1562), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2103), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [152314] = 18, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, + anon_sym_COLON_COLON, + ACTIONS(21), 1, + anon_sym_DQUOTE, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3071), 1, - anon_sym_being, - ACTIONS(3069), 19, + ACTIONS(4703), 1, + anon_sym_CARET, + ACTIONS(4705), 1, + anon_sym_POUND_CARET, + ACTIONS(5441), 1, + anon_sym_POUND_, + ACTIONS(5445), 1, + anon_sym_LBRACE, + ACTIONS(5451), 1, + aux_sym_sym_lit_token1, + ACTIONS(5453), 1, + anon_sym_POUND_QMARK, + STATE(2225), 1, + sym__bare_map_lit, + STATE(2237), 1, + sym__metadata_lit, + STATE(2352), 1, + sym_meta_lit, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2425), 1, + aux_sym_list_lit_repeat1, + ACTIONS(5459), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_cl, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [167445] = 3, + STATE(2112), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(2233), 5, + sym_kwd_lit, + sym_str_lit, + sym_sym_lit, + sym_map_lit, + sym_read_cond_lit, + [152376] = 18, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, + anon_sym_COLON_COLON, + ACTIONS(21), 1, + anon_sym_DQUOTE, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3171), 1, - anon_sym_being, - ACTIONS(3169), 19, + ACTIONS(4703), 1, + anon_sym_CARET, + ACTIONS(4705), 1, + anon_sym_POUND_CARET, + ACTIONS(5441), 1, + anon_sym_POUND_, + ACTIONS(5445), 1, + anon_sym_LBRACE, + ACTIONS(5451), 1, + aux_sym_sym_lit_token1, + ACTIONS(5453), 1, + anon_sym_POUND_QMARK, + STATE(2225), 1, + sym__bare_map_lit, + STATE(2237), 1, + sym__metadata_lit, + STATE(2352), 1, + sym_meta_lit, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2425), 1, + aux_sym_list_lit_repeat1, + ACTIONS(5461), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_cl, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [167473] = 3, + STATE(2106), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(2232), 5, + sym_kwd_lit, + sym_str_lit, + sym_sym_lit, + sym_map_lit, + sym_read_cond_lit, + [152438] = 18, + ACTIONS(17), 1, + anon_sym_COLON, + ACTIONS(19), 1, + anon_sym_COLON_COLON, + ACTIONS(21), 1, + anon_sym_DQUOTE, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3107), 1, - anon_sym_being, - ACTIONS(3105), 19, + ACTIONS(4703), 1, + anon_sym_CARET, + ACTIONS(4705), 1, + anon_sym_POUND_CARET, + ACTIONS(5441), 1, + anon_sym_POUND_, + ACTIONS(5445), 1, + anon_sym_LBRACE, + ACTIONS(5451), 1, + aux_sym_sym_lit_token1, + ACTIONS(5453), 1, + anon_sym_POUND_QMARK, + STATE(2225), 1, + sym__bare_map_lit, + STATE(2237), 1, + sym__metadata_lit, + STATE(2352), 1, + sym_meta_lit, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2425), 1, + aux_sym_list_lit_repeat1, + ACTIONS(5439), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_cl, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [167501] = 3, + STATE(2236), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(2230), 5, + sym_kwd_lit, + sym_str_lit, + sym_sym_lit, + sym_map_lit, + sym_read_cond_lit, + [152500] = 18, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3083), 1, - anon_sym_being, - ACTIONS(3081), 19, + ACTIONS(857), 1, + anon_sym_COLON, + ACTIONS(859), 1, + anon_sym_COLON_COLON, + ACTIONS(861), 1, + anon_sym_DQUOTE, + ACTIONS(4703), 1, + anon_sym_CARET, + ACTIONS(4705), 1, + anon_sym_POUND_CARET, + ACTIONS(5441), 1, + anon_sym_POUND_, + ACTIONS(5443), 1, + aux_sym_sym_lit_token1, + ACTIONS(5445), 1, + anon_sym_LBRACE, + ACTIONS(5447), 1, + anon_sym_POUND_QMARK, + STATE(2225), 1, + sym__bare_map_lit, + STATE(2237), 1, + sym__metadata_lit, + STATE(2352), 1, + sym_meta_lit, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2424), 1, + aux_sym_list_lit_repeat1, + ACTIONS(5463), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_cl, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [167529] = 3, + STATE(2104), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(2232), 5, + sym_kwd_lit, + sym_str_lit, + sym_sym_lit, + sym_map_lit, + sym_read_cond_lit, + [152562] = 18, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3235), 1, - anon_sym_being, - ACTIONS(3233), 19, + ACTIONS(857), 1, + anon_sym_COLON, + ACTIONS(859), 1, + anon_sym_COLON_COLON, + ACTIONS(861), 1, + anon_sym_DQUOTE, + ACTIONS(4703), 1, + anon_sym_CARET, + ACTIONS(4705), 1, + anon_sym_POUND_CARET, + ACTIONS(5441), 1, + anon_sym_POUND_, + ACTIONS(5443), 1, + aux_sym_sym_lit_token1, + ACTIONS(5445), 1, + anon_sym_LBRACE, + ACTIONS(5447), 1, + anon_sym_POUND_QMARK, + STATE(2225), 1, + sym__bare_map_lit, + STATE(2237), 1, + sym__metadata_lit, + STATE(2352), 1, + sym_meta_lit, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2424), 1, + aux_sym_list_lit_repeat1, + ACTIONS(5465), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_cl, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [167557] = 3, + STATE(2115), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(2233), 5, + sym_kwd_lit, + sym_str_lit, + sym_sym_lit, + sym_map_lit, + sym_read_cond_lit, + [152624] = 18, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3095), 1, - anon_sym_being, - ACTIONS(3093), 19, + ACTIONS(857), 1, + anon_sym_COLON, + ACTIONS(859), 1, + anon_sym_COLON_COLON, + ACTIONS(861), 1, + anon_sym_DQUOTE, + ACTIONS(4703), 1, + anon_sym_CARET, + ACTIONS(4705), 1, + anon_sym_POUND_CARET, + ACTIONS(5441), 1, + anon_sym_POUND_, + ACTIONS(5443), 1, + aux_sym_sym_lit_token1, + ACTIONS(5445), 1, + anon_sym_LBRACE, + ACTIONS(5447), 1, + anon_sym_POUND_QMARK, + STATE(2225), 1, + sym__bare_map_lit, + STATE(2237), 1, + sym__metadata_lit, + STATE(2352), 1, + sym_meta_lit, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2424), 1, + aux_sym_list_lit_repeat1, + ACTIONS(5439), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_cl, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [167585] = 3, + STATE(2236), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + STATE(2230), 5, + sym_kwd_lit, + sym_str_lit, + sym_sym_lit, + sym_map_lit, + sym_read_cond_lit, + [152686] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3295), 1, + ACTIONS(4120), 1, anon_sym_being, - ACTIONS(3293), 19, + ACTIONS(5470), 1, + anon_sym_POUND_, + ACTIONS(5467), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2116), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(4122), 16, anon_sym_cl, anon_sym_in, anon_sym_across, @@ -147621,12 +145177,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [167613] = 3, + [152723] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3087), 1, + ACTIONS(4342), 1, anon_sym_being, - ACTIONS(3085), 19, + ACTIONS(5473), 1, + anon_sym_COLON, + ACTIONS(5475), 1, + anon_sym_COLON_COLON, + ACTIONS(4340), 19, sym__ws, sym_comment, anon_sym_POUND_, @@ -147646,15 +145206,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [167641] = 3, + [152757] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3103), 1, + ACTIONS(4262), 2, + anon_sym_COLON, anon_sym_being, - ACTIONS(3101), 19, + ACTIONS(4260), 20, sym__ws, sym_comment, anon_sym_POUND_, + anon_sym_COLON_COLON, anon_sym_cl, anon_sym_in, anon_sym_across, @@ -147671,12 +145233,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [167669] = 3, + [152787] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3111), 1, + ACTIONS(4306), 1, anon_sym_being, - ACTIONS(3109), 19, + ACTIONS(5473), 1, + anon_sym_COLON, + ACTIONS(5475), 1, + anon_sym_COLON_COLON, + ACTIONS(4304), 19, sym__ws, sym_comment, anon_sym_POUND_, @@ -147696,774 +145262,1292 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [167697] = 3, + [152821] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3115), 1, - anon_sym_being, - ACTIONS(3113), 19, + ACTIONS(4390), 3, + anon_sym_POUND, + anon_sym_COLON, + anon_sym_POUND_QMARK, + ACTIONS(4388), 18, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_cl, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [167725] = 3, + 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, + [152850] = 20, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3119), 1, - anon_sym_being, - ACTIONS(3117), 19, + ACTIONS(819), 1, + anon_sym_LPAREN, + ACTIONS(5477), 1, + anon_sym_POUND, + ACTIONS(5479), 1, + anon_sym_POUND_QMARK, + ACTIONS(5481), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(5483), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(5485), 1, + anon_sym_SQUOTE, + ACTIONS(5487), 1, + anon_sym_COMMA_AT, + ACTIONS(5489), 1, + anon_sym_POUND_PLUS, + ACTIONS(5491), 1, + anon_sym_POUND_DASH, + ACTIONS(5493), 1, + anon_sym_POUNDC, + ACTIONS(5495), 1, + anon_sym_POUNDc, + STATE(1731), 1, + sym__bare_set_lit, + STATE(2202), 1, + sym_old_meta_lit, + STATE(2206), 1, + sym_meta_lit, + STATE(2228), 1, + aux_sym_list_lit_repeat1, + STATE(2237), 1, + sym__metadata_lit, + STATE(1732), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [152913] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4286), 3, + anon_sym_POUND, + anon_sym_COLON, + anon_sym_POUND_QMARK, + ACTIONS(4284), 18, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_cl, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [167753] = 3, + 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, + [152942] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3083), 1, - anon_sym_being, - ACTIONS(3081), 19, + ACTIONS(4322), 3, + anon_sym_POUND, + anon_sym_COLON, + anon_sym_POUND_QMARK, + ACTIONS(4320), 18, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_cl, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [167781] = 3, + 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, + [152971] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3123), 1, - anon_sym_being, - ACTIONS(3121), 19, + ACTIONS(4326), 3, + anon_sym_POUND, + anon_sym_COLON, + anon_sym_POUND_QMARK, + ACTIONS(4324), 18, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_cl, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [167809] = 15, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(277), 1, - anon_sym_LPAREN, - ACTIONS(669), 1, - anon_sym_LBRACE, - ACTIONS(3622), 1, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + aux_sym_sym_lit_token1, anon_sym_CARET, - ACTIONS(3624), 1, anon_sym_POUND_CARET, - ACTIONS(4658), 1, - aux_sym__form_token1, - STATE(2135), 1, - sym_list_lit, - STATE(2236), 1, - sym__metadata_lit, - STATE(2338), 1, - sym_array_dimension, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, - sym_meta_lit, - STATE(2396), 1, - aux_sym_list_lit_repeat1, - ACTIONS(665), 3, - aux_sym_char_lit_token1, - aux_sym_char_lit_token2, - aux_sym_char_lit_token4, - ACTIONS(667), 3, - aux_sym_char_lit_token3, - aux_sym_char_lit_token5, - aux_sym_char_lit_token6, - STATE(2118), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [167861] = 3, + 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, + [153000] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3127), 1, - anon_sym_being, - ACTIONS(3125), 19, + ACTIONS(4290), 3, + anon_sym_POUND, + anon_sym_COLON, + anon_sym_POUND_QMARK, + ACTIONS(4288), 18, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_cl, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [167889] = 3, + 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, + [153029] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3423), 1, - anon_sym_being, - ACTIONS(3421), 19, + ACTIONS(4290), 3, + anon_sym_POUND, + anon_sym_COLON, + anon_sym_POUND_QMARK, + ACTIONS(4288), 18, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_cl, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [167917] = 3, + 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, + [153058] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3423), 1, - anon_sym_being, - ACTIONS(3421), 19, + ACTIONS(4142), 3, + anon_sym_POUND, + anon_sym_COLON, + anon_sym_POUND_QMARK, + ACTIONS(4140), 18, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_cl, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [167945] = 3, + 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, + [153087] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3419), 1, - anon_sym_being, - ACTIONS(3417), 19, + ACTIONS(4158), 3, + anon_sym_POUND, + anon_sym_COLON, + anon_sym_POUND_QMARK, + ACTIONS(4156), 18, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_cl, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [167973] = 3, + 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, + [153116] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3415), 1, - anon_sym_being, - ACTIONS(3413), 19, + ACTIONS(4166), 3, + anon_sym_POUND, + anon_sym_COLON, + anon_sym_POUND_QMARK, + ACTIONS(4164), 18, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_cl, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [168001] = 3, + 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, + [153145] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3411), 1, - anon_sym_being, - ACTIONS(3409), 19, + ACTIONS(4402), 3, + anon_sym_POUND, + anon_sym_COLON, + anon_sym_POUND_QMARK, + ACTIONS(4400), 18, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_cl, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [168029] = 3, + 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, + [153174] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3411), 1, - anon_sym_being, - ACTIONS(3409), 19, + ACTIONS(4162), 3, + anon_sym_POUND, + anon_sym_COLON, + anon_sym_POUND_QMARK, + ACTIONS(4160), 18, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_cl, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [168057] = 3, + 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, + [153203] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3419), 1, - anon_sym_being, - ACTIONS(3417), 19, + ACTIONS(4382), 3, + anon_sym_POUND, + anon_sym_COLON, + anon_sym_POUND_QMARK, + ACTIONS(4380), 18, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_cl, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [168085] = 3, + 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, + [153232] = 20, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3415), 1, - anon_sym_being, - ACTIONS(3413), 19, + ACTIONS(869), 1, + anon_sym_LPAREN, + ACTIONS(5497), 1, + anon_sym_POUND, + ACTIONS(5499), 1, + anon_sym_POUND_QMARK, + ACTIONS(5501), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(5503), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(5505), 1, + anon_sym_SQUOTE, + ACTIONS(5507), 1, + anon_sym_COMMA_AT, + ACTIONS(5509), 1, + anon_sym_POUND_PLUS, + ACTIONS(5511), 1, + anon_sym_POUND_DASH, + ACTIONS(5513), 1, + anon_sym_POUNDC, + ACTIONS(5515), 1, + anon_sym_POUNDc, + STATE(2202), 1, + sym_old_meta_lit, + STATE(2206), 1, + sym_meta_lit, + STATE(2228), 1, + aux_sym_list_lit_repeat1, + STATE(2237), 1, + sym__metadata_lit, + STATE(2310), 1, + sym__bare_set_lit, + STATE(2318), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [153295] = 20, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(5517), 1, + anon_sym_POUND, + ACTIONS(5519), 1, + anon_sym_POUND_QMARK, + ACTIONS(5521), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(5523), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(5525), 1, + anon_sym_SQUOTE, + ACTIONS(5527), 1, + anon_sym_COMMA_AT, + ACTIONS(5529), 1, + anon_sym_POUND_PLUS, + ACTIONS(5531), 1, + anon_sym_POUND_DASH, + ACTIONS(5533), 1, + anon_sym_POUNDC, + ACTIONS(5535), 1, + anon_sym_POUNDc, + STATE(1365), 1, + sym__bare_set_lit, + STATE(2202), 1, + sym_old_meta_lit, + STATE(2206), 1, + sym_meta_lit, + STATE(2228), 1, + aux_sym_list_lit_repeat1, + STATE(2237), 1, + sym__metadata_lit, + STATE(1366), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [153358] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4190), 3, + anon_sym_POUND, + anon_sym_COLON, + anon_sym_POUND_QMARK, + ACTIONS(4188), 18, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_cl, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [168113] = 3, + 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, + [153387] = 20, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3411), 1, - anon_sym_being, - ACTIONS(3409), 19, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(5537), 1, + anon_sym_POUND, + ACTIONS(5539), 1, + anon_sym_POUND_QMARK, + ACTIONS(5541), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(5543), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(5545), 1, + anon_sym_SQUOTE, + ACTIONS(5547), 1, + anon_sym_COMMA_AT, + ACTIONS(5549), 1, + anon_sym_POUND_PLUS, + ACTIONS(5551), 1, + anon_sym_POUND_DASH, + ACTIONS(5553), 1, + anon_sym_POUNDC, + ACTIONS(5555), 1, + anon_sym_POUNDc, + STATE(1919), 1, + sym__bare_set_lit, + STATE(2202), 1, + sym_old_meta_lit, + STATE(2206), 1, + sym_meta_lit, + STATE(2228), 1, + aux_sym_list_lit_repeat1, + STATE(2237), 1, + sym__metadata_lit, + STATE(1918), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [153450] = 20, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(576), 1, + anon_sym_LPAREN, + ACTIONS(5557), 1, + anon_sym_POUND, + ACTIONS(5559), 1, + anon_sym_POUND_QMARK, + ACTIONS(5561), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(5563), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(5565), 1, + anon_sym_SQUOTE, + ACTIONS(5567), 1, + anon_sym_COMMA_AT, + ACTIONS(5569), 1, + anon_sym_POUND_PLUS, + ACTIONS(5571), 1, + anon_sym_POUND_DASH, + ACTIONS(5573), 1, + anon_sym_POUNDC, + ACTIONS(5575), 1, + anon_sym_POUNDc, + STATE(1054), 1, + sym__bare_set_lit, + STATE(2202), 1, + sym_old_meta_lit, + STATE(2206), 1, + sym_meta_lit, + STATE(2228), 1, + aux_sym_list_lit_repeat1, + STATE(2237), 1, + sym__metadata_lit, + STATE(1055), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [153513] = 20, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(869), 1, + anon_sym_LPAREN, + ACTIONS(5499), 1, + anon_sym_POUND_QMARK, + ACTIONS(5577), 1, + anon_sym_POUND, + ACTIONS(5579), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(5581), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(5583), 1, + anon_sym_SQUOTE, + ACTIONS(5585), 1, + anon_sym_COMMA_AT, + ACTIONS(5587), 1, + anon_sym_POUND_PLUS, + ACTIONS(5589), 1, + anon_sym_POUND_DASH, + ACTIONS(5591), 1, + anon_sym_POUNDC, + ACTIONS(5593), 1, + anon_sym_POUNDc, + STATE(1824), 1, + sym__bare_set_lit, + STATE(2202), 1, + sym_old_meta_lit, + STATE(2206), 1, + sym_meta_lit, + STATE(2228), 1, + aux_sym_list_lit_repeat1, + STATE(2237), 1, + sym__metadata_lit, + STATE(1823), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [153576] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4250), 3, + anon_sym_POUND, + anon_sym_COLON, + anon_sym_POUND_QMARK, + ACTIONS(4248), 18, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_cl, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [168141] = 3, + 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, + [153605] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3411), 1, - anon_sym_being, - ACTIONS(3409), 19, + ACTIONS(4254), 3, + anon_sym_POUND, + anon_sym_COLON, + anon_sym_POUND_QMARK, + ACTIONS(4252), 18, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_cl, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [168169] = 3, + 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, + [153634] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3407), 1, - anon_sym_being, - ACTIONS(3405), 19, + ACTIONS(4422), 3, + anon_sym_POUND, + anon_sym_COLON, + anon_sym_POUND_QMARK, + ACTIONS(4420), 18, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_cl, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [168197] = 3, + 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, + [153663] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3403), 1, - anon_sym_being, - ACTIONS(3401), 19, + ACTIONS(4146), 3, + anon_sym_POUND, + anon_sym_COLON, + anon_sym_POUND_QMARK, + ACTIONS(4144), 18, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_cl, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [168225] = 3, + 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, + [153692] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3399), 1, - anon_sym_being, - ACTIONS(3397), 19, + ACTIONS(4258), 3, + anon_sym_POUND, + anon_sym_COLON, + anon_sym_POUND_QMARK, + ACTIONS(4256), 18, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_cl, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [168253] = 3, + 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, + [153721] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3395), 1, - anon_sym_being, - ACTIONS(3393), 19, + ACTIONS(4394), 3, + anon_sym_POUND, + anon_sym_COLON, + anon_sym_POUND_QMARK, + ACTIONS(4392), 18, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_cl, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [168281] = 3, + 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, + [153750] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3399), 1, - anon_sym_being, - ACTIONS(3397), 19, + ACTIONS(4266), 3, + anon_sym_POUND, + anon_sym_COLON, + anon_sym_POUND_QMARK, + ACTIONS(4264), 18, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_cl, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [168309] = 3, + 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, + [153779] = 20, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3307), 1, - anon_sym_being, - ACTIONS(3305), 19, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_cl, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [168337] = 3, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(5497), 1, + anon_sym_POUND, + ACTIONS(5513), 1, + anon_sym_POUNDC, + ACTIONS(5515), 1, + anon_sym_POUNDc, + ACTIONS(5595), 1, + anon_sym_POUND_QMARK, + ACTIONS(5597), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(5599), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(5601), 1, + anon_sym_SQUOTE, + ACTIONS(5603), 1, + anon_sym_COMMA_AT, + ACTIONS(5605), 1, + anon_sym_POUND_PLUS, + ACTIONS(5607), 1, + anon_sym_POUND_DASH, + STATE(2202), 1, + sym_old_meta_lit, + STATE(2206), 1, + sym_meta_lit, + STATE(2228), 1, + aux_sym_list_lit_repeat1, + STATE(2237), 1, + sym__metadata_lit, + STATE(2310), 1, + sym__bare_set_lit, + STATE(2318), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [153842] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3143), 1, - anon_sym_being, - ACTIONS(3141), 19, + ACTIONS(4270), 3, + anon_sym_POUND, + anon_sym_COLON, + anon_sym_POUND_QMARK, + ACTIONS(4268), 18, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_cl, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [168365] = 3, + 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, + [153871] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3387), 1, - anon_sym_being, - ACTIONS(3385), 19, + ACTIONS(4482), 3, + anon_sym_POUND, + anon_sym_COLON, + anon_sym_POUND_QMARK, + ACTIONS(4480), 18, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_cl, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [168393] = 3, + 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, + [153900] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3403), 1, - anon_sym_being, - ACTIONS(3401), 19, + ACTIONS(4282), 3, + anon_sym_POUND, + anon_sym_COLON, + anon_sym_POUND_QMARK, + ACTIONS(4280), 18, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_cl, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [168421] = 3, + 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, + [153929] = 20, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(5537), 1, + anon_sym_POUND, + ACTIONS(5539), 1, + anon_sym_POUND_QMARK, + ACTIONS(5541), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(5553), 1, + anon_sym_POUNDC, + ACTIONS(5555), 1, + anon_sym_POUNDc, + ACTIONS(5609), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(5611), 1, + anon_sym_SQUOTE, + ACTIONS(5613), 1, + anon_sym_COMMA_AT, + ACTIONS(5615), 1, + anon_sym_POUND_PLUS, + ACTIONS(5617), 1, + anon_sym_POUND_DASH, + STATE(1919), 1, + sym__bare_set_lit, + STATE(2202), 1, + sym_old_meta_lit, + STATE(2206), 1, + sym_meta_lit, + STATE(2228), 1, + aux_sym_list_lit_repeat1, + STATE(2237), 1, + sym__metadata_lit, + STATE(1918), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [153992] = 20, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(288), 1, + anon_sym_LPAREN, + ACTIONS(5577), 1, + anon_sym_POUND, + ACTIONS(5591), 1, + anon_sym_POUNDC, + ACTIONS(5593), 1, + anon_sym_POUNDc, + ACTIONS(5619), 1, + anon_sym_POUND_QMARK, + ACTIONS(5621), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(5623), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(5625), 1, + anon_sym_SQUOTE, + ACTIONS(5627), 1, + anon_sym_COMMA_AT, + ACTIONS(5629), 1, + anon_sym_POUND_PLUS, + ACTIONS(5631), 1, + anon_sym_POUND_DASH, + STATE(1824), 1, + sym__bare_set_lit, + STATE(2202), 1, + sym_old_meta_lit, + STATE(2206), 1, + sym_meta_lit, + STATE(2228), 1, + aux_sym_list_lit_repeat1, + STATE(2237), 1, + sym__metadata_lit, + STATE(1823), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [154055] = 20, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(921), 1, + anon_sym_LPAREN, + ACTIONS(5633), 1, + anon_sym_POUND, + ACTIONS(5635), 1, + anon_sym_POUND_QMARK, + ACTIONS(5637), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(5639), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(5641), 1, + anon_sym_SQUOTE, + ACTIONS(5643), 1, + anon_sym_COMMA_AT, + ACTIONS(5645), 1, + anon_sym_POUND_PLUS, + ACTIONS(5647), 1, + anon_sym_POUND_DASH, + ACTIONS(5649), 1, + anon_sym_POUNDC, + ACTIONS(5651), 1, + anon_sym_POUNDc, + STATE(1247), 1, + sym__bare_set_lit, + STATE(2202), 1, + sym_old_meta_lit, + STATE(2206), 1, + sym_meta_lit, + STATE(2228), 1, + aux_sym_list_lit_repeat1, + STATE(2237), 1, + sym__metadata_lit, + STATE(1245), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [154118] = 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(5653), 1, + anon_sym_POUND, + ACTIONS(5655), 1, + anon_sym_POUND_QMARK, + ACTIONS(5657), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(5659), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(5661), 1, + anon_sym_SQUOTE, + ACTIONS(5663), 1, + anon_sym_COMMA_AT, + ACTIONS(5665), 1, + anon_sym_POUND_PLUS, + ACTIONS(5667), 1, + anon_sym_POUND_DASH, + ACTIONS(5669), 1, + anon_sym_POUNDC, + ACTIONS(5671), 1, + anon_sym_POUNDc, + STATE(1540), 1, + sym__bare_set_lit, + STATE(2202), 1, + sym_old_meta_lit, + STATE(2206), 1, + sym_meta_lit, + STATE(2228), 1, + aux_sym_list_lit_repeat1, + STATE(2237), 1, + sym__metadata_lit, + STATE(1541), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [154181] = 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(3399), 1, - anon_sym_being, - ACTIONS(3397), 19, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_cl, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [168449] = 3, + ACTIONS(5653), 1, + anon_sym_POUND, + ACTIONS(5655), 1, + anon_sym_POUND_QMARK, + ACTIONS(5657), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(5669), 1, + anon_sym_POUNDC, + ACTIONS(5671), 1, + anon_sym_POUNDc, + ACTIONS(5673), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(5675), 1, + anon_sym_SQUOTE, + ACTIONS(5677), 1, + anon_sym_COMMA_AT, + ACTIONS(5679), 1, + anon_sym_POUND_PLUS, + ACTIONS(5681), 1, + anon_sym_POUND_DASH, + STATE(1540), 1, + sym__bare_set_lit, + STATE(2202), 1, + sym_old_meta_lit, + STATE(2206), 1, + sym_meta_lit, + STATE(2228), 1, + aux_sym_list_lit_repeat1, + STATE(2237), 1, + sym__metadata_lit, + STATE(1541), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [154244] = 20, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3167), 1, - anon_sym_being, - ACTIONS(3165), 19, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_cl, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [168477] = 3, + ACTIONS(604), 1, + anon_sym_LPAREN, + ACTIONS(5497), 1, + anon_sym_POUND, + ACTIONS(5513), 1, + anon_sym_POUNDC, + ACTIONS(5515), 1, + anon_sym_POUNDc, + ACTIONS(5683), 1, + anon_sym_POUND_QMARK, + ACTIONS(5685), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(5687), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(5689), 1, + anon_sym_SQUOTE, + ACTIONS(5691), 1, + anon_sym_COMMA_AT, + ACTIONS(5693), 1, + anon_sym_POUND_PLUS, + ACTIONS(5695), 1, + anon_sym_POUND_DASH, + STATE(2202), 1, + sym_old_meta_lit, + STATE(2206), 1, + sym_meta_lit, + STATE(2228), 1, + aux_sym_list_lit_repeat1, + STATE(2237), 1, + sym__metadata_lit, + STATE(2310), 1, + sym__bare_set_lit, + STATE(2318), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [154307] = 20, + ACTIONS(25), 1, + anon_sym_CARET, + ACTIONS(27), 1, + anon_sym_POUND_CARET, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3395), 1, - anon_sym_being, - ACTIONS(3393), 19, + ACTIONS(775), 1, + anon_sym_LPAREN, + ACTIONS(5697), 1, + anon_sym_POUND, + ACTIONS(5699), 1, + anon_sym_POUND_QMARK, + ACTIONS(5701), 1, + anon_sym_POUND_QMARK_AT, + ACTIONS(5703), 1, + anon_sym_POUND_SQUOTE, + ACTIONS(5705), 1, + anon_sym_SQUOTE, + ACTIONS(5707), 1, + anon_sym_COMMA_AT, + ACTIONS(5709), 1, + anon_sym_POUND_PLUS, + ACTIONS(5711), 1, + anon_sym_POUND_DASH, + ACTIONS(5713), 1, + anon_sym_POUNDC, + ACTIONS(5715), 1, + anon_sym_POUNDc, + STATE(915), 1, + sym__bare_set_lit, + STATE(2202), 1, + sym_old_meta_lit, + STATE(2206), 1, + sym_meta_lit, + STATE(2228), 1, + aux_sym_list_lit_repeat1, + STATE(2237), 1, + sym__metadata_lit, + STATE(914), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [154370] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4262), 3, + anon_sym_POUND, + anon_sym_COLON, + anon_sym_POUND_QMARK, + ACTIONS(4260), 18, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_cl, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [168505] = 3, + 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, + [154399] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3311), 1, - anon_sym_being, - ACTIONS(3309), 19, + ACTIONS(4338), 3, + anon_sym_POUND, + anon_sym_COLON, + anon_sym_POUND_QMARK, + ACTIONS(4336), 18, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_cl, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [168533] = 3, + 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, + [154428] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3131), 1, - anon_sym_being, - ACTIONS(3129), 19, + ACTIONS(4386), 3, + anon_sym_POUND, + anon_sym_COLON, + anon_sym_POUND_QMARK, + ACTIONS(4384), 18, sym__ws, sym_comment, anon_sym_POUND_, - anon_sym_cl, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [168561] = 3, + 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, + [154457] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3307), 1, + ACTIONS(4136), 1, anon_sym_being, - ACTIONS(3305), 19, + ACTIONS(5717), 1, + aux_sym_num_lit_token2, + ACTIONS(4134), 19, sym__ws, sym_comment, anon_sym_POUND_, @@ -148483,136 +146567,86 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [168589] = 15, + [154488] = 15, ACTIONS(47), 1, sym_block_comment, - ACTIONS(631), 1, + ACTIONS(288), 1, anon_sym_LPAREN, - ACTIONS(791), 1, + ACTIONS(871), 1, anon_sym_LBRACE, - ACTIONS(3622), 1, + ACTIONS(4703), 1, anon_sym_CARET, - ACTIONS(3624), 1, + ACTIONS(4705), 1, anon_sym_POUND_CARET, - ACTIONS(4660), 1, + ACTIONS(5719), 1, aux_sym__form_token1, - STATE(1366), 1, + STATE(1817), 1, sym_list_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, - sym_meta_lit, - STATE(2347), 1, + STATE(2344), 1, sym_array_dimension, - STATE(2420), 1, + STATE(2352), 1, + sym_meta_lit, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2422), 1, aux_sym_list_lit_repeat1, - ACTIONS(783), 3, + ACTIONS(863), 3, aux_sym_char_lit_token1, aux_sym_char_lit_token2, aux_sym_char_lit_token4, - ACTIONS(785), 3, + ACTIONS(865), 3, aux_sym_char_lit_token3, aux_sym_char_lit_token5, aux_sym_char_lit_token6, - STATE(1330), 3, + STATE(1792), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [168641] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(3399), 1, - anon_sym_being, - ACTIONS(3397), 19, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_cl, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [168669] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(3395), 1, - anon_sym_being, - ACTIONS(3393), 19, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_cl, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [168697] = 15, + [154540] = 15, ACTIONS(47), 1, sym_block_comment, - ACTIONS(583), 1, + ACTIONS(819), 1, anon_sym_LPAREN, - ACTIONS(585), 1, + ACTIONS(821), 1, anon_sym_LBRACE, - ACTIONS(3622), 1, + ACTIONS(4703), 1, anon_sym_CARET, - ACTIONS(3624), 1, + ACTIONS(4705), 1, anon_sym_POUND_CARET, - ACTIONS(4662), 1, + ACTIONS(5721), 1, aux_sym__form_token1, - STATE(1229), 1, + STATE(1728), 1, sym_list_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, + STATE(2352), 1, sym_meta_lit, - STATE(2363), 1, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2369), 1, sym_array_dimension, - STATE(2383), 1, + STATE(2398), 1, aux_sym_list_lit_repeat1, - ACTIONS(577), 3, + ACTIONS(813), 3, aux_sym_char_lit_token1, aux_sym_char_lit_token2, aux_sym_char_lit_token4, - ACTIONS(579), 3, + ACTIONS(815), 3, aux_sym_char_lit_token3, aux_sym_char_lit_token5, aux_sym_char_lit_token6, - STATE(1183), 3, + STATE(1782), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [168749] = 3, + [154592] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3067), 1, + ACTIONS(4166), 1, anon_sym_being, - ACTIONS(3065), 19, + ACTIONS(4164), 19, sym__ws, sym_comment, anon_sym_POUND_, @@ -148632,12 +146666,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [168777] = 3, + [154620] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3387), 1, + ACTIONS(4402), 1, anon_sym_being, - ACTIONS(3385), 19, + ACTIONS(4400), 19, sym__ws, sym_comment, anon_sym_POUND_, @@ -148657,12 +146691,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [168805] = 3, + [154648] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3383), 1, + ACTIONS(4254), 1, anon_sym_being, - ACTIONS(3381), 19, + ACTIONS(4252), 19, sym__ws, sym_comment, anon_sym_POUND_, @@ -148682,12 +146716,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [168833] = 3, + [154676] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3379), 1, + ACTIONS(4258), 1, anon_sym_being, - ACTIONS(3377), 19, + ACTIONS(4256), 19, sym__ws, sym_comment, anon_sym_POUND_, @@ -148707,12 +146741,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [168861] = 3, + [154704] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3159), 1, + ACTIONS(4266), 1, anon_sym_being, - ACTIONS(3157), 19, + ACTIONS(4264), 19, sym__ws, sym_comment, anon_sym_POUND_, @@ -148732,12 +146766,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [168889] = 3, + [154732] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3375), 1, + ACTIONS(4482), 1, anon_sym_being, - ACTIONS(3373), 19, + ACTIONS(4480), 19, sym__ws, sym_comment, anon_sym_POUND_, @@ -148757,12 +146791,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [168917] = 3, + [154760] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3371), 1, + ACTIONS(4338), 1, anon_sym_being, - ACTIONS(3369), 19, + ACTIONS(4336), 19, sym__ws, sym_comment, anon_sym_POUND_, @@ -148782,12 +146816,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [168945] = 3, + [154788] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3371), 1, + ACTIONS(4142), 1, anon_sym_being, - ACTIONS(3369), 19, + ACTIONS(4140), 19, sym__ws, sym_comment, anon_sym_POUND_, @@ -148807,12 +146841,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [168973] = 3, + [154816] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3367), 1, + ACTIONS(4162), 1, anon_sym_being, - ACTIONS(3365), 19, + ACTIONS(4160), 19, sym__ws, sym_comment, anon_sym_POUND_, @@ -148832,12 +146866,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [169001] = 3, + [154844] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3363), 1, + ACTIONS(4190), 1, anon_sym_being, - ACTIONS(3361), 19, + ACTIONS(4188), 19, sym__ws, sym_comment, anon_sym_POUND_, @@ -148857,112 +146891,197 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [169029] = 3, + [154872] = 15, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3371), 1, - anon_sym_being, - ACTIONS(3369), 19, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_cl, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [169057] = 3, + ACTIONS(576), 1, + anon_sym_LPAREN, + ACTIONS(578), 1, + anon_sym_LBRACE, + ACTIONS(4703), 1, + anon_sym_CARET, + ACTIONS(4705), 1, + anon_sym_POUND_CARET, + ACTIONS(5723), 1, + aux_sym__form_token1, + STATE(1050), 1, + sym_list_lit, + STATE(2237), 1, + sym__metadata_lit, + STATE(2352), 1, + sym_meta_lit, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2378), 1, + sym_array_dimension, + STATE(2388), 1, + aux_sym_list_lit_repeat1, + ACTIONS(572), 3, + aux_sym_char_lit_token1, + aux_sym_char_lit_token2, + aux_sym_char_lit_token4, + ACTIONS(574), 3, + aux_sym_char_lit_token3, + aux_sym_char_lit_token5, + aux_sym_char_lit_token6, + STATE(1078), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [154924] = 15, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3371), 1, - anon_sym_being, - ACTIONS(3369), 19, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_cl, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [169085] = 3, + ACTIONS(606), 1, + anon_sym_LBRACE, + ACTIONS(869), 1, + anon_sym_LPAREN, + ACTIONS(4703), 1, + anon_sym_CARET, + ACTIONS(4705), 1, + anon_sym_POUND_CARET, + ACTIONS(5725), 1, + aux_sym__form_token1, + STATE(2237), 1, + sym__metadata_lit, + STATE(2305), 1, + sym_list_lit, + STATE(2352), 1, + sym_meta_lit, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2365), 1, + sym_array_dimension, + STATE(2390), 1, + aux_sym_list_lit_repeat1, + ACTIONS(598), 3, + aux_sym_char_lit_token1, + aux_sym_char_lit_token2, + aux_sym_char_lit_token4, + ACTIONS(600), 3, + aux_sym_char_lit_token3, + aux_sym_char_lit_token5, + aux_sym_char_lit_token6, + STATE(2315), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [154976] = 15, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3311), 1, - anon_sym_being, - ACTIONS(3309), 19, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_cl, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [169113] = 3, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(538), 1, + anon_sym_LBRACE, + ACTIONS(4703), 1, + anon_sym_CARET, + ACTIONS(4705), 1, + anon_sym_POUND_CARET, + ACTIONS(5727), 1, + aux_sym__form_token1, + STATE(1921), 1, + sym_list_lit, + STATE(2237), 1, + sym__metadata_lit, + STATE(2352), 1, + sym_meta_lit, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2374), 1, + sym_array_dimension, + STATE(2419), 1, + aux_sym_list_lit_repeat1, + ACTIONS(530), 3, + aux_sym_char_lit_token1, + aux_sym_char_lit_token2, + aux_sym_char_lit_token4, + ACTIONS(532), 3, + aux_sym_char_lit_token3, + aux_sym_char_lit_token5, + aux_sym_char_lit_token6, + STATE(1901), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [155028] = 15, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3367), 1, - anon_sym_being, - ACTIONS(3365), 19, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_cl, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [169141] = 3, + ACTIONS(486), 1, + anon_sym_LPAREN, + ACTIONS(488), 1, + anon_sym_LBRACE, + ACTIONS(4703), 1, + anon_sym_CARET, + ACTIONS(4705), 1, + anon_sym_POUND_CARET, + ACTIONS(5729), 1, + aux_sym__form_token1, + STATE(1357), 1, + sym_list_lit, + STATE(2237), 1, + sym__metadata_lit, + STATE(2352), 1, + sym_meta_lit, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2375), 1, + sym_array_dimension, + STATE(2402), 1, + aux_sym_list_lit_repeat1, + ACTIONS(480), 3, + aux_sym_char_lit_token1, + aux_sym_char_lit_token2, + aux_sym_char_lit_token4, + ACTIONS(482), 3, + aux_sym_char_lit_token3, + aux_sym_char_lit_token5, + aux_sym_char_lit_token6, + STATE(1356), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [155080] = 15, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(775), 1, + anon_sym_LPAREN, + ACTIONS(777), 1, + anon_sym_LBRACE, + ACTIONS(4703), 1, + anon_sym_CARET, + ACTIONS(4705), 1, + anon_sym_POUND_CARET, + ACTIONS(5731), 1, + aux_sym__form_token1, + STATE(922), 1, + sym_list_lit, + STATE(2237), 1, + sym__metadata_lit, + STATE(2337), 1, + sym_array_dimension, + STATE(2352), 1, + sym_meta_lit, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2407), 1, + aux_sym_list_lit_repeat1, + ACTIONS(771), 3, + aux_sym_char_lit_token1, + aux_sym_char_lit_token2, + aux_sym_char_lit_token4, + ACTIONS(773), 3, + aux_sym_char_lit_token3, + aux_sym_char_lit_token5, + aux_sym_char_lit_token6, + STATE(863), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [155132] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3315), 1, + ACTIONS(4250), 1, anon_sym_being, - ACTIONS(3313), 19, + ACTIONS(4248), 19, sym__ws, sym_comment, anon_sym_POUND_, @@ -148982,12 +147101,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [169169] = 3, + [155160] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3363), 1, + ACTIONS(4270), 1, anon_sym_being, - ACTIONS(3361), 19, + ACTIONS(4268), 19, sym__ws, sym_comment, anon_sym_POUND_, @@ -149007,12 +147126,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [169197] = 3, + [155188] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3319), 1, + ACTIONS(4290), 1, anon_sym_being, - ACTIONS(3317), 19, + ACTIONS(4288), 19, sym__ws, sym_comment, anon_sym_POUND_, @@ -149032,12 +147151,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [169225] = 3, + [155216] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3323), 1, + ACTIONS(4422), 1, anon_sym_being, - ACTIONS(3321), 19, + ACTIONS(4420), 19, sym__ws, sym_comment, anon_sym_POUND_, @@ -149057,12 +147176,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [169253] = 3, + [155244] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3359), 1, + ACTIONS(4394), 1, anon_sym_being, - ACTIONS(3357), 19, + ACTIONS(4392), 19, sym__ws, sym_comment, anon_sym_POUND_, @@ -149082,12 +147201,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [169281] = 3, + [155272] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3355), 1, + ACTIONS(4390), 1, anon_sym_being, - ACTIONS(3353), 19, + ACTIONS(4388), 19, sym__ws, sym_comment, anon_sym_POUND_, @@ -149107,12 +147226,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [169309] = 3, + [155300] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3351), 1, + ACTIONS(4386), 1, anon_sym_being, - ACTIONS(3349), 19, + ACTIONS(4384), 19, sym__ws, sym_comment, anon_sym_POUND_, @@ -149132,12 +147251,49 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [169337] = 3, + [155328] = 15, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3347), 1, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(606), 1, + anon_sym_LBRACE, + ACTIONS(4703), 1, + anon_sym_CARET, + ACTIONS(4705), 1, + anon_sym_POUND_CARET, + ACTIONS(5733), 1, + aux_sym__form_token1, + STATE(2237), 1, + sym__metadata_lit, + STATE(2305), 1, + sym_list_lit, + STATE(2352), 1, + sym_meta_lit, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2377), 1, + sym_array_dimension, + STATE(2417), 1, + aux_sym_list_lit_repeat1, + ACTIONS(598), 3, + aux_sym_char_lit_token1, + aux_sym_char_lit_token2, + aux_sym_char_lit_token4, + ACTIONS(600), 3, + aux_sym_char_lit_token3, + aux_sym_char_lit_token5, + aux_sym_char_lit_token6, + STATE(2315), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [155380] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4282), 1, anon_sym_being, - ACTIONS(3345), 19, + ACTIONS(4280), 19, sym__ws, sym_comment, anon_sym_POUND_, @@ -149157,12 +147313,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [169365] = 3, + [155408] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3343), 1, + ACTIONS(4146), 1, anon_sym_being, - ACTIONS(3341), 19, + ACTIONS(4144), 19, sym__ws, sym_comment, anon_sym_POUND_, @@ -149182,49 +147338,49 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [169393] = 15, + [155436] = 15, ACTIONS(47), 1, sym_block_comment, - ACTIONS(693), 1, + ACTIONS(604), 1, anon_sym_LPAREN, - ACTIONS(695), 1, + ACTIONS(606), 1, anon_sym_LBRACE, - ACTIONS(3622), 1, + ACTIONS(4703), 1, anon_sym_CARET, - ACTIONS(3624), 1, + ACTIONS(4705), 1, anon_sym_POUND_CARET, - ACTIONS(4664), 1, + ACTIONS(5735), 1, aux_sym__form_token1, - STATE(1483), 1, - sym_list_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, - sym_meta_lit, - STATE(2378), 1, + STATE(2305), 1, + sym_list_lit, + STATE(2345), 1, sym_array_dimension, - STATE(2388), 1, + STATE(2352), 1, + sym_meta_lit, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2421), 1, aux_sym_list_lit_repeat1, - ACTIONS(687), 3, + ACTIONS(598), 3, aux_sym_char_lit_token1, aux_sym_char_lit_token2, aux_sym_char_lit_token4, - ACTIONS(689), 3, + ACTIONS(600), 3, aux_sym_char_lit_token3, aux_sym_char_lit_token5, aux_sym_char_lit_token6, - STATE(1524), 3, + STATE(2315), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [169445] = 3, + [155488] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3339), 1, + ACTIONS(4286), 1, anon_sym_being, - ACTIONS(3337), 19, + ACTIONS(4284), 19, sym__ws, sym_comment, anon_sym_POUND_, @@ -149244,37 +147400,49 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [169473] = 3, + [155516] = 15, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3339), 1, - anon_sym_being, - ACTIONS(3337), 19, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_cl, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [169501] = 3, + ACTIONS(869), 1, + anon_sym_LPAREN, + ACTIONS(871), 1, + anon_sym_LBRACE, + ACTIONS(4703), 1, + anon_sym_CARET, + ACTIONS(4705), 1, + anon_sym_POUND_CARET, + ACTIONS(5737), 1, + aux_sym__form_token1, + STATE(1817), 1, + sym_list_lit, + STATE(2237), 1, + sym__metadata_lit, + STATE(2340), 1, + sym_array_dimension, + STATE(2352), 1, + sym_meta_lit, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2414), 1, + aux_sym_list_lit_repeat1, + ACTIONS(863), 3, + aux_sym_char_lit_token1, + aux_sym_char_lit_token2, + aux_sym_char_lit_token4, + ACTIONS(865), 3, + aux_sym_char_lit_token3, + aux_sym_char_lit_token5, + aux_sym_char_lit_token6, + STATE(1792), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [155568] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3335), 1, + ACTIONS(4382), 1, anon_sym_being, - ACTIONS(3333), 19, + ACTIONS(4380), 19, sym__ws, sym_comment, anon_sym_POUND_, @@ -149294,12 +147462,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [169529] = 3, + [155596] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3335), 1, + ACTIONS(4326), 1, anon_sym_being, - ACTIONS(3333), 19, + ACTIONS(4324), 19, sym__ws, sym_comment, anon_sym_POUND_, @@ -149319,12 +147487,49 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [169557] = 3, + [155624] = 15, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(921), 1, + anon_sym_LPAREN, + ACTIONS(923), 1, + anon_sym_LBRACE, + ACTIONS(4703), 1, + anon_sym_CARET, + ACTIONS(4705), 1, + anon_sym_POUND_CARET, + ACTIONS(5739), 1, + aux_sym__form_token1, + STATE(1249), 1, + sym_list_lit, + STATE(2237), 1, + sym__metadata_lit, + STATE(2352), 1, + sym_meta_lit, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2359), 1, + sym_array_dimension, + STATE(2423), 1, + aux_sym_list_lit_repeat1, + ACTIONS(915), 3, + aux_sym_char_lit_token1, + aux_sym_char_lit_token2, + aux_sym_char_lit_token4, + ACTIONS(917), 3, + aux_sym_char_lit_token3, + aux_sym_char_lit_token5, + aux_sym_char_lit_token6, + STATE(1175), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [155676] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3331), 1, + ACTIONS(4322), 1, anon_sym_being, - ACTIONS(3329), 19, + ACTIONS(4320), 19, sym__ws, sym_comment, anon_sym_POUND_, @@ -149344,12 +147549,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [169585] = 3, + [155704] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3327), 1, + ACTIONS(4158), 1, anon_sym_being, - ACTIONS(3325), 19, + ACTIONS(4156), 19, sym__ws, sym_comment, anon_sym_POUND_, @@ -149369,12 +147574,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [169613] = 3, + [155732] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3155), 1, + ACTIONS(4290), 1, anon_sym_being, - ACTIONS(3153), 19, + ACTIONS(4288), 19, sym__ws, sym_comment, anon_sym_POUND_, @@ -149394,205 +147599,144 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [169641] = 14, + [155760] = 15, ACTIONS(29), 1, anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3622), 1, + ACTIONS(721), 1, + anon_sym_LBRACE, + ACTIONS(4703), 1, anon_sym_CARET, - ACTIONS(3624), 1, + ACTIONS(4705), 1, anon_sym_POUND_CARET, - ACTIONS(4374), 1, - anon_sym_COMMA, - ACTIONS(4668), 1, - anon_sym_POUND_, - STATE(2236), 1, + ACTIONS(5741), 1, + aux_sym__form_token1, + STATE(1538), 1, + sym_list_lit, + STATE(2237), 1, sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, + STATE(2339), 1, + sym_array_dimension, + STATE(2352), 1, sym_meta_lit, - STATE(2379), 1, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2418), 1, aux_sym_list_lit_repeat1, - ACTIONS(4666), 2, - sym__ws, - sym_comment, - STATE(1819), 2, - sym_list_lit, - sym_unquoting_lit, - STATE(1609), 3, + ACTIONS(717), 3, + aux_sym_char_lit_token1, + aux_sym_char_lit_token2, + aux_sym_char_lit_token4, + ACTIONS(719), 3, + aux_sym_char_lit_token3, + aux_sym_char_lit_token5, + aux_sym_char_lit_token6, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2397), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [169690] = 15, + [155812] = 15, ACTIONS(29), 1, anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3622), 1, + ACTIONS(4703), 1, anon_sym_CARET, - ACTIONS(3624), 1, + ACTIONS(4705), 1, anon_sym_POUND_CARET, - ACTIONS(4374), 1, + ACTIONS(5437), 1, anon_sym_COMMA, - ACTIONS(4668), 1, + ACTIONS(5745), 1, anon_sym_POUND_, - STATE(1824), 1, - sym_list_lit, - STATE(1825), 1, + STATE(1790), 1, sym_unquoting_lit, - STATE(2236), 1, + STATE(1794), 1, + sym_list_lit, + STATE(2237), 1, sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, + STATE(2352), 1, sym_meta_lit, - STATE(2379), 1, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2418), 1, aux_sym_list_lit_repeat1, - ACTIONS(4670), 2, + ACTIONS(5743), 2, sym__ws, sym_comment, - STATE(1609), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2211), 3, + STATE(2415), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [169741] = 6, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4674), 1, - anon_sym_POUND_, - ACTIONS(4672), 2, - sym__ws, - sym_comment, - ACTIONS(4676), 2, - anon_sym_POUND, - anon_sym_POUND_QMARK, - STATE(2213), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(4678), 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, - [169774] = 15, + [155863] = 15, ACTIONS(29), 1, anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3622), 1, + ACTIONS(4703), 1, anon_sym_CARET, - ACTIONS(3624), 1, + ACTIONS(4705), 1, anon_sym_POUND_CARET, - ACTIONS(4374), 1, + ACTIONS(5437), 1, anon_sym_COMMA, - ACTIONS(4668), 1, + ACTIONS(5745), 1, anon_sym_POUND_, - STATE(1663), 1, + STATE(1638), 1, sym_list_lit, - STATE(1664), 1, + STATE(1639), 1, sym_unquoting_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, + STATE(2352), 1, sym_meta_lit, - STATE(2379), 1, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2418), 1, aux_sym_list_lit_repeat1, - ACTIONS(4666), 2, + ACTIONS(5747), 2, sym__ws, sym_comment, - STATE(1609), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2397), 3, + STATE(2209), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [169825] = 15, + [155914] = 15, ACTIONS(29), 1, anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3622), 1, + ACTIONS(4703), 1, anon_sym_CARET, - ACTIONS(3624), 1, + ACTIONS(4705), 1, anon_sym_POUND_CARET, - ACTIONS(4374), 1, + ACTIONS(5437), 1, anon_sym_COMMA, - ACTIONS(4668), 1, + ACTIONS(5745), 1, anon_sym_POUND_, - STATE(1665), 1, + STATE(1736), 1, sym_list_lit, - STATE(1666), 1, + STATE(1813), 1, sym_unquoting_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, + STATE(2352), 1, sym_meta_lit, - STATE(2379), 1, - aux_sym_list_lit_repeat1, - ACTIONS(4666), 2, - sym__ws, - sym_comment, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(2397), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [169876] = 15, - ACTIONS(29), 1, - anon_sym_LPAREN, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(3622), 1, - anon_sym_CARET, - ACTIONS(3624), 1, - anon_sym_POUND_CARET, - ACTIONS(4374), 1, - anon_sym_COMMA, - ACTIONS(4668), 1, - anon_sym_POUND_, - STATE(1754), 1, - sym_unquoting_lit, - STATE(1755), 1, - sym_list_lit, - STATE(2236), 1, - sym__metadata_lit, - STATE(2342), 1, + STATE(2353), 1, sym_old_meta_lit, - STATE(2343), 1, - sym_meta_lit, - STATE(2379), 1, + STATE(2418), 1, aux_sym_list_lit_repeat1, - ACTIONS(4680), 2, + ACTIONS(5749), 2, sym__ws, sym_comment, - STATE(1609), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, @@ -149600,201 +147744,147 @@ static uint16_t ts_small_parse_table[] = { sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [169927] = 15, + [155965] = 15, ACTIONS(29), 1, anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3622), 1, + ACTIONS(4703), 1, anon_sym_CARET, - ACTIONS(3624), 1, + ACTIONS(4705), 1, anon_sym_POUND_CARET, - ACTIONS(4374), 1, + ACTIONS(5437), 1, anon_sym_COMMA, - ACTIONS(4668), 1, + ACTIONS(5745), 1, anon_sym_POUND_, - STATE(1758), 1, - sym_unquoting_lit, - STATE(1759), 1, + STATE(1634), 1, sym_list_lit, - STATE(2236), 1, + STATE(1635), 1, + sym_unquoting_lit, + STATE(2237), 1, sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, + STATE(2352), 1, sym_meta_lit, - STATE(2379), 1, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2418), 1, aux_sym_list_lit_repeat1, - ACTIONS(4666), 2, + ACTIONS(5743), 2, sym__ws, sym_comment, - STATE(1609), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2397), 3, + STATE(2415), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [169978] = 15, - ACTIONS(29), 1, - anon_sym_LPAREN, + [156016] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3622), 1, - anon_sym_CARET, - ACTIONS(3624), 1, - anon_sym_POUND_CARET, - ACTIONS(4374), 1, - anon_sym_COMMA, - ACTIONS(4668), 1, + ACTIONS(5753), 1, anon_sym_POUND_, - STATE(1683), 1, - sym_unquoting_lit, - STATE(1684), 1, - sym_list_lit, - STATE(2236), 1, - sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, - sym_meta_lit, - STATE(2379), 1, - aux_sym_list_lit_repeat1, - ACTIONS(4682), 2, + ACTIONS(5751), 2, sym__ws, sym_comment, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(2203), 3, + ACTIONS(5755), 2, + anon_sym_POUND, + anon_sym_POUND_QMARK, + STATE(2205), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [170029] = 15, - ACTIONS(29), 1, - anon_sym_LPAREN, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(3622), 1, + ACTIONS(5757), 11, anon_sym_CARET, - ACTIONS(3624), 1, anon_sym_POUND_CARET, - ACTIONS(4374), 1, - anon_sym_COMMA, - ACTIONS(4668), 1, - anon_sym_POUND_, - STATE(1686), 1, - sym_unquoting_lit, - STATE(1687), 1, - sym_list_lit, - STATE(2236), 1, - sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, - sym_meta_lit, - STATE(2379), 1, - aux_sym_list_lit_repeat1, - ACTIONS(4684), 2, - sym__ws, - sym_comment, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(2202), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [170080] = 14, + 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, + [156049] = 14, ACTIONS(29), 1, anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3622), 1, + ACTIONS(4703), 1, anon_sym_CARET, - ACTIONS(3624), 1, + ACTIONS(4705), 1, anon_sym_POUND_CARET, - ACTIONS(4374), 1, + ACTIONS(5437), 1, anon_sym_COMMA, - ACTIONS(4668), 1, + ACTIONS(5745), 1, anon_sym_POUND_, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, + STATE(2352), 1, sym_meta_lit, - STATE(2379), 1, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2418), 1, aux_sym_list_lit_repeat1, - ACTIONS(4686), 2, + ACTIONS(5759), 2, sym__ws, sym_comment, - STATE(1717), 2, + STATE(1716), 2, sym_list_lit, sym_unquoting_lit, - STATE(1609), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2199), 3, + STATE(2221), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [170129] = 15, - ACTIONS(29), 1, - anon_sym_LPAREN, + [156098] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3622), 1, - anon_sym_CARET, - ACTIONS(3624), 1, - anon_sym_POUND_CARET, - ACTIONS(4374), 1, - anon_sym_COMMA, - ACTIONS(4668), 1, + ACTIONS(5753), 1, anon_sym_POUND_, - STATE(1690), 1, - sym_unquoting_lit, - STATE(1691), 1, - sym_list_lit, - STATE(2236), 1, - sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, - sym_meta_lit, - STATE(2379), 1, - aux_sym_list_lit_repeat1, - ACTIONS(4666), 2, + ACTIONS(5761), 2, sym__ws, sym_comment, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(2397), 3, + ACTIONS(5763), 2, + anon_sym_POUND, + anon_sym_POUND_QMARK, + STATE(2208), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [170180] = 6, + ACTIONS(5765), 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, + [156131] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4674), 1, + ACTIONS(5753), 1, anon_sym_POUND_, - ACTIONS(4672), 2, + ACTIONS(5761), 2, sym__ws, sym_comment, - ACTIONS(4688), 2, + ACTIONS(5767), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - STATE(2213), 3, + STATE(2208), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(4690), 11, + ACTIONS(5769), 11, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -149806,94 +147896,85 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [170213] = 15, - ACTIONS(29), 1, - anon_sym_LPAREN, + [156164] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3622), 1, - anon_sym_CARET, - ACTIONS(3624), 1, - anon_sym_POUND_CARET, - ACTIONS(4374), 1, - anon_sym_COMMA, - ACTIONS(4668), 1, + ACTIONS(5753), 1, anon_sym_POUND_, - STATE(1756), 1, - sym_unquoting_lit, - STATE(1757), 1, - sym_list_lit, - STATE(2236), 1, - sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, - sym_meta_lit, - STATE(2379), 1, - aux_sym_list_lit_repeat1, - ACTIONS(4666), 2, + ACTIONS(5771), 2, sym__ws, sym_comment, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - STATE(2397), 3, + ACTIONS(5773), 2, + anon_sym_POUND, + anon_sym_POUND_QMARK, + STATE(2204), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [170264] = 15, + ACTIONS(5775), 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, + [156197] = 15, ACTIONS(29), 1, anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3622), 1, + ACTIONS(4703), 1, anon_sym_CARET, - ACTIONS(3624), 1, + ACTIONS(4705), 1, anon_sym_POUND_CARET, - ACTIONS(4374), 1, + ACTIONS(5437), 1, anon_sym_COMMA, - ACTIONS(4668), 1, + ACTIONS(5745), 1, anon_sym_POUND_, - STATE(1688), 1, - sym_unquoting_lit, - STATE(1689), 1, + STATE(1580), 1, sym_list_lit, - STATE(2236), 1, + STATE(1583), 1, + sym_unquoting_lit, + STATE(2237), 1, sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, + STATE(2352), 1, sym_meta_lit, - STATE(2379), 1, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2418), 1, aux_sym_list_lit_repeat1, - ACTIONS(4666), 2, + ACTIONS(5743), 2, sym__ws, sym_comment, - STATE(1609), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2397), 3, + STATE(2415), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [170315] = 6, + [156248] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4695), 1, + ACTIONS(5780), 1, anon_sym_POUND_, - ACTIONS(3027), 2, + ACTIONS(4120), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(4692), 2, + ACTIONS(5777), 2, sym__ws, sym_comment, - STATE(2213), 3, + STATE(2208), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(3029), 11, + ACTIONS(4122), 11, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -149905,297 +147986,508 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [170348] = 15, + [156281] = 15, ACTIONS(29), 1, anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3622), 1, + ACTIONS(4703), 1, anon_sym_CARET, - ACTIONS(3624), 1, + ACTIONS(4705), 1, anon_sym_POUND_CARET, - ACTIONS(4374), 1, + ACTIONS(5437), 1, anon_sym_COMMA, - ACTIONS(4668), 1, + ACTIONS(5745), 1, anon_sym_POUND_, - STATE(1751), 1, + STATE(1821), 1, sym_unquoting_lit, - STATE(1752), 1, + STATE(1822), 1, sym_list_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2342), 1, + STATE(2352), 1, + sym_meta_lit, + STATE(2353), 1, sym_old_meta_lit, - STATE(2343), 1, + STATE(2418), 1, + aux_sym_list_lit_repeat1, + ACTIONS(5743), 2, + sym__ws, + sym_comment, + STATE(1562), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2415), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [156332] = 15, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4703), 1, + anon_sym_CARET, + ACTIONS(4705), 1, + anon_sym_POUND_CARET, + ACTIONS(5437), 1, + anon_sym_COMMA, + ACTIONS(5745), 1, + anon_sym_POUND_, + STATE(1819), 1, + sym_unquoting_lit, + STATE(1820), 1, + sym_list_lit, + STATE(2237), 1, + sym__metadata_lit, + STATE(2352), 1, sym_meta_lit, - STATE(2379), 1, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2418), 1, aux_sym_list_lit_repeat1, - ACTIONS(4698), 2, + ACTIONS(5743), 2, sym__ws, sym_comment, - STATE(1609), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2219), 3, + STATE(2415), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [156383] = 15, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4703), 1, + anon_sym_CARET, + ACTIONS(4705), 1, + anon_sym_POUND_CARET, + ACTIONS(5437), 1, + anon_sym_COMMA, + ACTIONS(5745), 1, + anon_sym_POUND_, + STATE(1568), 1, + sym_list_lit, + STATE(1751), 1, + sym_unquoting_lit, + STATE(2237), 1, + sym__metadata_lit, + STATE(2352), 1, + sym_meta_lit, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2418), 1, + aux_sym_list_lit_repeat1, + ACTIONS(5783), 2, + sym__ws, + sym_comment, + STATE(1562), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2201), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [170399] = 11, + [156434] = 15, + ACTIONS(29), 1, + anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4700), 1, + ACTIONS(4703), 1, + anon_sym_CARET, + ACTIONS(4705), 1, + anon_sym_POUND_CARET, + ACTIONS(5437), 1, + anon_sym_COMMA, + ACTIONS(5745), 1, + anon_sym_POUND_, + STATE(1640), 1, + sym_list_lit, + STATE(1695), 1, + sym_unquoting_lit, + STATE(2237), 1, + sym__metadata_lit, + STATE(2352), 1, + sym_meta_lit, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2418), 1, + aux_sym_list_lit_repeat1, + ACTIONS(5785), 2, + sym__ws, + sym_comment, + STATE(1562), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2210), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [156485] = 11, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(5787), 1, aux_sym_accumulation_verb_token1, - ACTIONS(4704), 1, + ACTIONS(5791), 1, anon_sym_and, - ACTIONS(4706), 1, + ACTIONS(5793), 1, anon_sym_with, - ACTIONS(4708), 1, + ACTIONS(5795), 1, anon_sym_do, - ACTIONS(4712), 1, + ACTIONS(5799), 1, anon_sym_repeat, - ACTIONS(4716), 1, + ACTIONS(5803), 1, anon_sym_else, - ACTIONS(4702), 2, + ACTIONS(5789), 2, anon_sym_for, anon_sym_as, - ACTIONS(4710), 2, + ACTIONS(5797), 2, anon_sym_while, anon_sym_until, - ACTIONS(4718), 3, + ACTIONS(5805), 3, anon_sym_finally, anon_sym_return, anon_sym_initially, - ACTIONS(4714), 6, + ACTIONS(5801), 6, anon_sym_when, anon_sym_if, anon_sym_unless, anon_sym_always, anon_sym_thereis, anon_sym_never, - [170442] = 15, + [156528] = 15, ACTIONS(29), 1, anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3622), 1, + ACTIONS(4703), 1, anon_sym_CARET, - ACTIONS(3624), 1, + ACTIONS(4705), 1, anon_sym_POUND_CARET, - ACTIONS(4374), 1, + ACTIONS(5437), 1, anon_sym_COMMA, - ACTIONS(4668), 1, + ACTIONS(5745), 1, anon_sym_POUND_, - STATE(1745), 1, + STATE(1753), 1, sym_unquoting_lit, - STATE(1746), 1, + STATE(1768), 1, sym_list_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, + STATE(2352), 1, sym_meta_lit, - STATE(2379), 1, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2418), 1, aux_sym_list_lit_repeat1, - ACTIONS(4720), 2, + ACTIONS(5807), 2, sym__ws, sym_comment, - STATE(1609), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2212), 3, + STATE(2217), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [170493] = 15, + [156579] = 15, ACTIONS(29), 1, anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3622), 1, + ACTIONS(4703), 1, anon_sym_CARET, - ACTIONS(3624), 1, + ACTIONS(4705), 1, anon_sym_POUND_CARET, - ACTIONS(4374), 1, + ACTIONS(5437), 1, anon_sym_COMMA, - ACTIONS(4668), 1, + ACTIONS(5745), 1, anon_sym_POUND_, - STATE(1748), 1, - sym_unquoting_lit, - STATE(1749), 1, + STATE(1771), 1, sym_list_lit, - STATE(2236), 1, + STATE(1772), 1, + sym_unquoting_lit, + STATE(2237), 1, sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, + STATE(2352), 1, sym_meta_lit, - STATE(2379), 1, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2418), 1, aux_sym_list_lit_repeat1, - ACTIONS(4722), 2, + ACTIONS(5809), 2, sym__ws, sym_comment, - STATE(1609), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2209), 3, + STATE(2198), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [170544] = 15, + [156630] = 15, ACTIONS(29), 1, anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3622), 1, + ACTIONS(4703), 1, anon_sym_CARET, - ACTIONS(3624), 1, + ACTIONS(4705), 1, anon_sym_POUND_CARET, - ACTIONS(4374), 1, + ACTIONS(5437), 1, anon_sym_COMMA, - ACTIONS(4668), 1, + ACTIONS(5745), 1, anon_sym_POUND_, - STATE(1694), 1, - sym_unquoting_lit, - STATE(1695), 1, + STATE(1773), 1, sym_list_lit, - STATE(2236), 1, + STATE(1774), 1, + sym_unquoting_lit, + STATE(2237), 1, sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, + STATE(2352), 1, sym_meta_lit, - STATE(2379), 1, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2418), 1, aux_sym_list_lit_repeat1, - ACTIONS(4666), 2, + ACTIONS(5811), 2, sym__ws, sym_comment, - STATE(1609), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2397), 3, + STATE(2219), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [170595] = 15, + [156681] = 15, ACTIONS(29), 1, anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3622), 1, + ACTIONS(4703), 1, anon_sym_CARET, - ACTIONS(3624), 1, + ACTIONS(4705), 1, anon_sym_POUND_CARET, - ACTIONS(4374), 1, + ACTIONS(5437), 1, anon_sym_COMMA, - ACTIONS(4668), 1, + ACTIONS(5745), 1, anon_sym_POUND_, - STATE(1692), 1, - sym_unquoting_lit, - STATE(1693), 1, + STATE(1632), 1, sym_list_lit, - STATE(2236), 1, + STATE(1633), 1, + sym_unquoting_lit, + STATE(2237), 1, sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, + STATE(2352), 1, sym_meta_lit, - STATE(2379), 1, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2418), 1, aux_sym_list_lit_repeat1, - ACTIONS(4666), 2, + ACTIONS(5743), 2, sym__ws, sym_comment, - STATE(1609), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2397), 3, + STATE(2415), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [170646] = 15, + [156732] = 15, ACTIONS(29), 1, anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3622), 1, + ACTIONS(4703), 1, anon_sym_CARET, - ACTIONS(3624), 1, + ACTIONS(4705), 1, anon_sym_POUND_CARET, - ACTIONS(4374), 1, + ACTIONS(5437), 1, anon_sym_COMMA, - ACTIONS(4668), 1, + ACTIONS(5745), 1, anon_sym_POUND_, - STATE(1820), 1, + STATE(1636), 1, sym_list_lit, - STATE(1823), 1, + STATE(1637), 1, sym_unquoting_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, + STATE(2352), 1, sym_meta_lit, - STATE(2379), 1, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2418), 1, aux_sym_list_lit_repeat1, - ACTIONS(4724), 2, + ACTIONS(5743), 2, sym__ws, sym_comment, - STATE(1609), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - STATE(2205), 3, + STATE(2415), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [170697] = 6, + [156783] = 15, + ACTIONS(29), 1, + anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4674), 1, + ACTIONS(4703), 1, + anon_sym_CARET, + ACTIONS(4705), 1, + anon_sym_POUND_CARET, + ACTIONS(5437), 1, + anon_sym_COMMA, + ACTIONS(5745), 1, anon_sym_POUND_, - ACTIONS(4726), 2, + STATE(1785), 1, + sym_unquoting_lit, + STATE(1787), 1, + sym_list_lit, + STATE(2237), 1, + sym__metadata_lit, + STATE(2352), 1, + sym_meta_lit, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2418), 1, + aux_sym_list_lit_repeat1, + ACTIONS(5743), 2, sym__ws, sym_comment, - ACTIONS(4728), 2, - anon_sym_POUND, - anon_sym_POUND_QMARK, - STATE(2201), 3, + STATE(1562), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2415), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(4730), 11, + [156834] = 15, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4703), 1, anon_sym_CARET, + ACTIONS(4705), 1, anon_sym_POUND_CARET, + ACTIONS(5437), 1, + anon_sym_COMMA, + ACTIONS(5745), 1, + anon_sym_POUND_, + STATE(1770), 1, + sym_unquoting_lit, + STATE(1780), 1, + sym_list_lit, + STATE(2237), 1, + sym__metadata_lit, + STATE(2352), 1, + sym_meta_lit, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2418), 1, + aux_sym_list_lit_repeat1, + ACTIONS(5813), 2, + sym__ws, + sym_comment, + STATE(1562), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2207), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [156885] = 14, + ACTIONS(29), 1, 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, - [170730] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4674), 1, + ACTIONS(4703), 1, + anon_sym_CARET, + ACTIONS(4705), 1, + anon_sym_POUND_CARET, + ACTIONS(5437), 1, + anon_sym_COMMA, + ACTIONS(5745), 1, anon_sym_POUND_, - ACTIONS(4732), 2, + STATE(2237), 1, + sym__metadata_lit, + STATE(2352), 1, + sym_meta_lit, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2418), 1, + aux_sym_list_lit_repeat1, + ACTIONS(5743), 2, sym__ws, sym_comment, - ACTIONS(4734), 2, - anon_sym_POUND, - anon_sym_POUND_QMARK, - STATE(2210), 3, + STATE(1742), 2, + sym_list_lit, + sym_unquoting_lit, + STATE(1562), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + STATE(2415), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(4736), 11, + [156934] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(286), 1, + aux_sym_sym_lit_token1, + ACTIONS(5817), 1, + aux_sym_for_clause_word_token1, + STATE(1798), 1, + sym_sym_lit, + ACTIONS(5815), 15, + 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_downto, + anon_sym_downfrom, + anon_sym_on, + anon_sym_by, + anon_sym_then, + anon_sym_EQ, + [156964] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(5819), 1, + anon_sym_COLON, + ACTIONS(5821), 1, + anon_sym_COLON_COLON, + ACTIONS(4342), 2, + anon_sym_POUND, + anon_sym_POUND_QMARK, + ACTIONS(4340), 14, + sym__ws, + sym_comment, + anon_sym_POUND_, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -150207,17 +148499,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [170763] = 5, + [156994] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4738), 1, + ACTIONS(5819), 1, anon_sym_COLON, - ACTIONS(4740), 1, + ACTIONS(5821), 1, anon_sym_COLON_COLON, - ACTIONS(3283), 2, + ACTIONS(4306), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(3281), 14, + ACTIONS(4304), 14, sym__ws, sym_comment, anon_sym_POUND_, @@ -150232,23 +148524,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [170793] = 5, + [157024] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4738), 1, - anon_sym_COLON, - ACTIONS(4740), 1, - anon_sym_COLON_COLON, - ACTIONS(3075), 2, + ACTIONS(5825), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(3073), 14, + ACTIONS(5823), 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, @@ -150257,38 +148546,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [170823] = 5, + [157049] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(275), 1, - aux_sym_sym_lit_token1, - ACTIONS(4744), 1, - aux_sym_for_clause_word_token1, - STATE(2093), 1, - sym_sym_lit, - ACTIONS(4742), 15, - 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_downto, - anon_sym_downfrom, - anon_sym_on, - anon_sym_by, - anon_sym_then, - anon_sym_EQ, - [170853] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4748), 2, + ACTIONS(5829), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(4746), 15, + ACTIONS(5827), 15, sym__ws, sym_comment, anon_sym_POUND_, @@ -150304,13 +148568,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [170878] = 3, + [157074] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4752), 2, + ACTIONS(5833), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(4750), 15, + ACTIONS(5831), 15, sym__ws, sym_comment, anon_sym_POUND_, @@ -150326,20 +148590,26 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [170903] = 3, + [157099] = 9, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4756), 2, - anon_sym_POUND, - anon_sym_POUND_QMARK, - ACTIONS(4754), 15, - sym__ws, - sym_comment, - anon_sym_POUND_, + ACTIONS(5837), 1, anon_sym_CARET, + ACTIONS(5840), 1, anon_sym_POUND_CARET, + STATE(2202), 1, + sym_old_meta_lit, + STATE(2206), 1, + sym_meta_lit, + STATE(2228), 1, + aux_sym_list_lit_repeat1, + STATE(2237), 1, + sym__metadata_lit, + ACTIONS(5835), 2, + anon_sym_POUND, + anon_sym_POUND_QMARK, + ACTIONS(5843), 9, anon_sym_LPAREN, - anon_sym_LBRACE, anon_sym_POUND_QMARK_AT, anon_sym_POUND_SQUOTE, anon_sym_SQUOTE, @@ -150348,13 +148618,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [170928] = 3, + [157136] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4760), 2, + ACTIONS(5847), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(4758), 15, + ACTIONS(5845), 15, sym__ws, sym_comment, anon_sym_POUND_, @@ -150370,13 +148640,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [170953] = 3, + [157161] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4764), 2, + ACTIONS(5851), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(4762), 15, + ACTIONS(5849), 15, sym__ws, sym_comment, anon_sym_POUND_, @@ -150392,20 +148662,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [170978] = 3, + [157186] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4768), 2, + ACTIONS(5853), 1, + aux_sym_num_lit_token2, + ACTIONS(4136), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(4766), 15, + ACTIONS(4134), 14, 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, @@ -150414,13 +148685,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [171003] = 3, + [157213] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4772), 2, + ACTIONS(5857), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(4770), 15, + ACTIONS(5855), 15, sym__ws, sym_comment, anon_sym_POUND_, @@ -150436,26 +148707,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [171028] = 9, + [157238] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4776), 1, - anon_sym_CARET, - ACTIONS(4779), 1, - anon_sym_POUND_CARET, - STATE(2221), 1, - sym_old_meta_lit, - STATE(2222), 1, - sym_meta_lit, - STATE(2233), 1, - aux_sym_list_lit_repeat1, - STATE(2236), 1, - sym__metadata_lit, - ACTIONS(4774), 2, + ACTIONS(5861), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(4782), 9, + ACTIONS(5859), 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, @@ -150464,13 +148729,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [171065] = 3, + [157263] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4786), 2, + ACTIONS(5865), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(4784), 15, + ACTIONS(5863), 15, sym__ws, sym_comment, anon_sym_POUND_, @@ -150486,12 +148751,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [171090] = 3, + [157288] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4742), 1, + ACTIONS(5815), 1, anon_sym_being, - ACTIONS(4744), 15, + ACTIONS(5817), 15, anon_sym_in, anon_sym_across, anon_sym_using, @@ -150507,13 +148772,35 @@ static uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_then, anon_sym_EQ, - [171114] = 3, + [157312] = 6, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4120), 1, + anon_sym_COLON, + ACTIONS(5870), 1, + anon_sym_POUND_, + ACTIONS(5867), 2, + sym__ws, + sym_comment, + STATE(2236), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(4122), 7, + anon_sym_COLON_COLON, + anon_sym_DQUOTE, + aux_sym_sym_lit_token1, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LBRACE, + anon_sym_POUND_QMARK, + [157340] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4788), 2, + ACTIONS(5873), 2, anon_sym_POUND, anon_sym_POUND_QMARK, - ACTIONS(4790), 12, + ACTIONS(5875), 12, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, @@ -150526,15 +148813,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_DASH, anon_sym_POUNDC, anon_sym_POUNDc, - [171136] = 4, + [157362] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4792), 1, + ACTIONS(5877), 1, aux_sym_num_lit_token2, - ACTIONS(3057), 2, + ACTIONS(4136), 2, anon_sym_COLON, aux_sym_sym_lit_token1, - ACTIONS(3055), 11, + ACTIONS(4134), 11, sym__ws, sym_comment, anon_sym_POUND_, @@ -150546,34 +148833,66 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [171160] = 6, + [157386] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3027), 1, + ACTIONS(4234), 1, anon_sym_COLON, - ACTIONS(4797), 1, + ACTIONS(4232), 12, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(4794), 2, + 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, + [157407] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4274), 1, + anon_sym_COLON, + ACTIONS(4272), 12, sym__ws, sym_comment, - STATE(2238), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(3029), 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_COMMA, + [157428] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4330), 1, + anon_sym_COLON, + ACTIONS(4328), 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, - [171188] = 3, + anon_sym_COMMA, + [157449] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3083), 1, + ACTIONS(4318), 1, anon_sym_COLON, - ACTIONS(3081), 12, + ACTIONS(4316), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -150586,12 +148905,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [171209] = 3, + [157470] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3399), 1, + ACTIONS(4302), 1, anon_sym_COLON, - ACTIONS(3397), 12, + ACTIONS(4300), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -150604,12 +148923,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [171230] = 3, + [157491] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3259), 1, + ACTIONS(4318), 1, anon_sym_COLON, - ACTIONS(3257), 12, + ACTIONS(4316), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -150622,12 +148941,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [171251] = 3, + [157512] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3267), 1, + ACTIONS(4302), 1, anon_sym_COLON, - ACTIONS(3265), 12, + ACTIONS(4300), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -150640,12 +148959,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [171272] = 3, + [157533] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3271), 1, + ACTIONS(4298), 1, anon_sym_COLON, - ACTIONS(3269), 12, + ACTIONS(4296), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -150658,12 +148977,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [171293] = 3, + [157554] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3275), 1, + ACTIONS(4294), 1, anon_sym_COLON, - ACTIONS(3273), 12, + ACTIONS(4292), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -150676,12 +148995,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [171314] = 3, + [157575] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3279), 1, + ACTIONS(4234), 1, anon_sym_COLON, - ACTIONS(3277), 12, + ACTIONS(4232), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -150694,12 +149013,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [171335] = 3, + [157596] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3063), 1, + ACTIONS(4450), 1, anon_sym_COLON, - ACTIONS(3061), 12, + ACTIONS(4448), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -150712,12 +149031,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [171356] = 3, + [157617] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3063), 1, + ACTIONS(4198), 1, anon_sym_COLON, - ACTIONS(3061), 12, + ACTIONS(4196), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -150730,12 +149049,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [171377] = 3, + [157638] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3299), 1, + ACTIONS(4230), 1, anon_sym_COLON, - ACTIONS(3297), 12, + ACTIONS(4228), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -150748,12 +149067,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [171398] = 3, + [157659] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3303), 1, + ACTIONS(4218), 1, anon_sym_COLON, - ACTIONS(3301), 12, + ACTIONS(4216), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -150766,12 +149085,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [171419] = 3, + [157680] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3307), 1, + ACTIONS(4206), 1, anon_sym_COLON, - ACTIONS(3305), 12, + ACTIONS(4204), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -150784,12 +149103,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [171440] = 3, + [157701] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3311), 1, + ACTIONS(4454), 1, anon_sym_COLON, - ACTIONS(3309), 12, + ACTIONS(4452), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -150802,12 +149121,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [171461] = 3, + [157722] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3307), 1, + ACTIONS(4510), 1, anon_sym_COLON, - ACTIONS(3305), 12, + ACTIONS(4508), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -150820,12 +149139,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [171482] = 3, + [157743] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3139), 1, + ACTIONS(4194), 1, anon_sym_COLON, - ACTIONS(3137), 12, + ACTIONS(4192), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -150838,12 +149157,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [171503] = 3, + [157764] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3323), 1, + ACTIONS(4354), 1, anon_sym_COLON, - ACTIONS(3321), 12, + ACTIONS(4352), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -150856,12 +149175,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [171524] = 3, + [157785] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3327), 1, + ACTIONS(4366), 1, anon_sym_COLON, - ACTIONS(3325), 12, + ACTIONS(4364), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -150874,12 +149193,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [171545] = 3, + [157806] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3331), 1, + ACTIONS(4366), 1, anon_sym_COLON, - ACTIONS(3329), 12, + ACTIONS(4364), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -150892,12 +149211,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [171566] = 3, + [157827] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3335), 1, + ACTIONS(4370), 1, anon_sym_COLON, - ACTIONS(3333), 12, + ACTIONS(4368), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -150910,12 +149229,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [171587] = 3, + [157848] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3335), 1, + ACTIONS(4174), 1, anon_sym_COLON, - ACTIONS(3333), 12, + ACTIONS(4172), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -150928,12 +149247,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [171608] = 3, + [157869] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3339), 1, + ACTIONS(4154), 1, anon_sym_COLON, - ACTIONS(3337), 12, + ACTIONS(4152), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -150946,12 +149265,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [171629] = 3, + [157890] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3339), 1, + ACTIONS(4446), 1, anon_sym_COLON, - ACTIONS(3337), 12, + ACTIONS(4444), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -150964,33 +149283,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [171650] = 6, + [157911] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3027), 1, + ACTIONS(5881), 2, anon_sym_COLON, - ACTIONS(4803), 1, - anon_sym_POUND_, - ACTIONS(4800), 2, - sym__ws, - sym_comment, - STATE(2261), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(3029), 6, - anon_sym_COLON_COLON, - aux_sym_sym_lit_token1, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, + anon_sym_AT, + ACTIONS(5879), 11, + aux_sym_num_lit_token1, + anon_sym_TILDE, + anon_sym_SQUOTE, anon_sym_COMMA, - [171677] = 3, + anon_sym_AT_COLON, + anon_sym_COLON_AT, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_STAR, + aux_sym_format_directive_type_token11, + [157932] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3347), 1, + ACTIONS(4150), 1, anon_sym_COLON, - ACTIONS(3345), 12, + ACTIONS(4148), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -151003,12 +149319,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [171698] = 3, + [157953] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3351), 1, + ACTIONS(4458), 1, anon_sym_COLON, - ACTIONS(3349), 12, + ACTIONS(4456), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -151021,12 +149337,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [171719] = 3, + [157974] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3355), 1, + ACTIONS(4370), 1, anon_sym_COLON, - ACTIONS(3353), 12, + ACTIONS(4368), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -151039,30 +149355,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [171740] = 3, + [157995] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4808), 2, - anon_sym_COLON, - anon_sym_AT, - ACTIONS(4806), 11, - 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, - anon_sym_STAR, - aux_sym_format_directive_type_token11, - [171761] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(3359), 1, + ACTIONS(4462), 1, anon_sym_COLON, - ACTIONS(3357), 12, + ACTIONS(4460), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -151075,12 +149373,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [171782] = 3, + [158016] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3363), 1, + ACTIONS(4466), 1, anon_sym_COLON, - ACTIONS(3361), 12, + ACTIONS(4464), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -151093,32 +149391,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [171803] = 5, + [158037] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4816), 1, - anon_sym_STAR, - ACTIONS(4812), 2, + ACTIONS(4170), 1, anon_sym_COLON, - anon_sym_AT, - ACTIONS(4814), 4, - anon_sym_TILDE, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4810), 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, - [171828] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(3367), 1, - anon_sym_COLON, - ACTIONS(3365), 12, + ACTIONS(4168), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -151131,12 +149409,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [171849] = 3, + [158058] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3371), 1, + ACTIONS(4398), 1, anon_sym_COLON, - ACTIONS(3369), 12, + ACTIONS(4396), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -151149,12 +149427,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [171870] = 3, + [158079] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3371), 1, + ACTIONS(4406), 1, anon_sym_COLON, - ACTIONS(3369), 12, + ACTIONS(4404), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -151167,12 +149445,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [171891] = 3, + [158100] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3363), 1, + ACTIONS(4374), 1, anon_sym_COLON, - ACTIONS(3361), 12, + ACTIONS(4372), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -151185,12 +149463,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [171912] = 3, + [158121] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3367), 1, + ACTIONS(4182), 1, anon_sym_COLON, - ACTIONS(3365), 12, + ACTIONS(4180), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -151203,30 +149481,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [171933] = 3, + [158142] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3371), 1, + ACTIONS(4120), 1, anon_sym_COLON, - ACTIONS(3369), 12, + ACTIONS(5886), 1, + anon_sym_POUND_, + ACTIONS(5883), 2, sym__ws, sym_comment, - anon_sym_POUND_, + STATE(2275), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(4122), 6, 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, - [171954] = 3, + [158169] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3371), 1, + ACTIONS(4186), 1, anon_sym_COLON, - ACTIONS(3369), 12, + ACTIONS(4184), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -151239,12 +149520,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [171975] = 3, + [158190] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3375), 1, + ACTIONS(4410), 1, anon_sym_COLON, - ACTIONS(3373), 12, + ACTIONS(4408), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -151257,12 +149538,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [171996] = 3, + [158211] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3379), 1, + ACTIONS(4414), 1, anon_sym_COLON, - ACTIONS(3377), 12, + ACTIONS(4412), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -151275,12 +149556,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [172017] = 3, + [158232] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3235), 1, + ACTIONS(4202), 1, anon_sym_COLON, - ACTIONS(3233), 12, + ACTIONS(4200), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -151293,12 +149574,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [172038] = 3, + [158253] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3231), 1, + ACTIONS(4210), 1, anon_sym_COLON, - ACTIONS(3229), 12, + ACTIONS(4208), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -151311,12 +149592,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [172059] = 3, + [158274] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3383), 1, + ACTIONS(4418), 1, anon_sym_COLON, - ACTIONS(3381), 12, + ACTIONS(4416), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -151329,12 +149610,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [172080] = 3, + [158295] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3387), 1, + ACTIONS(4426), 1, anon_sym_COLON, - ACTIONS(3385), 12, + ACTIONS(4424), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -151347,12 +149628,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [172101] = 3, + [158316] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3395), 1, + ACTIONS(4214), 1, anon_sym_COLON, - ACTIONS(3393), 12, + ACTIONS(4212), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -151365,12 +149646,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [172122] = 3, + [158337] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3227), 1, + ACTIONS(4430), 1, anon_sym_COLON, - ACTIONS(3225), 12, + ACTIONS(4428), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -151383,12 +149664,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [172143] = 3, + [158358] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3399), 1, + ACTIONS(4430), 1, anon_sym_COLON, - ACTIONS(3397), 12, + ACTIONS(4428), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -151401,12 +149682,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [172164] = 3, + [158379] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3395), 1, + ACTIONS(4418), 1, anon_sym_COLON, - ACTIONS(3393), 12, + ACTIONS(4416), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -151419,30 +149700,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [172185] = 3, + [158400] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4820), 2, + ACTIONS(4222), 1, anon_sym_COLON, - anon_sym_AT, - ACTIONS(4818), 11, - 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, - anon_sym_STAR, - aux_sym_format_directive_type_token11, - [172206] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(3255), 1, - anon_sym_COLON, - ACTIONS(3253), 12, + ACTIONS(4220), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -151455,12 +149718,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [172227] = 3, + [158421] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3083), 1, + ACTIONS(4226), 1, anon_sym_COLON, - ACTIONS(3081), 12, + ACTIONS(4224), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -151473,12 +149736,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [172248] = 3, + [158442] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3403), 1, + ACTIONS(4378), 1, anon_sym_COLON, - ACTIONS(3401), 12, + ACTIONS(4376), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -151491,12 +149754,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [172269] = 3, + [158463] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3387), 1, + ACTIONS(4470), 1, anon_sym_COLON, - ACTIONS(3385), 12, + ACTIONS(4468), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -151509,30 +149772,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [172290] = 3, + [158484] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3223), 1, + ACTIONS(5895), 1, + anon_sym_STAR, + ACTIONS(5891), 2, anon_sym_COLON, - ACTIONS(3221), 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_AT, + ACTIONS(5893), 4, + anon_sym_TILDE, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5889), 6, + aux_sym_num_lit_token1, + anon_sym_SQUOTE, anon_sym_COMMA, - [172311] = 3, + anon_sym_AT_COLON, + anon_sym_COLON_AT, + aux_sym_format_directive_type_token11, + [158509] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3219), 1, + ACTIONS(4238), 1, anon_sym_COLON, - ACTIONS(3217), 12, + ACTIONS(4236), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -151545,12 +149810,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [172332] = 3, + [158530] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3215), 1, + ACTIONS(4242), 1, anon_sym_COLON, - ACTIONS(3213), 12, + ACTIONS(4240), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -151563,12 +149828,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [172353] = 3, + [158551] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3087), 1, + ACTIONS(4246), 1, anon_sym_COLON, - ACTIONS(3085), 12, + ACTIONS(4244), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -151581,12 +149846,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [172374] = 3, + [158572] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3207), 1, + ACTIONS(4426), 1, anon_sym_COLON, - ACTIONS(3205), 12, + ACTIONS(4424), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -151599,12 +149864,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [172395] = 3, + [158593] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3395), 1, + ACTIONS(4430), 1, anon_sym_COLON, - ACTIONS(3393), 12, + ACTIONS(4428), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -151617,12 +149882,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [172416] = 3, + [158614] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3203), 1, + ACTIONS(4430), 1, anon_sym_COLON, - ACTIONS(3201), 12, + ACTIONS(4428), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -151635,12 +149900,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [172437] = 3, + [158635] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3199), 1, + ACTIONS(4178), 1, anon_sym_COLON, - ACTIONS(3197), 12, + ACTIONS(4176), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -151653,30 +149918,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [172458] = 3, + [158656] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3399), 1, + ACTIONS(5899), 2, anon_sym_COLON, - ACTIONS(3397), 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_AT, + ACTIONS(5897), 11, + aux_sym_num_lit_token1, + anon_sym_TILDE, + anon_sym_SQUOTE, anon_sym_COMMA, - [172479] = 3, + anon_sym_AT_COLON, + anon_sym_COLON_AT, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_STAR, + aux_sym_format_directive_type_token11, + [158677] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3419), 1, + ACTIONS(4490), 1, anon_sym_COLON, - ACTIONS(3417), 12, + ACTIONS(4488), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -151689,12 +149954,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [172500] = 3, + [158698] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3395), 1, + ACTIONS(4494), 1, anon_sym_COLON, - ACTIONS(3393), 12, + ACTIONS(4492), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -151707,12 +149972,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [172521] = 3, + [158719] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3423), 1, + ACTIONS(4278), 1, anon_sym_COLON, - ACTIONS(3421), 12, + ACTIONS(4276), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -151725,12 +149990,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [172542] = 3, + [158740] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3423), 1, + ACTIONS(4358), 1, anon_sym_COLON, - ACTIONS(3421), 12, + ACTIONS(4356), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -151743,12 +150008,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [172563] = 3, + [158761] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3195), 1, + ACTIONS(4362), 1, anon_sym_COLON, - ACTIONS(3193), 12, + ACTIONS(4360), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -151761,12 +150026,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [172584] = 3, + [158782] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3191), 1, + ACTIONS(4374), 1, anon_sym_COLON, - ACTIONS(3189), 12, + ACTIONS(4372), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -151779,12 +150044,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [172605] = 3, + [158803] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3419), 1, + ACTIONS(4498), 1, anon_sym_COLON, - ACTIONS(3417), 12, + ACTIONS(4496), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -151797,12 +150062,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [172626] = 3, + [158824] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3415), 1, + ACTIONS(4502), 1, anon_sym_COLON, - ACTIONS(3413), 12, + ACTIONS(4500), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -151815,12 +150080,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [172647] = 3, + [158845] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3411), 1, + ACTIONS(4506), 1, anon_sym_COLON, - ACTIONS(3409), 12, + ACTIONS(4504), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -151833,12 +150098,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [172668] = 3, + [158866] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3411), 1, + ACTIONS(4374), 1, anon_sym_COLON, - ACTIONS(3409), 12, + ACTIONS(4372), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -151851,12 +150116,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [172689] = 3, + [158887] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3311), 1, + ACTIONS(4478), 1, anon_sym_COLON, - ACTIONS(3309), 12, + ACTIONS(4476), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -151869,12 +150134,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [172710] = 3, + [158908] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3415), 1, + ACTIONS(4350), 1, anon_sym_COLON, - ACTIONS(3413), 12, + ACTIONS(4348), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -151887,12 +150152,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [172731] = 3, + [158929] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3411), 1, + ACTIONS(4342), 1, anon_sym_COLON, - ACTIONS(3409), 12, + ACTIONS(4340), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -151905,12 +150170,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [172752] = 3, + [158950] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3187), 1, + ACTIONS(4334), 1, anon_sym_COLON, - ACTIONS(3185), 12, + ACTIONS(4332), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -151923,12 +150188,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [172773] = 3, + [158971] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3411), 1, + ACTIONS(4502), 1, anon_sym_COLON, - ACTIONS(3409), 12, + ACTIONS(4500), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -151941,12 +150206,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [172794] = 3, + [158992] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3407), 1, + ACTIONS(4314), 1, anon_sym_COLON, - ACTIONS(3405), 12, + ACTIONS(4312), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -151959,12 +150224,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [172815] = 3, + [159013] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3403), 1, + ACTIONS(4506), 1, anon_sym_COLON, - ACTIONS(3401), 12, + ACTIONS(4504), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -151977,12 +150242,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [172836] = 3, + [159034] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3183), 1, + ACTIONS(4486), 1, anon_sym_COLON, - ACTIONS(3181), 12, + ACTIONS(4484), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -151995,12 +150260,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [172857] = 3, + [159055] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3179), 1, + ACTIONS(4474), 1, anon_sym_COLON, - ACTIONS(3177), 12, + ACTIONS(4472), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -152013,12 +150278,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [172878] = 3, + [159076] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3159), 1, + ACTIONS(4346), 1, anon_sym_COLON, - ACTIONS(3157), 12, + ACTIONS(4344), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -152031,12 +150296,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [172899] = 3, + [159097] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3155), 1, + ACTIONS(4498), 1, anon_sym_COLON, - ACTIONS(3153), 12, + ACTIONS(4496), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -152049,12 +150314,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [172920] = 3, + [159118] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3151), 1, + ACTIONS(4502), 1, anon_sym_COLON, - ACTIONS(3149), 12, + ACTIONS(4500), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -152067,12 +150332,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [172941] = 3, + [159139] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3399), 1, + ACTIONS(4274), 1, anon_sym_COLON, - ACTIONS(3397), 12, + ACTIONS(4272), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -152085,12 +150350,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [172962] = 3, + [159160] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3083), 1, + ACTIONS(4506), 1, anon_sym_COLON, - ACTIONS(3081), 12, + ACTIONS(4504), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -152103,12 +150368,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [172983] = 3, + [159181] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3143), 1, + ACTIONS(4502), 1, anon_sym_COLON, - ACTIONS(3141), 12, + ACTIONS(4500), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -152121,12 +150386,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [173004] = 3, + [159202] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3135), 1, + ACTIONS(4506), 1, anon_sym_COLON, - ACTIONS(3133), 12, + ACTIONS(4504), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -152139,12 +150404,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [173025] = 3, + [159223] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3131), 1, + ACTIONS(4486), 1, anon_sym_COLON, - ACTIONS(3129), 12, + ACTIONS(4484), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -152157,12 +150422,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [173046] = 3, + [159244] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3127), 1, + ACTIONS(4514), 1, anon_sym_COLON, - ACTIONS(3125), 12, + ACTIONS(4512), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -152175,12 +150440,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [173067] = 3, + [159265] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3123), 1, + ACTIONS(4434), 1, anon_sym_COLON, - ACTIONS(3121), 12, + ACTIONS(4432), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -152193,12 +150458,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [173088] = 3, + [159286] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3119), 1, + ACTIONS(4442), 1, anon_sym_COLON, - ACTIONS(3117), 12, + ACTIONS(4440), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -152211,12 +150476,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [173109] = 3, + [159307] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3115), 1, + ACTIONS(4438), 1, anon_sym_COLON, - ACTIONS(3113), 12, + ACTIONS(4436), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -152229,12 +150494,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [173130] = 3, + [159328] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3111), 1, + ACTIONS(4442), 1, anon_sym_COLON, - ACTIONS(3109), 12, + ACTIONS(4440), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -152247,12 +150512,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [173151] = 3, + [159349] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3435), 1, + ACTIONS(4438), 1, anon_sym_COLON, - ACTIONS(3433), 12, + ACTIONS(4436), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -152265,12 +150530,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [173172] = 3, + [159370] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3431), 1, + ACTIONS(4434), 1, anon_sym_COLON, - ACTIONS(3429), 12, + ACTIONS(4432), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -152283,12 +150548,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [173193] = 3, + [159391] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3075), 1, + ACTIONS(4442), 1, anon_sym_COLON, - ACTIONS(3073), 12, + ACTIONS(4440), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -152301,12 +150566,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [173214] = 3, + [159412] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3071), 1, + ACTIONS(4442), 1, anon_sym_COLON, - ACTIONS(3069), 12, + ACTIONS(4440), 12, sym__ws, sym_comment, anon_sym_POUND_, @@ -152319,98 +150584,165 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_POUND_QMARK, anon_sym_COMMA, - [173235] = 5, + [159433] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4825), 1, + ACTIONS(5904), 1, anon_sym_POUND_, - ACTIONS(4822), 2, + ACTIONS(5901), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(3029), 6, + ACTIONS(4122), 6, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_POUND_QMARK, - [173259] = 8, + [159457] = 10, ACTIONS(47), 1, sym_block_comment, - STATE(1482), 1, + ACTIONS(775), 1, + anon_sym_LPAREN, + ACTIONS(4703), 1, + anon_sym_CARET, + ACTIONS(4705), 1, + anon_sym_POUND_CARET, + STATE(854), 1, sym_list_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2342), 1, + STATE(2352), 1, + sym_meta_lit, + STATE(2353), 1, sym_old_meta_lit, - STATE(2343), 1, + STATE(2407), 1, + aux_sym_list_lit_repeat1, + STATE(863), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [159490] = 8, + ACTIONS(47), 1, + sym_block_comment, + STATE(2237), 1, + sym__metadata_lit, + STATE(2304), 1, + sym_list_lit, + STATE(2352), 1, sym_meta_lit, - STATE(2388), 1, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2417), 1, aux_sym_list_lit_repeat1, - ACTIONS(4828), 3, + ACTIONS(5907), 3, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - STATE(1524), 3, + STATE(2315), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [173288] = 10, + [159519] = 10, + ACTIONS(29), 1, + anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(277), 1, - anon_sym_LPAREN, - ACTIONS(3622), 1, + ACTIONS(4703), 1, anon_sym_CARET, - ACTIONS(3624), 1, + ACTIONS(4705), 1, anon_sym_POUND_CARET, - STATE(2172), 1, + STATE(1535), 1, sym_list_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2342), 1, + STATE(2352), 1, + sym_meta_lit, + STATE(2353), 1, sym_old_meta_lit, - STATE(2343), 1, + STATE(2418), 1, + aux_sym_list_lit_repeat1, + STATE(1562), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [159552] = 10, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(869), 1, + anon_sym_LPAREN, + ACTIONS(4703), 1, + anon_sym_CARET, + ACTIONS(4705), 1, + anon_sym_POUND_CARET, + STATE(1811), 1, + sym_list_lit, + STATE(2237), 1, + sym__metadata_lit, + STATE(2352), 1, sym_meta_lit, - STATE(2396), 1, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2414), 1, aux_sym_list_lit_repeat1, - STATE(2118), 3, + STATE(1792), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [173321] = 8, + [159585] = 8, ACTIONS(47), 1, sym_block_comment, - STATE(1351), 1, + STATE(1815), 1, sym_list_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2342), 1, + STATE(2352), 1, + sym_meta_lit, + STATE(2353), 1, sym_old_meta_lit, - STATE(2343), 1, + STATE(2414), 1, + aux_sym_list_lit_repeat1, + ACTIONS(5907), 3, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + STATE(1792), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [159614] = 8, + ACTIONS(47), 1, + sym_block_comment, + STATE(1213), 1, + sym_list_lit, + STATE(2237), 1, + sym__metadata_lit, + STATE(2352), 1, sym_meta_lit, - STATE(2420), 1, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2423), 1, aux_sym_list_lit_repeat1, - ACTIONS(4828), 3, + ACTIONS(5907), 3, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - STATE(1330), 3, + STATE(1175), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [173350] = 4, + [159643] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4830), 1, + ACTIONS(5909), 1, anon_sym_COLON, - ACTIONS(4832), 1, + ACTIONS(5911), 1, anon_sym_COLON_COLON, - ACTIONS(3073), 9, + ACTIONS(4340), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -152420,877 +150752,766 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LBRACE, anon_sym_POUND_QMARK, - [173371] = 8, + [159664] = 10, ACTIONS(47), 1, sym_block_comment, - STATE(1543), 1, + ACTIONS(288), 1, + anon_sym_LPAREN, + ACTIONS(4703), 1, + anon_sym_CARET, + ACTIONS(4705), 1, + anon_sym_POUND_CARET, + STATE(1811), 1, sym_list_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, + STATE(2352), 1, sym_meta_lit, - STATE(2379), 1, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2422), 1, aux_sym_list_lit_repeat1, - ACTIONS(4828), 3, + STATE(1792), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [159697] = 10, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(604), 1, + anon_sym_LPAREN, + ACTIONS(4703), 1, anon_sym_CARET, + ACTIONS(4705), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - STATE(1609), 3, + STATE(2237), 1, + sym__metadata_lit, + STATE(2302), 1, + sym_list_lit, + STATE(2352), 1, + sym_meta_lit, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2421), 1, + aux_sym_list_lit_repeat1, + STATE(2315), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [173400] = 5, + [159730] = 8, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, - anon_sym_POUND_, - ACTIONS(4834), 2, - sym__ws, - sym_comment, - STATE(2350), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(4730), 5, + STATE(2237), 1, + sym__metadata_lit, + STATE(2304), 1, + sym_list_lit, + STATE(2352), 1, + sym_meta_lit, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2421), 1, + aux_sym_list_lit_repeat1, + ACTIONS(5907), 3, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_POUND_QMARK, - [173423] = 5, + STATE(2315), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [159759] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(4838), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, - STATE(2349), 3, + STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(4736), 5, + ACTIONS(5769), 5, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_POUND_QMARK, - [173446] = 4, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4830), 1, - anon_sym_COLON, - ACTIONS(4832), 1, - anon_sym_COLON_COLON, - ACTIONS(3281), 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, - [173467] = 8, + [159782] = 8, ACTIONS(47), 1, sym_block_comment, - STATE(1365), 1, + STATE(1254), 1, sym_list_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, + STATE(2352), 1, sym_meta_lit, - STATE(2389), 1, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2423), 1, aux_sym_list_lit_repeat1, - ACTIONS(4828), 3, + ACTIONS(5907), 3, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - STATE(1330), 3, + STATE(1175), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [173496] = 10, + [159811] = 8, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(3622), 1, - anon_sym_CARET, - ACTIONS(3624), 1, - anon_sym_POUND_CARET, - STATE(1363), 1, + STATE(1941), 1, sym_list_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, + STATE(2352), 1, sym_meta_lit, - STATE(2389), 1, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2419), 1, aux_sym_list_lit_repeat1, - STATE(1330), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [173529] = 10, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(631), 1, - anon_sym_LPAREN, - ACTIONS(3622), 1, + ACTIONS(5907), 3, anon_sym_CARET, - ACTIONS(3624), 1, anon_sym_POUND_CARET, - STATE(1363), 1, - sym_list_lit, - STATE(2236), 1, - sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, - sym_meta_lit, - STATE(2420), 1, - aux_sym_list_lit_repeat1, - STATE(1330), 3, + anon_sym_LPAREN, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [173562] = 8, + [159840] = 8, ACTIONS(47), 1, sym_block_comment, - STATE(1365), 1, + STATE(822), 1, sym_list_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, + STATE(2352), 1, sym_meta_lit, - STATE(2420), 1, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2407), 1, aux_sym_list_lit_repeat1, - ACTIONS(4828), 3, + ACTIONS(5907), 3, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - STATE(1330), 3, + STATE(863), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [173591] = 5, + [159869] = 4, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(5909), 1, + anon_sym_COLON, + ACTIONS(5911), 1, + anon_sym_COLON_COLON, + ACTIONS(4304), 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, + [159890] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(4840), 2, + ACTIONS(5917), 2, sym__ws, sym_comment, - STATE(2336), 3, + STATE(2361), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(4690), 5, + ACTIONS(5775), 5, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_POUND_QMARK, - [173614] = 5, + [159913] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(4840), 2, + ACTIONS(5919), 2, sym__ws, sym_comment, - STATE(2336), 3, + STATE(2347), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - ACTIONS(4678), 5, + ACTIONS(5757), 5, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_POUND_QMARK, - [173637] = 8, + [159936] = 8, ACTIONS(47), 1, sym_block_comment, - STATE(1351), 1, + STATE(1767), 1, sym_list_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, + STATE(2352), 1, sym_meta_lit, - STATE(2389), 1, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2422), 1, aux_sym_list_lit_repeat1, - ACTIONS(4828), 3, + ACTIONS(5907), 3, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - STATE(1330), 3, + STATE(1792), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [173666] = 10, + [159965] = 8, ACTIONS(47), 1, sym_block_comment, - ACTIONS(829), 1, - anon_sym_LPAREN, - ACTIONS(3622), 1, - anon_sym_CARET, - ACTIONS(3624), 1, - anon_sym_POUND_CARET, - STATE(2236), 1, - sym__metadata_lit, - STATE(2319), 1, + STATE(1514), 1, sym_list_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, - sym_meta_lit, - STATE(2380), 1, - aux_sym_list_lit_repeat1, - STATE(2332), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [173699] = 8, - ACTIONS(47), 1, - sym_block_comment, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2321), 1, - sym_list_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, + STATE(2352), 1, sym_meta_lit, - STATE(2380), 1, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2418), 1, aux_sym_list_lit_repeat1, - ACTIONS(4828), 3, + ACTIONS(5907), 3, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - STATE(2332), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [173728] = 8, + [159994] = 8, ACTIONS(47), 1, sym_block_comment, - STATE(1072), 1, + STATE(1537), 1, sym_list_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, + STATE(2352), 1, sym_meta_lit, - STATE(2409), 1, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2418), 1, aux_sym_list_lit_repeat1, - ACTIONS(4828), 3, + ACTIONS(5907), 3, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - STATE(1058), 3, + STATE(1562), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [173757] = 10, + [160023] = 8, ACTIONS(47), 1, sym_block_comment, - ACTIONS(557), 1, - anon_sym_LPAREN, - ACTIONS(3622), 1, - anon_sym_CARET, - ACTIONS(3624), 1, - anon_sym_POUND_CARET, - STATE(1074), 1, - sym_list_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, - sym_meta_lit, - STATE(2409), 1, - aux_sym_list_lit_repeat1, - STATE(1058), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [173790] = 8, - ACTIONS(47), 1, - sym_block_comment, - STATE(1043), 1, + STATE(2262), 1, sym_list_lit, - STATE(2236), 1, - sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, + STATE(2352), 1, sym_meta_lit, - STATE(2409), 1, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2421), 1, aux_sym_list_lit_repeat1, - ACTIONS(4828), 3, + ACTIONS(5907), 3, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - STATE(1058), 3, + STATE(2315), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [173819] = 10, - ACTIONS(29), 1, - anon_sym_LPAREN, + [160052] = 8, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3622), 1, - anon_sym_CARET, - ACTIONS(3624), 1, - anon_sym_POUND_CARET, - STATE(1548), 1, + STATE(1767), 1, sym_list_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, + STATE(2352), 1, sym_meta_lit, - STATE(2379), 1, - aux_sym_list_lit_repeat1, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [173852] = 8, - ACTIONS(47), 1, - sym_block_comment, - STATE(1788), 1, - sym_list_lit, - STATE(2236), 1, - sym__metadata_lit, - STATE(2342), 1, + STATE(2353), 1, sym_old_meta_lit, - STATE(2343), 1, - sym_meta_lit, - STATE(2398), 1, + STATE(2414), 1, aux_sym_list_lit_repeat1, - ACTIONS(4828), 3, + ACTIONS(5907), 3, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - STATE(1812), 3, + STATE(1792), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [173881] = 10, + [160081] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(741), 1, + ACTIONS(921), 1, anon_sym_LPAREN, - ACTIONS(3622), 1, + ACTIONS(4703), 1, anon_sym_CARET, - ACTIONS(3624), 1, + ACTIONS(4705), 1, anon_sym_POUND_CARET, - STATE(1785), 1, + STATE(1256), 1, sym_list_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, + STATE(2352), 1, sym_meta_lit, - STATE(2398), 1, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2423), 1, aux_sym_list_lit_repeat1, - STATE(1812), 3, + STATE(1175), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [173914] = 8, + [160114] = 8, ACTIONS(47), 1, sym_block_comment, - STATE(1766), 1, + STATE(1815), 1, sym_list_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, + STATE(2352), 1, sym_meta_lit, - STATE(2398), 1, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2422), 1, aux_sym_list_lit_repeat1, - ACTIONS(4828), 3, + ACTIONS(5907), 3, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - STATE(1812), 3, + STATE(1792), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [173943] = 8, + [160143] = 5, ACTIONS(47), 1, sym_block_comment, - STATE(1620), 1, - sym_list_lit, - STATE(2236), 1, - sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, - sym_meta_lit, - STATE(2379), 1, - aux_sym_list_lit_repeat1, - ACTIONS(4828), 3, + ACTIONS(5915), 1, + anon_sym_POUND_, + ACTIONS(5913), 2, + sym__ws, + sym_comment, + STATE(2336), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(5765), 5, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - STATE(1609), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [173972] = 8, + anon_sym_LBRACE, + anon_sym_POUND_QMARK, + [160166] = 8, ACTIONS(47), 1, sym_block_comment, - STATE(1271), 1, - sym_list_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, + STATE(2262), 1, + sym_list_lit, + STATE(2352), 1, sym_meta_lit, - STATE(2383), 1, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2390), 1, aux_sym_list_lit_repeat1, - ACTIONS(4828), 3, + ACTIONS(5907), 3, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - STATE(1183), 3, + STATE(2315), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [174001] = 10, + [160195] = 8, ACTIONS(47), 1, sym_block_comment, - ACTIONS(583), 1, - anon_sym_LPAREN, - ACTIONS(3622), 1, - anon_sym_CARET, - ACTIONS(3624), 1, - anon_sym_POUND_CARET, - STATE(1235), 1, + STATE(1026), 1, sym_list_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, + STATE(2352), 1, sym_meta_lit, - STATE(2383), 1, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2388), 1, aux_sym_list_lit_repeat1, - STATE(1183), 3, + ACTIONS(5907), 3, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + STATE(1078), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [174034] = 8, + [160224] = 8, ACTIONS(47), 1, sym_block_comment, - STATE(842), 1, + STATE(877), 1, sym_list_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, + STATE(2352), 1, sym_meta_lit, - STATE(2395), 1, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2407), 1, aux_sym_list_lit_repeat1, - ACTIONS(4828), 3, + ACTIONS(5907), 3, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - STATE(939), 3, + STATE(863), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [174063] = 10, + [160253] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(541), 1, + ACTIONS(869), 1, anon_sym_LPAREN, - ACTIONS(3622), 1, + ACTIONS(4703), 1, anon_sym_CARET, - ACTIONS(3624), 1, + ACTIONS(4705), 1, anon_sym_POUND_CARET, - STATE(844), 1, - sym_list_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, + STATE(2302), 1, + sym_list_lit, + STATE(2352), 1, sym_meta_lit, - STATE(2395), 1, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2390), 1, aux_sym_list_lit_repeat1, - STATE(939), 3, + STATE(2315), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [174096] = 8, + [160286] = 8, ACTIONS(47), 1, sym_block_comment, - STATE(863), 1, + STATE(1327), 1, sym_list_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, + STATE(2352), 1, sym_meta_lit, - STATE(2395), 1, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2402), 1, aux_sym_list_lit_repeat1, - ACTIONS(4828), 3, + ACTIONS(5907), 3, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - STATE(939), 3, + STATE(1356), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [174125] = 8, + [160315] = 8, ACTIONS(47), 1, sym_block_comment, - STATE(1230), 1, + STATE(1694), 1, sym_list_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, + STATE(2352), 1, sym_meta_lit, - STATE(2383), 1, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2398), 1, aux_sym_list_lit_repeat1, - ACTIONS(4828), 3, + ACTIONS(5907), 3, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - STATE(1183), 3, + STATE(1782), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [174154] = 8, + [160344] = 8, ACTIONS(47), 1, sym_block_comment, - STATE(2112), 1, - sym_list_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, + STATE(2304), 1, + sym_list_lit, + STATE(2352), 1, sym_meta_lit, - STATE(2396), 1, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2390), 1, aux_sym_list_lit_repeat1, - ACTIONS(4828), 3, + ACTIONS(5907), 3, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - STATE(2118), 3, + STATE(2315), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [174183] = 8, + [160373] = 10, ACTIONS(47), 1, sym_block_comment, - STATE(1408), 1, + ACTIONS(819), 1, + anon_sym_LPAREN, + ACTIONS(4703), 1, + anon_sym_CARET, + ACTIONS(4705), 1, + anon_sym_POUND_CARET, + STATE(1725), 1, sym_list_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, + STATE(2352), 1, sym_meta_lit, - STATE(2388), 1, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2398), 1, aux_sym_list_lit_repeat1, - ACTIONS(4828), 3, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - STATE(1524), 3, + STATE(1782), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [174212] = 8, + [160406] = 8, ACTIONS(47), 1, sym_block_comment, - STATE(2236), 1, - sym__metadata_lit, - STATE(2279), 1, + STATE(1922), 1, sym_list_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, + STATE(2237), 1, + sym__metadata_lit, + STATE(2352), 1, sym_meta_lit, - STATE(2380), 1, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2419), 1, aux_sym_list_lit_repeat1, - ACTIONS(4828), 3, + ACTIONS(5907), 3, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - STATE(2332), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [174241] = 8, + [160435] = 8, ACTIONS(47), 1, sym_block_comment, - STATE(2236), 1, - sym__metadata_lit, - STATE(2279), 1, + STATE(1727), 1, sym_list_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, + STATE(2237), 1, + sym__metadata_lit, + STATE(2352), 1, sym_meta_lit, - STATE(2393), 1, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2398), 1, aux_sym_list_lit_repeat1, - ACTIONS(4828), 3, + ACTIONS(5907), 3, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - STATE(2332), 3, + STATE(1782), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [174270] = 8, + [160464] = 8, ACTIONS(47), 1, sym_block_comment, - STATE(2236), 1, - sym__metadata_lit, - STATE(2321), 1, + STATE(1049), 1, sym_list_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, + STATE(2237), 1, + sym__metadata_lit, + STATE(2352), 1, sym_meta_lit, - STATE(2385), 1, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2388), 1, aux_sym_list_lit_repeat1, - ACTIONS(4828), 3, + ACTIONS(5907), 3, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - STATE(2332), 3, + STATE(1078), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [174299] = 8, + [160493] = 8, ACTIONS(47), 1, sym_block_comment, - STATE(2236), 1, - sym__metadata_lit, - STATE(2321), 1, + STATE(1355), 1, sym_list_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, + STATE(2237), 1, + sym__metadata_lit, + STATE(2352), 1, sym_meta_lit, - STATE(2393), 1, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2402), 1, aux_sym_list_lit_repeat1, - ACTIONS(4828), 3, + ACTIONS(5907), 3, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - STATE(2332), 3, + STATE(1356), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [174328] = 10, + [160522] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(3622), 1, + ACTIONS(4703), 1, anon_sym_CARET, - ACTIONS(3624), 1, + ACTIONS(4705), 1, anon_sym_POUND_CARET, - STATE(2236), 1, - sym__metadata_lit, - STATE(2319), 1, + STATE(1924), 1, sym_list_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, - sym_meta_lit, - STATE(2385), 1, - aux_sym_list_lit_repeat1, - STATE(2332), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [174361] = 8, - ACTIONS(47), 1, - sym_block_comment, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2279), 1, - sym_list_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, + STATE(2352), 1, sym_meta_lit, - STATE(2385), 1, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2419), 1, aux_sym_list_lit_repeat1, - ACTIONS(4828), 3, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - STATE(2332), 3, + STATE(1901), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [174390] = 10, + [160555] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(631), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(3622), 1, + ACTIONS(4703), 1, anon_sym_CARET, - ACTIONS(3624), 1, + ACTIONS(4705), 1, anon_sym_POUND_CARET, - STATE(2236), 1, - sym__metadata_lit, - STATE(2319), 1, + STATE(1351), 1, sym_list_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, + STATE(2237), 1, + sym__metadata_lit, + STATE(2352), 1, sym_meta_lit, - STATE(2393), 1, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2402), 1, aux_sym_list_lit_repeat1, - STATE(2332), 3, + STATE(1356), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [174423] = 8, + [160588] = 8, ACTIONS(47), 1, sym_block_comment, - STATE(2072), 1, - sym_list_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, + STATE(2262), 1, + sym_list_lit, + STATE(2352), 1, sym_meta_lit, - STATE(2396), 1, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2417), 1, aux_sym_list_lit_repeat1, - ACTIONS(4828), 3, + ACTIONS(5907), 3, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, - STATE(2118), 3, + STATE(2315), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [174452] = 10, + [160617] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(693), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(3622), 1, + ACTIONS(4703), 1, anon_sym_CARET, - ACTIONS(3624), 1, + ACTIONS(4705), 1, anon_sym_POUND_CARET, - STATE(1479), 1, - sym_list_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, + STATE(2302), 1, + sym_list_lit, + STATE(2352), 1, sym_meta_lit, - STATE(2388), 1, - aux_sym_list_lit_repeat1, - STATE(1524), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [174485] = 9, - ACTIONS(29), 1, - anon_sym_LPAREN, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(3622), 1, - anon_sym_CARET, - ACTIONS(3624), 1, - anon_sym_POUND_CARET, - STATE(2236), 1, - sym__metadata_lit, - STATE(2342), 1, + STATE(2353), 1, sym_old_meta_lit, - STATE(2343), 1, - sym_meta_lit, - STATE(2424), 1, + STATE(2417), 1, aux_sym_list_lit_repeat1, - STATE(1597), 3, + STATE(2315), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [174515] = 9, + [160650] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(829), 1, + ACTIONS(576), 1, anon_sym_LPAREN, - ACTIONS(3622), 1, + ACTIONS(4703), 1, anon_sym_CARET, - ACTIONS(3624), 1, + ACTIONS(4705), 1, anon_sym_POUND_CARET, - STATE(2236), 1, + STATE(1047), 1, + sym_list_lit, + STATE(2237), 1, sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, + STATE(2352), 1, sym_meta_lit, - STATE(2424), 1, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2388), 1, aux_sym_list_lit_repeat1, - STATE(2253), 3, + STATE(1078), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [174545] = 7, + [160683] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4842), 1, + ACTIONS(5924), 1, + anon_sym_POUND_, + ACTIONS(5921), 2, + sym__ws, + sym_comment, + STATE(2379), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(4122), 4, aux_sym_num_lit_token1, - ACTIONS(4847), 1, - anon_sym_SQUOTE, - ACTIONS(4850), 1, - anon_sym_COMMA, - ACTIONS(4845), 2, - anon_sym_COLON, - anon_sym_AT, - STATE(2381), 2, - sym__format_token, - aux_sym_format_modifiers_repeat1, - ACTIONS(4853), 3, - anon_sym_AT_COLON, - anon_sym_COLON_AT, - aux_sym_format_directive_type_token11, - [174571] = 3, + anon_sym_cl, + anon_sym_EQ, + anon_sym_into, + [160705] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3095), 1, + ACTIONS(4162), 1, anon_sym_COLON, - ACTIONS(3093), 9, + ACTIONS(4160), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -153300,33 +151521,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [174589] = 9, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(583), 1, - anon_sym_LPAREN, - ACTIONS(3622), 1, - anon_sym_CARET, - ACTIONS(3624), 1, - anon_sym_POUND_CARET, - STATE(2236), 1, - sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, - sym_meta_lit, - STATE(2424), 1, - aux_sym_list_lit_repeat1, - STATE(1226), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [174619] = 3, + [160723] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3163), 1, + ACTIONS(4402), 1, anon_sym_COLON, - ACTIONS(3161), 9, + ACTIONS(4400), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -153336,33 +151536,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [174637] = 9, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(3622), 1, - anon_sym_CARET, - ACTIONS(3624), 1, - anon_sym_POUND_CARET, - STATE(2236), 1, - sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, - sym_meta_lit, - STATE(2424), 1, - aux_sym_list_lit_repeat1, - STATE(2253), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [174667] = 3, + [160741] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3175), 1, + ACTIONS(4166), 1, anon_sym_COLON, - ACTIONS(3173), 9, + ACTIONS(4164), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -153372,12 +151551,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [174685] = 3, + [160759] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3295), 1, + ACTIONS(4158), 1, anon_sym_COLON, - ACTIONS(3293), 9, + ACTIONS(4156), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -153387,54 +151566,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [174703] = 9, + [160777] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(693), 1, - anon_sym_LPAREN, - ACTIONS(3622), 1, + ACTIONS(4258), 1, + anon_sym_COLON, + ACTIONS(4256), 9, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + aux_sym_sym_lit_token1, anon_sym_CARET, - ACTIONS(3624), 1, anon_sym_POUND_CARET, - STATE(2236), 1, - sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, - sym_meta_lit, - STATE(2424), 1, - aux_sym_list_lit_repeat1, - STATE(1489), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [174733] = 9, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(789), 1, anon_sym_LPAREN, - ACTIONS(3622), 1, - anon_sym_CARET, - ACTIONS(3624), 1, - anon_sym_POUND_CARET, - STATE(2236), 1, - sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, - sym_meta_lit, - STATE(2424), 1, - aux_sym_list_lit_repeat1, - STATE(1369), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [174763] = 3, + anon_sym_COMMA, + [160795] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3211), 1, + ACTIONS(4254), 1, anon_sym_COLON, - ACTIONS(3209), 9, + ACTIONS(4252), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -153444,12 +151596,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [174781] = 3, + [160813] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3239), 1, + ACTIONS(4338), 1, anon_sym_COLON, - ACTIONS(3237), 9, + ACTIONS(4336), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -153459,12 +151611,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [174799] = 3, + [160831] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3391), 1, + ACTIONS(4282), 1, anon_sym_COLON, - ACTIONS(3389), 9, + ACTIONS(4280), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -153474,33 +151626,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [174817] = 9, + [160849] = 9, ACTIONS(47), 1, sym_block_comment, - ACTIONS(631), 1, + ACTIONS(576), 1, anon_sym_LPAREN, - ACTIONS(3622), 1, + ACTIONS(4703), 1, anon_sym_CARET, - ACTIONS(3624), 1, + ACTIONS(4705), 1, anon_sym_POUND_CARET, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, + STATE(2352), 1, sym_meta_lit, - STATE(2424), 1, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2426), 1, aux_sym_list_lit_repeat1, - STATE(2253), 3, + STATE(1055), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [174847] = 3, + [160879] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3263), 1, + ACTIONS(4286), 1, anon_sym_COLON, - ACTIONS(3261), 9, + ACTIONS(4284), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -153510,127 +151662,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [174865] = 9, + [160897] = 9, ACTIONS(47), 1, sym_block_comment, - ACTIONS(541), 1, + ACTIONS(869), 1, anon_sym_LPAREN, - ACTIONS(3622), 1, + ACTIONS(4703), 1, anon_sym_CARET, - ACTIONS(3624), 1, + ACTIONS(4705), 1, anon_sym_POUND_CARET, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, + STATE(2352), 1, sym_meta_lit, - STATE(2424), 1, - aux_sym_list_lit_repeat1, - STATE(838), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [174895] = 9, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(277), 1, - anon_sym_LPAREN, - ACTIONS(3622), 1, - anon_sym_CARET, - ACTIONS(3624), 1, - anon_sym_POUND_CARET, - STATE(2236), 1, - sym__metadata_lit, - STATE(2342), 1, + STATE(2353), 1, sym_old_meta_lit, - STATE(2343), 1, - sym_meta_lit, - STATE(2424), 1, + STATE(2426), 1, aux_sym_list_lit_repeat1, - STATE(2074), 3, + STATE(2318), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [174925] = 5, + [160927] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4858), 1, - anon_sym_POUND_, - ACTIONS(4855), 2, + ACTIONS(4290), 1, + anon_sym_COLON, + ACTIONS(4288), 9, sym__ws, sym_comment, - STATE(2397), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(3029), 4, + 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, - [174947] = 9, + [160945] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(741), 1, - anon_sym_LPAREN, - ACTIONS(3622), 1, + ACTIONS(4290), 1, + anon_sym_COLON, + ACTIONS(4288), 9, + sym__ws, + sym_comment, + anon_sym_POUND_, + anon_sym_COLON_COLON, + aux_sym_sym_lit_token1, anon_sym_CARET, - ACTIONS(3624), 1, anon_sym_POUND_CARET, - STATE(2236), 1, - sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, - sym_meta_lit, - STATE(2424), 1, - aux_sym_list_lit_repeat1, - STATE(1792), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [174977] = 3, + anon_sym_LPAREN, + anon_sym_COMMA, + [160963] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4861), 1, - aux_sym_num_lit_token2, - ACTIONS(3055), 9, + ACTIONS(4146), 1, + anon_sym_COLON, + ACTIONS(4144), 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_RPAREN, - anon_sym_LBRACE, - anon_sym_POUND_QMARK, - [174995] = 8, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(3954), 1, - aux_sym_num_lit_token1, - ACTIONS(3962), 1, - anon_sym_SQUOTE, - ACTIONS(4865), 1, anon_sym_COMMA, - ACTIONS(4869), 1, - aux_sym_format_directive_type_token11, - ACTIONS(4863), 2, - anon_sym_COLON, - anon_sym_AT, - ACTIONS(4867), 2, - anon_sym_AT_COLON, - anon_sym_COLON_AT, - STATE(2381), 2, - sym__format_token, - aux_sym_format_modifiers_repeat1, - [175023] = 3, + [160981] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3091), 1, + ACTIONS(4322), 1, anon_sym_COLON, - ACTIONS(3089), 9, + ACTIONS(4320), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -153640,12 +151743,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [175041] = 3, + [160999] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3099), 1, + ACTIONS(4326), 1, anon_sym_COLON, - ACTIONS(3097), 9, + ACTIONS(4324), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -153655,12 +151758,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [175059] = 3, + [161017] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3107), 1, + ACTIONS(4382), 1, anon_sym_COLON, - ACTIONS(3105), 9, + ACTIONS(4380), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -153670,45 +151773,48 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [175077] = 4, + [161035] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4871), 1, + ACTIONS(4482), 1, anon_sym_COLON, - ACTIONS(4873), 1, - anon_sym_COLON_COLON, - ACTIONS(3281), 8, + ACTIONS(4480), 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, - [175097] = 5, + [161053] = 9, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4878), 1, - anon_sym_POUND_, - ACTIONS(4875), 2, - sym__ws, - sym_comment, - STATE(2405), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - ACTIONS(3029), 4, - aux_sym_num_lit_token1, - anon_sym_cl, - anon_sym_EQ, - anon_sym_into, - [175119] = 3, + ACTIONS(819), 1, + anon_sym_LPAREN, + ACTIONS(4703), 1, + anon_sym_CARET, + ACTIONS(4705), 1, + anon_sym_POUND_CARET, + STATE(2237), 1, + sym__metadata_lit, + STATE(2352), 1, + sym_meta_lit, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2426), 1, + aux_sym_list_lit_repeat1, + STATE(1732), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [161083] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3427), 1, + ACTIONS(4142), 1, anon_sym_COLON, - ACTIONS(3425), 9, + ACTIONS(4140), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -153718,63 +151824,65 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [175137] = 3, + [161101] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3147), 1, + ACTIONS(5927), 1, anon_sym_COLON, - ACTIONS(3145), 9, + ACTIONS(5929), 1, + anon_sym_COLON_COLON, + ACTIONS(4340), 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, - [175155] = 3, + [161121] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3343), 1, + ACTIONS(5927), 1, anon_sym_COLON, - ACTIONS(3341), 9, + ACTIONS(5929), 1, + anon_sym_COLON_COLON, + ACTIONS(4304), 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, - [175173] = 9, + [161141] = 9, ACTIONS(47), 1, sym_block_comment, - ACTIONS(557), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(3622), 1, + ACTIONS(4703), 1, anon_sym_CARET, - ACTIONS(3624), 1, + ACTIONS(4705), 1, anon_sym_POUND_CARET, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, + STATE(2352), 1, sym_meta_lit, - STATE(2424), 1, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2426), 1, aux_sym_list_lit_repeat1, - STATE(1067), 3, + STATE(1366), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [175203] = 3, + [161171] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3103), 1, + ACTIONS(4190), 1, anon_sym_COLON, - ACTIONS(3101), 9, + ACTIONS(4188), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -153784,12 +151892,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [175221] = 3, + [161189] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3067), 1, + ACTIONS(4250), 1, anon_sym_COLON, - ACTIONS(3065), 9, + ACTIONS(4248), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -153799,12 +151907,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [175239] = 3, + [161207] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3167), 1, + ACTIONS(4270), 1, anon_sym_COLON, - ACTIONS(3165), 9, + ACTIONS(4268), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -153814,12 +151922,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [175257] = 3, + [161225] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3171), 1, + ACTIONS(4422), 1, anon_sym_COLON, - ACTIONS(3169), 9, + ACTIONS(4420), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -153829,27 +151937,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [175275] = 3, + [161243] = 9, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3243), 1, - anon_sym_COLON, - ACTIONS(3241), 9, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - aux_sym_sym_lit_token1, + ACTIONS(775), 1, + anon_sym_LPAREN, + ACTIONS(4703), 1, anon_sym_CARET, + ACTIONS(4705), 1, anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_COMMA, - [175293] = 3, + STATE(2237), 1, + sym__metadata_lit, + STATE(2352), 1, + sym_meta_lit, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2426), 1, + aux_sym_list_lit_repeat1, + STATE(914), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [161273] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3247), 1, + ACTIONS(4394), 1, anon_sym_COLON, - ACTIONS(3245), 9, + ACTIONS(4392), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -153859,12 +151973,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [175311] = 3, + [161291] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3291), 1, + ACTIONS(4390), 1, anon_sym_COLON, - ACTIONS(3289), 9, + ACTIONS(4388), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -153874,12 +151988,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [175329] = 3, + [161309] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3287), 1, + ACTIONS(4386), 1, anon_sym_COLON, - ACTIONS(3285), 9, + ACTIONS(4384), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -153889,27 +152003,46 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [175347] = 3, + [161327] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3319), 1, - anon_sym_COLON, - ACTIONS(3317), 9, + ACTIONS(5931), 1, + aux_sym_num_lit_token2, + ACTIONS(4134), 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_RPAREN, + anon_sym_LBRACE, + anon_sym_POUND_QMARK, + [161345] = 7, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(5933), 1, + aux_sym_num_lit_token1, + ACTIONS(5938), 1, + anon_sym_SQUOTE, + ACTIONS(5941), 1, anon_sym_COMMA, - [175365] = 3, + ACTIONS(5936), 2, + anon_sym_COLON, + anon_sym_AT, + STATE(2412), 2, + sym__format_token, + aux_sym_format_modifiers_repeat1, + ACTIONS(5944), 3, + anon_sym_AT_COLON, + anon_sym_COLON_AT, + aux_sym_format_directive_type_token11, + [161371] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3251), 1, + ACTIONS(4262), 1, anon_sym_COLON, - ACTIONS(3249), 9, + ACTIONS(4260), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -153919,49 +152052,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [175383] = 9, + [161389] = 9, ACTIONS(47), 1, sym_block_comment, - ACTIONS(631), 1, + ACTIONS(869), 1, anon_sym_LPAREN, - ACTIONS(3622), 1, + ACTIONS(4703), 1, anon_sym_CARET, - ACTIONS(3624), 1, + ACTIONS(4705), 1, anon_sym_POUND_CARET, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, + STATE(2352), 1, sym_meta_lit, - STATE(2424), 1, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2426), 1, aux_sym_list_lit_repeat1, - STATE(1369), 3, + STATE(1823), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [175413] = 4, + [161419] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4871), 1, - anon_sym_COLON, - ACTIONS(4873), 1, - anon_sym_COLON_COLON, - ACTIONS(3073), 8, + ACTIONS(5949), 1, + anon_sym_POUND_, + ACTIONS(5946), 2, sym__ws, sym_comment, - anon_sym_POUND_, - aux_sym_sym_lit_token1, + STATE(2415), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + ACTIONS(4122), 4, anon_sym_CARET, anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [175433] = 3, + [161441] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3091), 1, + ACTIONS(4266), 1, anon_sym_COLON, - ACTIONS(3089), 9, + ACTIONS(4264), 9, sym__ws, sym_comment, anon_sym_POUND_, @@ -153971,17794 +152105,17825 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND_CARET, anon_sym_LPAREN, anon_sym_COMMA, - [175451] = 3, + [161459] = 9, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3315), 1, - anon_sym_COLON, - ACTIONS(3313), 9, - sym__ws, - sym_comment, - anon_sym_POUND_, - anon_sym_COLON_COLON, - aux_sym_sym_lit_token1, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(4703), 1, + anon_sym_CARET, + ACTIONS(4705), 1, + anon_sym_POUND_CARET, + STATE(2237), 1, + sym__metadata_lit, + STATE(2352), 1, + sym_meta_lit, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2426), 1, + aux_sym_list_lit_repeat1, + STATE(2318), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [161489] = 9, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4703), 1, anon_sym_CARET, + ACTIONS(4705), 1, anon_sym_POUND_CARET, + STATE(2237), 1, + sym__metadata_lit, + STATE(2352), 1, + sym_meta_lit, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2426), 1, + aux_sym_list_lit_repeat1, + STATE(1541), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [161519] = 9, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(536), 1, anon_sym_LPAREN, + ACTIONS(4703), 1, + anon_sym_CARET, + ACTIONS(4705), 1, + anon_sym_POUND_CARET, + STATE(2237), 1, + sym__metadata_lit, + STATE(2352), 1, + sym_meta_lit, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2426), 1, + aux_sym_list_lit_repeat1, + STATE(1918), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [161549] = 8, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(5037), 1, + aux_sym_num_lit_token1, + ACTIONS(5045), 1, + anon_sym_SQUOTE, + ACTIONS(5954), 1, anon_sym_COMMA, - [175469] = 8, + ACTIONS(5958), 1, + aux_sym_format_directive_type_token11, + ACTIONS(5952), 2, + anon_sym_COLON, + anon_sym_AT, + ACTIONS(5956), 2, + anon_sym_AT_COLON, + anon_sym_COLON_AT, + STATE(2412), 2, + sym__format_token, + aux_sym_format_modifiers_repeat1, + [161577] = 9, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4881), 1, + ACTIONS(604), 1, + anon_sym_LPAREN, + ACTIONS(4703), 1, anon_sym_CARET, - ACTIONS(4884), 1, + ACTIONS(4705), 1, anon_sym_POUND_CARET, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2342), 1, + STATE(2352), 1, + sym_meta_lit, + STATE(2353), 1, sym_old_meta_lit, - STATE(2343), 1, + STATE(2426), 1, + aux_sym_list_lit_repeat1, + STATE(2318), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [161607] = 9, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(288), 1, + anon_sym_LPAREN, + ACTIONS(4703), 1, + anon_sym_CARET, + ACTIONS(4705), 1, + anon_sym_POUND_CARET, + STATE(2237), 1, + sym__metadata_lit, + STATE(2352), 1, sym_meta_lit, - STATE(2424), 1, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2426), 1, aux_sym_list_lit_repeat1, - ACTIONS(4782), 3, + STATE(1823), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [161637] = 9, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(921), 1, anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_POUND_QMARK, - [175496] = 10, + ACTIONS(4703), 1, + anon_sym_CARET, + ACTIONS(4705), 1, + anon_sym_POUND_CARET, + STATE(2237), 1, + sym__metadata_lit, + STATE(2352), 1, + sym_meta_lit, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2426), 1, + aux_sym_list_lit_repeat1, + STATE(1245), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [161667] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3622), 1, + ACTIONS(4703), 1, anon_sym_CARET, - ACTIONS(3624), 1, + ACTIONS(4705), 1, anon_sym_POUND_CARET, - ACTIONS(4358), 1, + ACTIONS(5445), 1, anon_sym_LBRACE, - ACTIONS(4887), 1, + ACTIONS(5960), 1, anon_sym_POUND_QMARK, - STATE(2228), 1, + STATE(2226), 1, sym__bare_map_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2342), 1, - sym_old_meta_lit, - STATE(2343), 1, + STATE(2352), 1, sym_meta_lit, - STATE(2424), 1, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2426), 1, aux_sym_list_lit_repeat1, - [175527] = 10, + [161698] = 10, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3622), 1, + ACTIONS(4703), 1, anon_sym_CARET, - ACTIONS(3624), 1, + ACTIONS(4705), 1, anon_sym_POUND_CARET, - ACTIONS(4358), 1, + ACTIONS(5445), 1, anon_sym_LBRACE, - ACTIONS(4889), 1, + ACTIONS(5962), 1, anon_sym_POUND_QMARK, - STATE(2228), 1, + STATE(2226), 1, sym__bare_map_lit, - STATE(2236), 1, + STATE(2237), 1, sym__metadata_lit, - STATE(2342), 1, + STATE(2352), 1, + sym_meta_lit, + STATE(2353), 1, sym_old_meta_lit, - STATE(2343), 1, + STATE(2426), 1, + aux_sym_list_lit_repeat1, + [161729] = 8, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(5964), 1, + anon_sym_CARET, + ACTIONS(5967), 1, + anon_sym_POUND_CARET, + STATE(2237), 1, + sym__metadata_lit, + STATE(2352), 1, sym_meta_lit, - STATE(2424), 1, + STATE(2353), 1, + sym_old_meta_lit, + STATE(2426), 1, aux_sym_list_lit_repeat1, - [175558] = 6, + ACTIONS(5843), 3, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_POUND_QMARK, + [161756] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2969), 1, + STATE(3084), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(5970), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2561), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175580] = 6, + [161778] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(3149), 1, + STATE(3044), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(5976), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2585), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175602] = 6, + [161800] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4897), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2527), 1, + STATE(3001), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(5978), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2650), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175624] = 6, + [161822] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4897), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2530), 1, + STATE(3000), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(5980), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2643), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175646] = 6, + [161844] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4897), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2534), 1, + STATE(2999), 1, sym_num_lit, - ACTIONS(4899), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2429), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175668] = 6, + [161866] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4897), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2535), 1, + STATE(2997), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(5984), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2582), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175690] = 6, + [161888] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4897), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2537), 1, + STATE(2996), 1, sym_num_lit, - ACTIONS(4901), 2, + ACTIONS(5986), 2, sym__ws, sym_comment, - STATE(2430), 3, + STATE(2620), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175712] = 6, + [161910] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4897), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2538), 1, + STATE(2995), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175734] = 6, + [161932] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4897), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2540), 1, + STATE(2993), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(5988), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2590), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175756] = 6, + [161954] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4897), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2542), 1, + STATE(2992), 1, sym_num_lit, - ACTIONS(4903), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2432), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175778] = 6, + [161976] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4897), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2543), 1, + STATE(2988), 1, sym_num_lit, - ACTIONS(4905), 2, + ACTIONS(5990), 2, sym__ws, sym_comment, - STATE(2434), 3, + STATE(2431), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175800] = 6, + [161998] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4897), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2544), 1, + STATE(2987), 1, sym_num_lit, - ACTIONS(4907), 2, + ACTIONS(5992), 2, sym__ws, sym_comment, - STATE(2435), 3, + STATE(2434), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175822] = 6, + [162020] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4897), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2544), 1, + STATE(2986), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(5994), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2436), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175844] = 6, + [162042] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4897), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2546), 1, + STATE(2985), 1, sym_num_lit, - ACTIONS(4909), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2439), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175866] = 6, + [162064] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4897), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2549), 1, + STATE(2980), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(5996), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2440), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175888] = 6, + [162086] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4897), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2552), 1, + STATE(2930), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175910] = 6, + [162108] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4897), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2556), 1, + STATE(2926), 1, sym_num_lit, - ACTIONS(4911), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2441), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175932] = 6, + [162130] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4897), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2557), 1, + STATE(2921), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(5998), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2442), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175954] = 6, + [162152] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4897), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2559), 1, + STATE(2920), 1, sym_num_lit, - ACTIONS(4913), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2442), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175976] = 6, + [162174] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4897), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2560), 1, + STATE(2918), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [175998] = 6, + [162196] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4897), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2562), 1, + STATE(2915), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(6000), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2443), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176020] = 6, + [162218] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4897), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2564), 1, + STATE(2914), 1, sym_num_lit, - ACTIONS(4915), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2444), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176042] = 6, + [162240] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4897), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2565), 1, + STATE(2912), 1, sym_num_lit, - ACTIONS(4917), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2446), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176064] = 6, + [162262] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4897), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2566), 1, + STATE(2909), 1, sym_num_lit, - ACTIONS(4919), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2447), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176086] = 6, + [162284] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4897), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2566), 1, + STATE(2906), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(6002), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2445), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176108] = 6, + [162306] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4897), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2568), 1, + STATE(2905), 1, sym_num_lit, - ACTIONS(4921), 2, + ACTIONS(6004), 2, sym__ws, sym_comment, - STATE(2451), 3, + STATE(2446), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176130] = 6, + [162328] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4897), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2571), 1, + STATE(2904), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176152] = 6, + [162350] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4897), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2574), 1, + STATE(2902), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(6006), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2448), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176174] = 6, + [162372] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4897), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2578), 1, + STATE(2901), 1, sym_num_lit, - ACTIONS(4923), 2, + ACTIONS(6008), 2, sym__ws, sym_comment, - STATE(2453), 3, + STATE(2449), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176196] = 6, + [162394] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4897), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2579), 1, + STATE(2900), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176218] = 6, + [162416] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4897), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2581), 1, + STATE(2898), 1, sym_num_lit, - ACTIONS(4925), 2, + ACTIONS(6010), 2, sym__ws, sym_comment, - STATE(2454), 3, + STATE(2450), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176240] = 6, + [162438] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4897), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2582), 1, + STATE(2897), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176262] = 6, + [162460] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4897), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2584), 1, + STATE(2893), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(6012), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2453), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176284] = 6, + [162482] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4897), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2586), 1, + STATE(2892), 1, sym_num_lit, - ACTIONS(4927), 2, + ACTIONS(6014), 2, sym__ws, sym_comment, STATE(2456), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176306] = 6, + [162504] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4897), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2587), 1, + STATE(2891), 1, sym_num_lit, - ACTIONS(4929), 2, + ACTIONS(6016), 2, sym__ws, sym_comment, STATE(2458), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176328] = 6, + [162526] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4897), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2588), 1, + STATE(2890), 1, sym_num_lit, - ACTIONS(4931), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2459), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176350] = 6, + [162548] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4897), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2588), 1, + STATE(2885), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(6018), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2462), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176372] = 6, + [162570] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4897), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2590), 1, + STATE(2835), 1, sym_num_lit, - ACTIONS(4933), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2463), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176394] = 6, + [162592] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4897), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2593), 1, + STATE(2831), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176416] = 6, + [162614] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4897), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2596), 1, + STATE(2826), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(6020), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2464), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176438] = 6, + [162636] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4897), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2600), 1, + STATE(2825), 1, sym_num_lit, - ACTIONS(4935), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2465), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176460] = 6, + [162658] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4897), 1, + ACTIONS(6022), 1, aux_sym_num_lit_token1, - STATE(2601), 1, + STATE(2541), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176482] = 6, + [162680] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4897), 1, + ACTIONS(6022), 1, aux_sym_num_lit_token1, - STATE(2603), 1, + STATE(2538), 1, sym_num_lit, - ACTIONS(4937), 2, + ACTIONS(6024), 2, sym__ws, sym_comment, - STATE(2466), 3, + STATE(2470), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176504] = 6, + [162702] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4897), 1, + ACTIONS(6022), 1, aux_sym_num_lit_token1, - STATE(2605), 1, + STATE(2536), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176526] = 6, + [162724] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4897), 1, - aux_sym_num_lit_token1, - STATE(2607), 1, - sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(6026), 1, + anon_sym_cl, + ACTIONS(6028), 1, + anon_sym_EQ, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176548] = 6, + [162746] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4897), 1, + ACTIONS(6022), 1, aux_sym_num_lit_token1, - STATE(2609), 1, + STATE(2536), 1, sym_num_lit, - ACTIONS(4939), 2, + ACTIONS(6030), 2, sym__ws, sym_comment, - STATE(2468), 3, + STATE(2564), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176570] = 6, + [162768] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4897), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2610), 1, + STATE(2823), 1, sym_num_lit, - ACTIONS(4941), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2470), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176592] = 6, + [162790] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4897), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2611), 1, + STATE(2820), 1, sym_num_lit, - ACTIONS(4943), 2, + ACTIONS(6032), 2, sym__ws, sym_comment, - STATE(2471), 3, + STATE(2465), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176614] = 6, + [162812] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4897), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2611), 1, + STATE(2819), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176636] = 6, + [162834] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4897), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2613), 1, + STATE(2817), 1, sym_num_lit, - ACTIONS(4945), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2475), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176658] = 6, + [162856] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4897), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2616), 1, + STATE(2814), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176680] = 6, + [162878] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4897), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2619), 1, + STATE(2811), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(6034), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2467), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176702] = 6, + [162900] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4897), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2623), 1, + STATE(2810), 1, sym_num_lit, - ACTIONS(4947), 2, + ACTIONS(6036), 2, sym__ws, sym_comment, - STATE(2477), 3, + STATE(2473), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176724] = 6, + [162922] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4897), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2624), 1, + STATE(2753), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176746] = 6, + [162944] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4897), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2626), 1, + STATE(2807), 1, sym_num_lit, - ACTIONS(4949), 2, + ACTIONS(6038), 2, sym__ws, sym_comment, - STATE(2478), 3, + STATE(2475), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176768] = 6, + [162966] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4897), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2627), 1, + STATE(2806), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(6040), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2476), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176790] = 6, + [162988] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4897), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2629), 1, + STATE(2805), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176812] = 6, + [163010] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4897), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2631), 1, + STATE(2803), 1, sym_num_lit, - ACTIONS(4951), 2, + ACTIONS(6042), 2, sym__ws, sym_comment, - STATE(2480), 3, + STATE(2477), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176834] = 6, + [163032] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4897), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2632), 1, + STATE(2802), 1, sym_num_lit, - ACTIONS(4953), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2482), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176856] = 6, + [163054] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4897), 1, + ACTIONS(6022), 1, aux_sym_num_lit_token1, - STATE(2633), 1, + STATE(2535), 1, sym_num_lit, - ACTIONS(4955), 2, + ACTIONS(6044), 2, sym__ws, sym_comment, - STATE(2483), 3, + STATE(2565), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176878] = 6, + [163076] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4897), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2633), 1, + STATE(2799), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(6046), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2480), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176900] = 6, + [163098] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4897), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2635), 1, + STATE(2798), 1, sym_num_lit, - ACTIONS(4957), 2, + ACTIONS(6048), 2, sym__ws, sym_comment, - STATE(2487), 3, + STATE(2483), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176922] = 6, + [163120] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4897), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2638), 1, + STATE(2797), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(6050), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2485), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176944] = 6, + [163142] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4897), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2641), 1, + STATE(2796), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176966] = 6, + [163164] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4897), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2645), 1, + STATE(2792), 1, sym_num_lit, - ACTIONS(4959), 2, + ACTIONS(6052), 2, sym__ws, sym_comment, - STATE(2489), 3, + STATE(2490), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [176988] = 6, + [163186] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4897), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2646), 1, + STATE(2760), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177010] = 6, + [163208] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4897), 1, - aux_sym_num_lit_token1, - STATE(2648), 1, - sym_num_lit, - ACTIONS(4961), 2, + ACTIONS(6056), 1, + anon_sym_cl, + ACTIONS(6058), 1, + anon_sym_EQ, + ACTIONS(6054), 2, sym__ws, sym_comment, - STATE(2490), 3, + STATE(2471), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177032] = 6, + [163230] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4897), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2649), 1, + STATE(2756), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177054] = 6, + [163252] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4897), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2651), 1, + STATE(2850), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(6060), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2492), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177076] = 6, + [163274] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4897), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2653), 1, + STATE(2851), 1, sym_num_lit, - ACTIONS(4963), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2492), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177098] = 6, + [163296] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4897), 1, - aux_sym_num_lit_token1, - STATE(2654), 1, - sym_num_lit, - ACTIONS(4965), 2, + ACTIONS(6062), 1, + anon_sym_cl, + ACTIONS(6064), 1, + anon_sym_EQ, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2494), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177120] = 6, + [163318] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4897), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2655), 1, + STATE(2854), 1, sym_num_lit, - ACTIONS(4967), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2495), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177142] = 6, + [163340] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4897), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2655), 1, + STATE(2861), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(6066), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2494), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177164] = 6, + [163362] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4897), 1, - aux_sym_num_lit_token1, - STATE(2657), 1, - sym_num_lit, - ACTIONS(4969), 2, + ACTIONS(6068), 1, + anon_sym_cl, + ACTIONS(6070), 1, + anon_sym_EQ, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2499), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177186] = 6, + [163384] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4897), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2660), 1, + STATE(2865), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177208] = 6, + [163406] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4897), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2663), 1, + STATE(2868), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177230] = 6, + [163428] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4897), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2667), 1, + STATE(2871), 1, sym_num_lit, - ACTIONS(4971), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2501), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177252] = 6, + [163450] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4897), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2668), 1, + STATE(2875), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(6072), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2496), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177274] = 6, + [163472] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4897), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2670), 1, + STATE(2881), 1, sym_num_lit, - ACTIONS(4973), 2, + ACTIONS(6074), 2, sym__ws, sym_comment, - STATE(2502), 3, + STATE(2498), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177296] = 6, + [163494] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4897), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2671), 1, + STATE(2882), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177318] = 6, + [163516] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4897), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2673), 1, + STATE(2884), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(6076), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2501), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177340] = 6, + [163538] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4897), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2675), 1, + STATE(2886), 1, sym_num_lit, - ACTIONS(4975), 2, + ACTIONS(6078), 2, sym__ws, sym_comment, - STATE(2504), 3, + STATE(2502), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177362] = 6, + [163560] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4897), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2677), 1, + STATE(2887), 1, sym_num_lit, - ACTIONS(4977), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2506), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177384] = 6, + [163582] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4897), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2678), 1, + STATE(2934), 1, sym_num_lit, - ACTIONS(4979), 2, + ACTIONS(6080), 2, sym__ws, sym_comment, - STATE(2507), 3, + STATE(2503), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177406] = 6, + [163604] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4897), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2678), 1, + STATE(2840), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177428] = 6, + [163626] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4897), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2681), 1, + STATE(2948), 1, sym_num_lit, - ACTIONS(4981), 2, + ACTIONS(6082), 2, sym__ws, sym_comment, - STATE(2511), 3, + STATE(2506), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177450] = 6, + [163648] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4897), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2685), 1, + STATE(2952), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(6084), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2509), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177472] = 6, + [163670] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4897), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2688), 1, + STATE(2953), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(6086), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2511), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177494] = 6, + [163692] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4897), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2692), 1, + STATE(2956), 1, sym_num_lit, - ACTIONS(4983), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2513), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177516] = 6, + [163714] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4897), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2693), 1, + STATE(2963), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(6088), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2515), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177538] = 6, + [163736] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4897), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2695), 1, + STATE(3092), 1, sym_num_lit, - ACTIONS(4985), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2514), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177560] = 6, + [163758] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4897), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2696), 1, + STATE(3104), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177582] = 6, + [163780] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4897), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2698), 1, + STATE(3113), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(6090), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2517), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177604] = 6, + [163802] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4897), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2700), 1, + STATE(3117), 1, sym_num_lit, - ACTIONS(4987), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2516), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177626] = 6, + [163824] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4897), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2701), 1, + STATE(3120), 1, sym_num_lit, - ACTIONS(4989), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2518), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177648] = 6, + [163846] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4897), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2702), 1, + STATE(3123), 1, sym_num_lit, - ACTIONS(4991), 2, + ACTIONS(6092), 2, sym__ws, sym_comment, - STATE(2519), 3, + STATE(2518), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177670] = 6, + [163868] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4897), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2702), 1, + STATE(3125), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177692] = 6, + [163890] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4897), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2704), 1, + STATE(3127), 1, sym_num_lit, - ACTIONS(4993), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2523), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177714] = 6, + [163912] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(3023), 1, + STATE(3130), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177736] = 6, + [163934] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(3019), 1, + STATE(3133), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(6094), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2520), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177758] = 6, + [163956] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(3014), 1, + STATE(3135), 1, sym_num_lit, - ACTIONS(4995), 2, + ACTIONS(6096), 2, sym__ws, sym_comment, - STATE(2525), 3, + STATE(2521), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177780] = 6, + [163978] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(3013), 1, + STATE(3137), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177802] = 6, + [164000] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(3011), 1, + STATE(3139), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(6098), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2523), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177824] = 6, + [164022] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(3008), 1, + STATE(3140), 1, sym_num_lit, - ACTIONS(4997), 2, + ACTIONS(6100), 2, sym__ws, sym_comment, - STATE(2526), 3, + STATE(2524), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177846] = 6, + [164044] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(3007), 1, + STATE(3141), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177868] = 6, + [164066] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(3005), 1, + STATE(3143), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(6102), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2525), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177890] = 6, + [164088] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(3002), 1, + STATE(3144), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177912] = 6, + [164110] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2999), 1, + STATE(3148), 1, sym_num_lit, - ACTIONS(4999), 2, + ACTIONS(6104), 2, sym__ws, sym_comment, STATE(2528), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177934] = 6, + [164132] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2998), 1, + STATE(3149), 1, sym_num_lit, - ACTIONS(5001), 2, + ACTIONS(6106), 2, sym__ws, sym_comment, - STATE(2529), 3, + STATE(2531), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177956] = 6, + [164154] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2997), 1, + STATE(3150), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(6108), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2533), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [177978] = 6, + [164176] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2995), 1, + STATE(3151), 1, sym_num_lit, - ACTIONS(5003), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2531), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178000] = 6, + [164198] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2994), 1, + STATE(3156), 1, sym_num_lit, - ACTIONS(5005), 2, + ACTIONS(6110), 2, sym__ws, sym_comment, - STATE(2532), 3, + STATE(2537), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178022] = 6, + [164220] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2993), 1, + STATE(3201), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178044] = 6, + [164242] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2991), 1, + STATE(3205), 1, sym_num_lit, - ACTIONS(5007), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2533), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178066] = 6, + [164264] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2990), 1, + STATE(3212), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(6112), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2539), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178088] = 6, + [164286] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2986), 1, + STATE(3210), 1, sym_num_lit, - ACTIONS(5009), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2536), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178110] = 6, + [164308] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2985), 1, + STATE(3194), 1, sym_num_lit, - ACTIONS(5011), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2539), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178132] = 6, + [164330] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2984), 1, + STATE(3190), 1, sym_num_lit, - ACTIONS(5013), 2, + ACTIONS(6114), 2, sym__ws, sym_comment, - STATE(2541), 3, + STATE(2540), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178154] = 6, + [164352] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2983), 1, + STATE(3189), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178176] = 6, + [164374] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2978), 1, + STATE(3187), 1, sym_num_lit, - ACTIONS(5015), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2545), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178198] = 6, + [164396] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2929), 1, + STATE(3179), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178220] = 6, + [164418] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2925), 1, + STATE(3176), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(6116), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2542), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178242] = 6, + [164440] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2920), 1, + STATE(3175), 1, sym_num_lit, - ACTIONS(5017), 2, + ACTIONS(6118), 2, sym__ws, sym_comment, - STATE(2547), 3, + STATE(2543), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178264] = 6, + [164462] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2919), 1, + STATE(3174), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178286] = 6, + [164484] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2917), 1, + STATE(3172), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(6120), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2545), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178308] = 6, + [164506] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2914), 1, + STATE(3171), 1, sym_num_lit, - ACTIONS(5019), 2, + ACTIONS(6122), 2, sym__ws, sym_comment, - STATE(2548), 3, + STATE(2546), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178330] = 6, + [164528] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2913), 1, + STATE(3170), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178352] = 6, + [164550] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2911), 1, + STATE(3167), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(6124), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2547), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178374] = 6, + [164572] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2908), 1, + STATE(3166), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178396] = 6, + [164594] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2905), 1, + STATE(3162), 1, sym_num_lit, - ACTIONS(5021), 2, + ACTIONS(6126), 2, sym__ws, sym_comment, STATE(2550), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178418] = 6, + [164616] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2904), 1, + STATE(3160), 1, sym_num_lit, - ACTIONS(5023), 2, + ACTIONS(6128), 2, sym__ws, sym_comment, - STATE(2551), 3, + STATE(2553), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178440] = 6, + [164638] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2903), 1, + STATE(3159), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(6130), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2555), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178462] = 6, + [164660] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2901), 1, + STATE(3136), 1, sym_num_lit, - ACTIONS(5025), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2553), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178484] = 6, + [164682] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2900), 1, + STATE(3116), 1, sym_num_lit, - ACTIONS(5027), 2, + ACTIONS(6132), 2, sym__ws, sym_comment, - STATE(2554), 3, + STATE(2559), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178506] = 6, + [164704] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2899), 1, + STATE(3098), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178528] = 6, + [164726] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2897), 1, + STATE(3089), 1, sym_num_lit, - ACTIONS(5029), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2555), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178550] = 6, + [164748] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(6022), 1, aux_sym_num_lit_token1, - STATE(2896), 1, + STATE(2510), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178572] = 6, + [164770] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(6022), 1, aux_sym_num_lit_token1, - STATE(2892), 1, + STATE(2532), 1, sym_num_lit, - ACTIONS(5031), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2558), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178594] = 6, + [164792] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(6022), 1, aux_sym_num_lit_token1, - STATE(2891), 1, + STATE(2530), 1, sym_num_lit, - ACTIONS(5033), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2561), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178616] = 6, + [164814] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(6022), 1, aux_sym_num_lit_token1, - STATE(2890), 1, + STATE(2534), 1, sym_num_lit, - ACTIONS(5035), 2, + ACTIONS(6134), 2, sym__ws, sym_comment, - STATE(2563), 3, + STATE(2568), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178638] = 6, + [164836] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(6022), 1, aux_sym_num_lit_token1, - STATE(2889), 1, + STATE(2529), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(6136), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2594), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178660] = 6, + [164858] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(6022), 1, aux_sym_num_lit_token1, - STATE(2884), 1, + STATE(2527), 1, sym_num_lit, - ACTIONS(5037), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2567), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178682] = 6, + [164880] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2835), 1, + STATE(3083), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178704] = 6, + [164902] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2831), 1, + STATE(3078), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178726] = 6, + [164924] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2826), 1, + STATE(3075), 1, sym_num_lit, - ACTIONS(5039), 2, + ACTIONS(6138), 2, sym__ws, sym_comment, - STATE(2569), 3, + STATE(2562), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178748] = 6, + [164946] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, - aux_sym_num_lit_token1, - STATE(2825), 1, - sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(6140), 1, + anon_sym_cl, + ACTIONS(6142), 1, + anon_sym_EQ, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178770] = 6, + [164968] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2823), 1, + STATE(3074), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178792] = 6, + [164990] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2820), 1, + STATE(3072), 1, sym_num_lit, - ACTIONS(5041), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2570), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178814] = 6, + [165012] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2819), 1, + STATE(3069), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178836] = 6, + [165034] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2817), 1, + STATE(3066), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(6144), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2569), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178858] = 6, + [165056] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2814), 1, + STATE(3062), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(6146), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2570), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178880] = 6, + [165078] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2811), 1, + STATE(3061), 1, sym_num_lit, - ACTIONS(5043), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2572), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178902] = 6, + [165100] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2810), 1, + STATE(3059), 1, sym_num_lit, - ACTIONS(5045), 2, + ACTIONS(6148), 2, sym__ws, sym_comment, STATE(2573), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178924] = 6, + [165122] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2809), 1, + STATE(3070), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(6150), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2574), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178946] = 6, + [165144] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(6022), 1, aux_sym_num_lit_token1, - STATE(2807), 1, + STATE(2526), 1, sym_num_lit, - ACTIONS(5047), 2, + ACTIONS(6152), 2, sym__ws, sym_comment, - STATE(2575), 3, + STATE(2595), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178968] = 6, + [165166] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2806), 1, + STATE(3009), 1, sym_num_lit, - ACTIONS(5049), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2576), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [178990] = 6, + [165188] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2805), 1, + STATE(3058), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179012] = 6, + [165210] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2803), 1, + STATE(3053), 1, sym_num_lit, - ACTIONS(5051), 2, + ACTIONS(6154), 2, sym__ws, sym_comment, - STATE(2577), 3, + STATE(2575), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179034] = 6, + [165232] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2802), 1, + STATE(3051), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179056] = 6, + [165254] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2798), 1, + STATE(3047), 1, sym_num_lit, - ACTIONS(5053), 2, + ACTIONS(6156), 2, sym__ws, sym_comment, - STATE(2580), 3, + STATE(2578), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179078] = 6, + [165276] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, - aux_sym_num_lit_token1, - STATE(2797), 1, - sym_num_lit, - ACTIONS(5055), 2, + ACTIONS(6160), 1, + anon_sym_cl, + ACTIONS(6162), 1, + anon_sym_EQ, + ACTIONS(6158), 2, sym__ws, sym_comment, - STATE(2583), 3, + STATE(2497), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179100] = 6, + [165298] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2796), 1, + STATE(3046), 1, sym_num_lit, - ACTIONS(5057), 2, + ACTIONS(6164), 2, sym__ws, sym_comment, - STATE(2585), 3, + STATE(2583), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179122] = 6, + [165320] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, - aux_sym_num_lit_token1, - STATE(2795), 1, - sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(6168), 1, + anon_sym_cl, + ACTIONS(6170), 1, + anon_sym_EQ, + ACTIONS(6166), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2500), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179144] = 6, + [165342] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2790), 1, + STATE(3004), 1, sym_num_lit, - ACTIONS(5059), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2589), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179166] = 6, + [165364] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2872), 1, + STATE(3042), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179188] = 6, + [165386] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2886), 1, + STATE(3040), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(6172), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2591), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179210] = 6, + [165408] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, - aux_sym_num_lit_token1, - STATE(2958), 1, - sym_num_lit, - ACTIONS(5061), 2, + ACTIONS(6174), 1, + anon_sym_cl, + ACTIONS(6176), 1, + anon_sym_EQ, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2591), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179232] = 6, + [165430] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(6022), 1, aux_sym_num_lit_token1, - STATE(2963), 1, + STATE(2522), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179254] = 6, + [165452] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(6022), 1, aux_sym_num_lit_token1, - STATE(2965), 1, + STATE(2519), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179276] = 6, + [165474] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2971), 1, + STATE(3105), 1, sym_num_lit, - ACTIONS(5063), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2592), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179298] = 6, + [165496] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2972), 1, + STATE(3036), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179320] = 6, + [165518] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2975), 1, + STATE(3032), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179342] = 6, + [165540] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(3026), 1, + STATE(2989), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(6178), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2597), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179364] = 6, + [165562] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(3046), 1, + STATE(2983), 1, sym_num_lit, - ACTIONS(5065), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2594), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179386] = 6, + [165584] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(3049), 1, + STATE(2981), 1, sym_num_lit, - ACTIONS(5067), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2595), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179408] = 6, + [165606] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(3050), 1, + STATE(2977), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(6180), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2598), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179430] = 6, + [165628] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(3055), 1, + STATE(2976), 1, sym_num_lit, - ACTIONS(5069), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2597), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179452] = 6, + [165650] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(5071), 1, - anon_sym_cl, - ACTIONS(5073), 1, - anon_sym_EQ, - ACTIONS(4891), 2, + ACTIONS(5974), 1, + aux_sym_num_lit_token1, + STATE(2974), 1, + sym_num_lit, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179474] = 6, + [165672] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(3056), 1, + STATE(2971), 1, sym_num_lit, - ACTIONS(5075), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2598), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179496] = 6, + [165694] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2936), 1, + STATE(2967), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(6182), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2600), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179518] = 6, + [165716] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(3088), 1, + STATE(2966), 1, sym_num_lit, - ACTIONS(5077), 2, + ACTIONS(6184), 2, sym__ws, sym_comment, - STATE(2599), 3, + STATE(2601), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179540] = 6, + [165738] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(3093), 1, + STATE(2965), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179562] = 6, + [165760] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(3135), 1, + STATE(2962), 1, sym_num_lit, - ACTIONS(5079), 2, + ACTIONS(6186), 2, sym__ws, sym_comment, - STATE(2602), 3, + STATE(2603), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179584] = 6, + [165782] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(3136), 1, + STATE(2961), 1, sym_num_lit, - ACTIONS(5081), 2, + ACTIONS(6188), 2, sym__ws, sym_comment, - STATE(2606), 3, + STATE(2604), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179606] = 6, + [165804] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(3137), 1, + STATE(2959), 1, sym_num_lit, - ACTIONS(5083), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2608), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179628] = 6, + [165826] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(3138), 1, + STATE(2957), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(6190), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2605), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179650] = 6, + [165848] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(3143), 1, + STATE(2955), 1, sym_num_lit, - ACTIONS(5085), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2612), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179672] = 6, + [165870] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(3198), 1, + STATE(2950), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(6192), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2608), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179694] = 6, + [165892] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(3202), 1, + STATE(2949), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(6194), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2611), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179716] = 6, + [165914] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(3207), 1, + STATE(2947), 1, sym_num_lit, - ACTIONS(5087), 2, + ACTIONS(6196), 2, sym__ws, sym_comment, - STATE(2614), 3, + STATE(2613), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179738] = 6, + [165936] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(3210), 1, + STATE(2944), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179760] = 6, + [165958] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(3166), 1, + STATE(2942), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(6198), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2617), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179782] = 6, + [165980] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(6022), 1, aux_sym_num_lit_token1, - STATE(3169), 1, + STATE(2516), 1, sym_num_lit, - ACTIONS(5089), 2, + ACTIONS(6200), 2, sym__ws, sym_comment, - STATE(2615), 3, + STATE(2621), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179804] = 6, + [166002] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(3170), 1, + STATE(3007), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179826] = 6, + [166024] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(6022), 1, aux_sym_num_lit_token1, - STATE(3172), 1, + STATE(2514), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179848] = 6, + [166046] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(6022), 1, aux_sym_num_lit_token1, - STATE(3175), 1, + STATE(2514), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(6202), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2563), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179870] = 6, + [166068] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(6022), 1, aux_sym_num_lit_token1, - STATE(3182), 1, + STATE(2513), 1, sym_num_lit, - ACTIONS(5091), 2, + ACTIONS(6204), 2, sym__ws, sym_comment, - STATE(2617), 3, + STATE(2626), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179892] = 6, + [166090] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(6022), 1, aux_sym_num_lit_token1, - STATE(3185), 1, + STATE(2512), 1, sym_num_lit, - ACTIONS(5093), 2, + ACTIONS(6206), 2, sym__ws, sym_comment, - STATE(2618), 3, + STATE(2628), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179914] = 6, + [166112] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(6022), 1, aux_sym_num_lit_token1, - STATE(3186), 1, + STATE(2438), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(6208), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2695), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179936] = 6, + [166134] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(6022), 1, aux_sym_num_lit_token1, - STATE(3188), 1, + STATE(2508), 1, sym_num_lit, - ACTIONS(5095), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2620), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179958] = 6, + [166156] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(6022), 1, aux_sym_num_lit_token1, - STATE(3189), 1, + STATE(2507), 1, sym_num_lit, - ACTIONS(5097), 2, + ACTIONS(6210), 2, sym__ws, sym_comment, - STATE(2621), 3, + STATE(2631), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [179980] = 6, + [166178] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(6022), 1, aux_sym_num_lit_token1, - STATE(3190), 1, + STATE(2505), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180002] = 6, + [166200] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(6022), 1, aux_sym_num_lit_token1, - STATE(3194), 1, + STATE(2504), 1, sym_num_lit, - ACTIONS(5099), 2, + ACTIONS(6212), 2, sym__ws, sym_comment, - STATE(2622), 3, + STATE(2632), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180024] = 6, + [166222] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(6022), 1, aux_sym_num_lit_token1, - STATE(3208), 1, + STATE(2584), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180046] = 6, + [166244] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(6022), 1, aux_sym_num_lit_token1, - STATE(3195), 1, + STATE(2499), 1, sym_num_lit, - ACTIONS(5101), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2625), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180068] = 6, + [166266] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(6022), 1, aux_sym_num_lit_token1, - STATE(3165), 1, + STATE(2495), 1, sym_num_lit, - ACTIONS(5103), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2628), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180090] = 6, + [166288] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(6022), 1, aux_sym_num_lit_token1, - STATE(3162), 1, + STATE(2491), 1, sym_num_lit, - ACTIONS(5105), 2, + ACTIONS(6214), 2, sym__ws, sym_comment, - STATE(2630), 3, + STATE(2636), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180112] = 6, + [166310] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(6022), 1, aux_sym_num_lit_token1, - STATE(3161), 1, + STATE(2665), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(6216), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2666), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180134] = 6, + [166332] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(3157), 1, + STATE(3010), 1, sym_num_lit, - ACTIONS(5107), 2, + ACTIONS(6218), 2, sym__ws, sym_comment, - STATE(2634), 3, + STATE(2655), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180156] = 6, + [166354] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(6022), 1, aux_sym_num_lit_token1, - STATE(3106), 1, + STATE(2489), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180178] = 6, + [166376] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(6022), 1, aux_sym_num_lit_token1, - STATE(3101), 1, + STATE(2489), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(6220), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2640), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180200] = 6, + [166398] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(6022), 1, aux_sym_num_lit_token1, - STATE(3095), 1, + STATE(2488), 1, sym_num_lit, - ACTIONS(5109), 2, + ACTIONS(6222), 2, sym__ws, sym_comment, - STATE(2636), 3, + STATE(2641), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180222] = 6, + [166420] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(6022), 1, aux_sym_num_lit_token1, - STATE(3092), 1, + STATE(2487), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(6224), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2644), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180244] = 6, + [166442] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(6022), 1, aux_sym_num_lit_token1, - STATE(3090), 1, + STATE(2484), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180266] = 6, + [166464] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(6022), 1, aux_sym_num_lit_token1, - STATE(3086), 1, + STATE(2482), 1, sym_num_lit, - ACTIONS(5111), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2637), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180288] = 6, + [166486] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(6022), 1, aux_sym_num_lit_token1, - STATE(3085), 1, + STATE(2481), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(6226), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2646), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180310] = 6, + [166508] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(3083), 1, + STATE(3013), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180332] = 6, + [166530] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(6022), 1, aux_sym_num_lit_token1, - STATE(3080), 1, + STATE(2479), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180354] = 6, + [166552] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(6022), 1, aux_sym_num_lit_token1, - STATE(3076), 1, + STATE(2478), 1, sym_num_lit, - ACTIONS(5113), 2, + ACTIONS(6228), 2, sym__ws, sym_comment, - STATE(2639), 3, + STATE(2647), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180376] = 6, + [166574] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(6022), 1, aux_sym_num_lit_token1, - STATE(3075), 1, + STATE(2474), 1, sym_num_lit, - ACTIONS(5115), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2640), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180398] = 6, + [166596] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(6022), 1, aux_sym_num_lit_token1, - STATE(3072), 1, + STATE(2466), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180420] = 6, + [166618] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(6022), 1, aux_sym_num_lit_token1, - STATE(3070), 1, + STATE(2463), 1, sym_num_lit, - ACTIONS(5117), 2, + ACTIONS(6230), 2, sym__ws, sym_comment, - STATE(2642), 3, + STATE(2651), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180442] = 6, + [166640] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(3069), 1, + STATE(3192), 1, sym_num_lit, - ACTIONS(5119), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2643), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180464] = 6, + [166662] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(3068), 1, + STATE(3015), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180486] = 6, + [166684] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(6022), 1, aux_sym_num_lit_token1, - STATE(3066), 1, + STATE(2461), 1, sym_num_lit, - ACTIONS(5121), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2644), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180508] = 6, + [166706] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(6022), 1, aux_sym_num_lit_token1, - STATE(3065), 1, + STATE(2461), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(6232), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2657), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180530] = 6, + [166728] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(6022), 1, aux_sym_num_lit_token1, - STATE(3061), 1, + STATE(2460), 1, sym_num_lit, - ACTIONS(5123), 2, + ACTIONS(6234), 2, sym__ws, sym_comment, - STATE(2647), 3, + STATE(2658), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180552] = 6, + [166750] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(3060), 1, + STATE(3016), 1, sym_num_lit, - ACTIONS(5125), 2, + ACTIONS(6236), 2, sym__ws, sym_comment, - STATE(2650), 3, + STATE(2662), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180574] = 6, + [166772] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(3059), 1, + STATE(3021), 1, sym_num_lit, - ACTIONS(5127), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2652), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180596] = 6, + [166794] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(6022), 1, aux_sym_num_lit_token1, - STATE(3058), 1, + STATE(2459), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(6238), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2660), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180618] = 6, + [166816] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(6022), 1, aux_sym_num_lit_token1, - STATE(3045), 1, + STATE(2457), 1, sym_num_lit, - ACTIONS(5129), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2656), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180640] = 3, + [166838] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(5131), 1, - aux_sym_num_lit_token2, - ACTIONS(3055), 7, + ACTIONS(5972), 1, + anon_sym_POUND_, + ACTIONS(6022), 1, + aux_sym_num_lit_token1, + STATE(2455), 1, + sym_num_lit, + ACTIONS(5982), 2, sym__ws, sym_comment, - anon_sym_POUND_, - anon_sym_CARET, - anon_sym_POUND_CARET, - anon_sym_LPAREN, - anon_sym_COMMA, - [180656] = 6, + STATE(2379), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [166860] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(6022), 1, aux_sym_num_lit_token1, - STATE(2959), 1, + STATE(2454), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(6240), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2663), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180678] = 6, + [166882] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(6022), 1, aux_sym_num_lit_token1, - STATE(2953), 1, + STATE(2452), 1, sym_num_lit, - ACTIONS(5133), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2427), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180700] = 6, + [166904] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(6022), 1, aux_sym_num_lit_token1, - STATE(2952), 1, + STATE(2451), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(6242), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2664), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180722] = 6, + [166926] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2948), 1, + STATE(3025), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180744] = 6, + [166948] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(6022), 1, aux_sym_num_lit_token1, - STATE(2944), 1, + STATE(2447), 1, sym_num_lit, - ACTIONS(5135), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2659), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180766] = 6, + [166970] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(6022), 1, aux_sym_num_lit_token1, - STATE(2943), 1, + STATE(2444), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180788] = 6, + [166992] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2941), 1, + STATE(2969), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(6244), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2688), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180810] = 6, + [167014] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(6022), 1, aux_sym_num_lit_token1, - STATE(2938), 1, + STATE(2690), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180832] = 6, + [167036] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(6022), 1, aux_sym_num_lit_token1, - STATE(2934), 1, + STATE(2690), 1, sym_num_lit, - ACTIONS(5137), 2, + ACTIONS(6246), 2, sym__ws, sym_comment, - STATE(2661), 3, + STATE(2691), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180854] = 6, + [167058] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(6022), 1, aux_sym_num_lit_token1, - STATE(2876), 1, + STATE(2618), 1, sym_num_lit, - ACTIONS(5139), 2, + ACTIONS(6248), 2, sym__ws, sym_comment, - STATE(2662), 3, + STATE(2674), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180876] = 6, + [167080] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(6022), 1, aux_sym_num_lit_token1, - STATE(2875), 1, + STATE(2441), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(6250), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2672), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180898] = 6, + [167102] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(6022), 1, aux_sym_num_lit_token1, - STATE(3144), 1, + STATE(2701), 1, sym_num_lit, - ACTIONS(5141), 2, + ACTIONS(6252), 2, sym__ws, sym_comment, - STATE(2664), 3, + STATE(2692), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180920] = 6, + [167124] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(6022), 1, aux_sym_num_lit_token1, - STATE(3039), 1, + STATE(2697), 1, sym_num_lit, - ACTIONS(5143), 2, + ACTIONS(6254), 2, sym__ws, sym_comment, - STATE(2665), 3, + STATE(2699), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180942] = 6, + [167146] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(6022), 1, aux_sym_num_lit_token1, - STATE(3038), 1, + STATE(2439), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180964] = 6, + [167168] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(6022), 1, aux_sym_num_lit_token1, - STATE(3036), 1, + STATE(2439), 1, sym_num_lit, - ACTIONS(5145), 2, + ACTIONS(6256), 2, sym__ws, sym_comment, - STATE(2666), 3, + STATE(2679), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [180986] = 6, + [167190] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(6022), 1, aux_sym_num_lit_token1, - STATE(3035), 1, + STATE(2616), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181008] = 6, + [167212] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(6022), 1, aux_sym_num_lit_token1, - STATE(3031), 1, + STATE(2437), 1, sym_num_lit, - ACTIONS(5147), 2, + ACTIONS(6258), 2, sym__ws, sym_comment, - STATE(2669), 3, + STATE(2711), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181030] = 6, + [167234] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(5151), 1, + ACTIONS(6262), 1, anon_sym_cl, - ACTIONS(5153), 1, + ACTIONS(6264), 1, anon_sym_EQ, - ACTIONS(5149), 2, + ACTIONS(6260), 2, sym__ws, sym_comment, - STATE(2604), 3, + STATE(2593), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181052] = 6, + [167256] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(6022), 1, aux_sym_num_lit_token1, - STATE(3030), 1, + STATE(2616), 1, sym_num_lit, - ACTIONS(5155), 2, + ACTIONS(6266), 2, sym__ws, sym_comment, - STATE(2672), 3, + STATE(2681), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181074] = 6, + [167278] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(6022), 1, aux_sym_num_lit_token1, - STATE(3029), 1, + STATE(2615), 1, sym_num_lit, - ACTIONS(5157), 2, + ACTIONS(6268), 2, sym__ws, sym_comment, - STATE(2674), 3, + STATE(2683), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181096] = 6, + [167300] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(6022), 1, aux_sym_num_lit_token1, - STATE(3028), 1, + STATE(2435), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181118] = 6, + [167322] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(5159), 1, - anon_sym_cl, - ACTIONS(5161), 1, - anon_sym_EQ, - ACTIONS(4891), 2, + ACTIONS(6022), 1, + aux_sym_num_lit_token1, + STATE(2614), 1, + sym_num_lit, + ACTIONS(6270), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2686), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181140] = 6, + [167344] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(6022), 1, aux_sym_num_lit_token1, - STATE(3032), 1, + STATE(2612), 1, sym_num_lit, - ACTIONS(5163), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2679), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181162] = 6, + [167366] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(6274), 1, + anon_sym_cl, + ACTIONS(6276), 1, + anon_sym_EQ, + ACTIONS(6272), 2, + sym__ws, + sym_comment, + STATE(2572), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [167388] = 6, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(5972), 1, + anon_sym_POUND_, + ACTIONS(6022), 1, aux_sym_num_lit_token1, - STATE(3047), 1, + STATE(2610), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181184] = 6, + [167410] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(5165), 1, + ACTIONS(6278), 1, anon_sym_cl, - ACTIONS(5167), 1, + ACTIONS(6280), 1, anon_sym_EQ, - ACTIONS(4891), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181206] = 6, + [167432] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(6022), 1, aux_sym_num_lit_token1, - STATE(3040), 1, + STATE(2609), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(6282), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2702), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181228] = 6, + [167454] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(6022), 1, aux_sym_num_lit_token1, - STATE(3115), 1, + STATE(2607), 1, sym_num_lit, - ACTIONS(5169), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2682), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181250] = 6, + [167476] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(6022), 1, aux_sym_num_lit_token1, - STATE(3116), 1, + STATE(2544), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181272] = 6, + [167498] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(3121), 1, + STATE(2879), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181294] = 6, + [167520] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, - aux_sym_num_lit_token1, - STATE(3126), 1, - sym_num_lit, - ACTIONS(5171), 2, + ACTIONS(6284), 1, + anon_sym_cl, + ACTIONS(6286), 1, + anon_sym_EQ, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2684), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181316] = 6, + [167542] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(3127), 1, + STATE(2878), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(6288), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2715), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181338] = 6, + [167564] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(6022), 1, aux_sym_num_lit_token1, - STATE(3129), 1, + STATE(2716), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181360] = 6, + [167586] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(6022), 1, aux_sym_num_lit_token1, - STATE(3133), 1, + STATE(2718), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181382] = 6, + [167608] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(6022), 1, aux_sym_num_lit_token1, - STATE(3151), 1, + STATE(2548), 1, sym_num_lit, - ACTIONS(5173), 2, + ACTIONS(6290), 2, sym__ws, sym_comment, - STATE(2686), 3, + STATE(2468), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181404] = 6, + [167630] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(6022), 1, aux_sym_num_lit_token1, - STATE(3152), 1, + STATE(2606), 1, sym_num_lit, - ACTIONS(5175), 2, + ACTIONS(6292), 2, sym__ws, sym_comment, - STATE(2687), 3, + STATE(2721), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181426] = 6, + [167652] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(6022), 1, aux_sym_num_lit_token1, - STATE(3153), 1, + STATE(2433), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181448] = 6, + [167674] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(6022), 1, aux_sym_num_lit_token1, - STATE(3156), 1, + STATE(2719), 1, sym_num_lit, - ACTIONS(5177), 2, + ACTIONS(6294), 2, sym__ws, sym_comment, - STATE(2689), 3, + STATE(2720), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181470] = 6, + [167696] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(3109), 1, + STATE(2866), 1, sym_num_lit, - ACTIONS(5179), 2, + ACTIONS(6296), 2, sym__ws, sym_comment, - STATE(2690), 3, + STATE(2723), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181492] = 6, + [167718] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(3177), 1, + STATE(3158), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(6298), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2596), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181514] = 6, + [167740] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(6022), 1, aux_sym_num_lit_token1, - STATE(3163), 1, + STATE(2724), 1, sym_num_lit, - ACTIONS(5181), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2691), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181536] = 6, + [167762] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(6022), 1, aux_sym_num_lit_token1, - STATE(2761), 1, + STATE(2725), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(6300), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2726), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181558] = 6, + [167784] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2775), 1, + STATE(2873), 1, sym_num_lit, - ACTIONS(5183), 2, + ACTIONS(6302), 2, sym__ws, sym_comment, - STATE(2694), 3, + STATE(2717), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181580] = 6, + [167806] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(6022), 1, aux_sym_num_lit_token1, - STATE(3179), 1, + STATE(2602), 1, sym_num_lit, - ACTIONS(5185), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2697), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181602] = 6, + [167828] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(6022), 1, aux_sym_num_lit_token1, - STATE(2852), 1, + STATE(2549), 1, sym_num_lit, - ACTIONS(5187), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2699), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181624] = 6, + [167850] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2866), 1, + STATE(3157), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181646] = 6, + [167872] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(6022), 1, aux_sym_num_lit_token1, - STATE(2850), 1, + STATE(2551), 1, sym_num_lit, - ACTIONS(5189), 2, + ACTIONS(6304), 2, sym__ws, sym_comment, - STATE(2703), 3, + STATE(2687), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181668] = 6, + [167894] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4897), 1, + ACTIONS(6022), 1, aux_sym_num_lit_token1, - STATE(2706), 1, + STATE(2552), 1, sym_num_lit, - ACTIONS(5191), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2707), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181690] = 6, + [167916] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, - aux_sym_num_lit_token1, - STATE(3057), 1, - sym_num_lit, - ACTIONS(5193), 2, + ACTIONS(6308), 1, + anon_sym_cl, + ACTIONS(6310), 1, + anon_sym_EQ, + ACTIONS(6306), 2, sym__ws, sym_comment, - STATE(2711), 3, + STATE(2732), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181712] = 6, + [167938] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4897), 1, - aux_sym_num_lit_token1, - STATE(2712), 1, - sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(6312), 1, + anon_sym_cl, + ACTIONS(6314), 1, + anon_sym_into, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181734] = 6, + [167960] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4897), 1, + ACTIONS(6022), 1, aux_sym_num_lit_token1, - STATE(2712), 1, + STATE(2554), 1, sym_num_lit, - ACTIONS(5195), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2713), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181756] = 6, + [167982] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4897), 1, + ACTIONS(6022), 1, aux_sym_num_lit_token1, - STATE(2731), 1, + STATE(2432), 1, sym_num_lit, - ACTIONS(5197), 2, + ACTIONS(6316), 2, sym__ws, sym_comment, STATE(2714), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181778] = 6, + [168004] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4897), 1, + ACTIONS(6022), 1, aux_sym_num_lit_token1, - STATE(2716), 1, + STATE(2430), 1, sym_num_lit, - ACTIONS(5199), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2717), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181800] = 6, + [168026] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(6022), 1, aux_sym_num_lit_token1, - STATE(2979), 1, + STATE(2429), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(6318), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2722), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181822] = 6, + [168048] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, - anon_sym_POUND_, - ACTIONS(4895), 1, - aux_sym_num_lit_token1, - STATE(2977), 1, - sym_num_lit, - ACTIONS(5201), 2, + ACTIONS(6320), 1, + aux_sym_num_lit_token2, + ACTIONS(4134), 7, sym__ws, sym_comment, - STATE(2721), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [181844] = 6, + anon_sym_POUND_, + aux_sym_num_lit_token1, + anon_sym_cl, + anon_sym_EQ, + anon_sym_into, + [168064] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4897), 1, + ACTIONS(6022), 1, aux_sym_num_lit_token1, - STATE(2722), 1, + STATE(2635), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181866] = 6, + [168086] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4897), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2724), 1, + STATE(2785), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181888] = 6, + [168108] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4897), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2725), 1, + STATE(2784), 1, sym_num_lit, - ACTIONS(5203), 2, + ACTIONS(6322), 2, sym__ws, sym_comment, - STATE(2726), 3, + STATE(2740), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181910] = 6, + [168130] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2967), 1, + STATE(2782), 1, sym_num_lit, - ACTIONS(5205), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2727), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181932] = 6, + [168152] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4897), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2728), 1, + STATE(2778), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(6324), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2743), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181954] = 6, + [168174] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4897), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2729), 1, + STATE(2775), 1, sym_num_lit, - ACTIONS(5207), 2, + ACTIONS(6326), 2, sym__ws, sym_comment, - STATE(2730), 3, + STATE(2741), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181976] = 6, + [168196] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(5211), 1, - anon_sym_cl, - ACTIONS(5213), 1, - anon_sym_EQ, - ACTIONS(5209), 2, + ACTIONS(6022), 1, + aux_sym_num_lit_token1, + STATE(2739), 1, + sym_num_lit, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2732), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [181998] = 6, + [168218] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(5215), 1, - anon_sym_cl, - ACTIONS(5217), 1, - anon_sym_into, - ACTIONS(4891), 2, + ACTIONS(6022), 1, + aux_sym_num_lit_token1, + STATE(2599), 1, + sym_num_lit, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182020] = 6, + [168240] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(6022), 1, aux_sym_num_lit_token1, - STATE(2893), 1, + STATE(2654), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182042] = 6, + [168262] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2887), 1, + STATE(2772), 1, sym_num_lit, - ACTIONS(5219), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2736), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182064] = 6, + [168284] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2883), 1, + STATE(2767), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(6328), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2745), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182086] = 6, + [168306] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2882), 1, + STATE(2764), 1, sym_num_lit, - ACTIONS(5221), 2, + ACTIONS(6330), 2, sym__ws, sym_comment, - STATE(2737), 3, + STATE(2704), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182108] = 6, + [168328] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(6022), 1, aux_sym_num_lit_token1, - STATE(2880), 1, + STATE(2698), 1, sym_num_lit, - ACTIONS(5223), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2738), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182130] = 6, + [168350] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4897), 1, + ACTIONS(6022), 1, aux_sym_num_lit_token1, - STATE(2739), 1, + STATE(2592), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(6332), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2744), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182152] = 6, + [168372] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(6334), 1, + aux_sym_num_lit_token2, + ACTIONS(4134), 7, + sym__ws, + sym_comment, anon_sym_POUND_, - ACTIONS(4895), 1, + anon_sym_CARET, + anon_sym_POUND_CARET, + anon_sym_LPAREN, + anon_sym_COMMA, + [168388] = 6, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(5972), 1, + anon_sym_POUND_, + ACTIONS(6022), 1, aux_sym_num_lit_token1, - STATE(2874), 1, + STATE(2556), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(6336), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2703), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182174] = 6, + [168410] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(6022), 1, aux_sym_num_lit_token1, - STATE(2873), 1, + STATE(2557), 1, sym_num_lit, - ACTIONS(5225), 2, + ACTIONS(6338), 2, sym__ws, sym_comment, - STATE(2740), 3, + STATE(2706), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182196] = 6, + [168432] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(6022), 1, aux_sym_num_lit_token1, - STATE(2871), 1, + STATE(2558), 1, sym_num_lit, - ACTIONS(5227), 2, + ACTIONS(6340), 2, sym__ws, sym_comment, - STATE(2741), 3, + STATE(2709), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182218] = 6, + [168454] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4897), 1, - aux_sym_num_lit_token1, - STATE(2742), 1, - sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(6342), 1, + anon_sym_cl, + ACTIONS(6344), 1, + anon_sym_EQ, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182240] = 6, + [168476] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(6022), 1, aux_sym_num_lit_token1, - STATE(2974), 1, + STATE(2558), 1, sym_num_lit, - ACTIONS(5229), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2723), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182262] = 6, + [168498] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(5231), 1, - anon_sym_cl, - ACTIONS(5233), 1, - anon_sym_EQ, - ACTIONS(4891), 2, + ACTIONS(6022), 1, + aux_sym_num_lit_token1, + STATE(2560), 1, + sym_num_lit, + ACTIONS(6346), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2733), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182284] = 6, + [168520] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(5237), 1, - anon_sym_cl, - ACTIONS(5239), 1, - anon_sym_EQ, - ACTIONS(5235), 2, + ACTIONS(6022), 1, + aux_sym_num_lit_token1, + STATE(2427), 1, + sym_num_lit, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2745), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182306] = 6, + [168542] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(5243), 1, - anon_sym_cl, - ACTIONS(5245), 1, - anon_sym_EQ, - ACTIONS(5241), 2, + ACTIONS(6022), 1, + aux_sym_num_lit_token1, + STATE(2571), 1, + sym_num_lit, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2746), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182328] = 6, + [168564] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(5247), 1, - anon_sym_cl, - ACTIONS(5249), 1, - anon_sym_into, - ACTIONS(4891), 2, + ACTIONS(6022), 1, + aux_sym_num_lit_token1, + STATE(2576), 1, + sym_num_lit, + ACTIONS(6348), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2735), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182350] = 6, + [168586] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(6022), 1, aux_sym_num_lit_token1, - STATE(2792), 1, + STATE(2577), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182372] = 6, + [168608] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2788), 1, + STATE(3082), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(6350), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2649), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182394] = 6, + [168630] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2786), 1, + STATE(3056), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182416] = 6, + [168652] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2785), 1, + STATE(3079), 1, sym_num_lit, - ACTIONS(5251), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2428), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182438] = 6, + [168674] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(6022), 1, aux_sym_num_lit_token1, - STATE(2780), 1, + STATE(2579), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(6352), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2736), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182460] = 6, + [168696] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2778), 1, + STATE(3065), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182482] = 6, + [168718] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(6022), 1, aux_sym_num_lit_token1, - STATE(2777), 1, + STATE(2428), 1, sym_num_lit, - ACTIONS(5253), 2, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2750), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182504] = 6, + [168740] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(5257), 1, - anon_sym_cl, - ACTIONS(5259), 1, - anon_sym_EQ, - ACTIONS(5255), 2, + ACTIONS(5974), 1, + aux_sym_num_lit_token1, + STATE(3154), 1, + sym_num_lit, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2749), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182526] = 6, + [168762] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(5261), 1, - anon_sym_cl, - ACTIONS(5263), 1, - anon_sym_EQ, - ACTIONS(4891), 2, + ACTIONS(6022), 1, + aux_sym_num_lit_token1, + STATE(2428), 1, + sym_num_lit, + ACTIONS(6354), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2630), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182548] = 6, + [168784] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(5265), 1, + ACTIONS(6356), 1, anon_sym_cl, - ACTIONS(5267), 1, - anon_sym_EQ, - ACTIONS(4891), 2, + ACTIONS(6358), 1, + anon_sym_into, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182570] = 6, + [168806] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(5269), 1, - anon_sym_cl, - ACTIONS(5271), 1, - anon_sym_EQ, - ACTIONS(4891), 2, + ACTIONS(6022), 1, + aux_sym_num_lit_token1, + STATE(2588), 1, + sym_num_lit, + ACTIONS(6360), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2749), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182592] = 6, + [168828] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(5275), 1, - anon_sym_cl, - ACTIONS(5277), 1, - anon_sym_EQ, - ACTIONS(5273), 2, + ACTIONS(6022), 1, + aux_sym_num_lit_token1, + STATE(2580), 1, + sym_num_lit, + ACTIONS(5982), 2, sym__ws, sym_comment, - STATE(2744), 3, + STATE(2379), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182614] = 6, + [168850] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(5281), 1, + ACTIONS(6364), 1, anon_sym_cl, - ACTIONS(5283), 1, + ACTIONS(6366), 1, anon_sym_EQ, - ACTIONS(5279), 2, + ACTIONS(6362), 2, sym__ws, sym_comment, - STATE(2683), 3, + STATE(2684), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182636] = 6, + [168872] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(5285), 1, + ACTIONS(6370), 1, anon_sym_cl, - ACTIONS(5287), 1, + ACTIONS(6372), 1, anon_sym_EQ, - ACTIONS(4891), 2, + ACTIONS(6368), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2689), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182658] = 6, + [168894] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5972), 1, anon_sym_POUND_, - ACTIONS(4895), 1, + ACTIONS(6022), 1, aux_sym_num_lit_token1, - STATE(3158), 1, + STATE(2586), 1, sym_num_lit, - ACTIONS(4891), 2, + ACTIONS(6374), 2, sym__ws, sym_comment, - STATE(2405), 3, + STATE(2738), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182680] = 6, + [168916] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4893), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5291), 1, - anon_sym_cl, - ACTIONS(5293), 1, - anon_sym_EQ, - ACTIONS(5289), 2, + ACTIONS(6378), 1, + anon_sym_RPAREN, + ACTIONS(6376), 2, sym__ws, sym_comment, - STATE(2680), 3, + STATE(2821), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182702] = 5, + [168935] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5295), 1, + ACTIONS(6380), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182721] = 5, + [168954] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5297), 1, + ACTIONS(6382), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182740] = 5, + [168973] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5299), 1, - anon_sym_LPAREN, - ACTIONS(4840), 2, + ACTIONS(6386), 1, + anon_sym_RPAREN, + ACTIONS(6384), 2, sym__ws, sym_comment, - STATE(2336), 3, + STATE(2761), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182759] = 5, + [168992] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5301), 1, - anon_sym_LPAREN, - ACTIONS(4840), 2, + ACTIONS(6388), 1, + anon_sym_RPAREN, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182778] = 5, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4836), 1, - anon_sym_POUND_, - ACTIONS(5305), 1, - anon_sym_LPAREN, - ACTIONS(5303), 2, - sym__ws, - sym_comment, - STATE(2754), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [182797] = 5, + [169011] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5309), 1, - anon_sym_LPAREN, - ACTIONS(5307), 2, + ACTIONS(6390), 1, + anon_sym_RPAREN, + ACTIONS(5913), 2, sym__ws, sym_comment, - STATE(2755), 3, + STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182816] = 5, + [169030] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5311), 1, - anon_sym_LPAREN, - ACTIONS(4840), 2, + ACTIONS(6392), 1, + anon_sym_RPAREN, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182835] = 5, + [169049] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5315), 1, - anon_sym_LPAREN, - ACTIONS(5313), 2, + ACTIONS(6396), 1, + anon_sym_RPAREN, + ACTIONS(6394), 2, sym__ws, sym_comment, - STATE(2758), 3, + STATE(2762), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182854] = 5, + [169068] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5317), 1, - anon_sym_LPAREN, - ACTIONS(4840), 2, + ACTIONS(6398), 1, + anon_sym_RPAREN, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182873] = 5, + [169087] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5321), 1, + ACTIONS(6400), 1, anon_sym_RPAREN, - ACTIONS(5319), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, - STATE(3150), 3, + STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182892] = 5, + [169106] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5323), 1, + ACTIONS(6402), 1, anon_sym_LPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182911] = 5, + [169125] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5325), 1, + ACTIONS(6406), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(6404), 2, sym__ws, sym_comment, - STATE(2336), 3, + STATE(3155), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182930] = 5, + [169144] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5329), 1, + ACTIONS(6408), 1, anon_sym_LPAREN, - ACTIONS(5327), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, - STATE(2760), 3, + STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182949] = 5, + [169163] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5333), 1, + ACTIONS(6412), 1, anon_sym_LPAREN, - ACTIONS(5331), 2, + ACTIONS(6410), 2, sym__ws, sym_comment, - STATE(2762), 3, + STATE(2763), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182968] = 5, + [169182] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5335), 1, - anon_sym_LPAREN, - ACTIONS(4840), 2, + ACTIONS(6416), 1, + anon_sym_RPAREN, + ACTIONS(6414), 2, sym__ws, sym_comment, - STATE(2336), 3, + STATE(3153), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [182987] = 5, + [169201] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5339), 1, + ACTIONS(6420), 1, anon_sym_LPAREN, - ACTIONS(5337), 2, + ACTIONS(6418), 2, sym__ws, sym_comment, - STATE(2766), 3, + STATE(2765), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183006] = 5, + [169220] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5341), 1, + ACTIONS(6422), 1, anon_sym_LPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183025] = 5, + [169239] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5343), 1, + ACTIONS(6426), 1, anon_sym_LPAREN, - ACTIONS(4840), 2, + ACTIONS(6424), 2, sym__ws, sym_comment, - STATE(2336), 3, + STATE(2769), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183044] = 5, + [169258] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5347), 1, + ACTIONS(6428), 1, anon_sym_LPAREN, - ACTIONS(5345), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, - STATE(2768), 3, + STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183063] = 5, + [169277] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5351), 1, - anon_sym_LPAREN, - ACTIONS(5349), 2, + ACTIONS(6432), 1, + anon_sym_RPAREN, + ACTIONS(6430), 2, sym__ws, sym_comment, - STATE(2769), 3, + STATE(3147), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183082] = 5, + [169296] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5353), 1, - anon_sym_LPAREN, - ACTIONS(4840), 2, + ACTIONS(6434), 1, + anon_sym_RPAREN, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183101] = 5, + [169315] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5357), 1, + ACTIONS(6436), 1, anon_sym_LPAREN, - ACTIONS(5355), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, - STATE(2772), 3, + STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183120] = 5, + [169334] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5359), 1, + ACTIONS(6440), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(6438), 2, sym__ws, sym_comment, - STATE(2336), 3, + STATE(3039), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183139] = 5, + [169353] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5363), 1, - anon_sym_RPAREN, - ACTIONS(5361), 2, + ACTIONS(6444), 1, + anon_sym_LPAREN, + ACTIONS(6442), 2, sym__ws, sym_comment, - STATE(3155), 3, + STATE(2771), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183158] = 5, + [169372] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5365), 1, + ACTIONS(6448), 1, anon_sym_LPAREN, - ACTIONS(4840), 2, + ACTIONS(6446), 2, sym__ws, sym_comment, - STATE(2336), 3, + STATE(2774), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183177] = 5, + [169391] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5369), 1, + ACTIONS(6452), 1, anon_sym_RPAREN, - ACTIONS(5367), 2, + ACTIONS(6450), 2, sym__ws, sym_comment, - STATE(3148), 3, + STATE(3063), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183196] = 5, + [169410] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5373), 1, - anon_sym_RPAREN, - ACTIONS(5371), 2, + ACTIONS(6454), 1, + anon_sym_LPAREN, + ACTIONS(5913), 2, sym__ws, sym_comment, - STATE(3147), 3, + STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183215] = 5, + [169429] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5375), 1, - anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(6458), 1, + anon_sym_LPAREN, + ACTIONS(6456), 2, sym__ws, sym_comment, - STATE(2336), 3, + STATE(2779), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183234] = 5, + [169448] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5379), 1, - anon_sym_RPAREN, - ACTIONS(5377), 2, + ACTIONS(6460), 1, + anon_sym_LPAREN, + ACTIONS(5913), 2, sym__ws, sym_comment, - STATE(3146), 3, + STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183253] = 5, + [169467] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5381), 1, + ACTIONS(6464), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(6462), 2, sym__ws, sym_comment, - STATE(2336), 3, + STATE(3057), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183272] = 5, + [169486] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5383), 1, - anon_sym_LPAREN, - ACTIONS(4840), 2, + ACTIONS(6466), 1, + anon_sym_RPAREN, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183291] = 5, + [169505] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5387), 1, - anon_sym_LPAREN, - ACTIONS(5385), 2, + ACTIONS(6470), 1, + anon_sym_RPAREN, + ACTIONS(6468), 2, sym__ws, sym_comment, - STATE(2776), 3, + STATE(3055), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183310] = 5, + [169524] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5389), 1, + ACTIONS(6474), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(6472), 2, sym__ws, sym_comment, - STATE(2336), 3, + STATE(3048), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183329] = 5, + [169543] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5393), 1, + ACTIONS(6476), 1, anon_sym_RPAREN, - ACTIONS(5391), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, - STATE(2752), 3, + STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183348] = 5, + [169562] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5397), 1, + ACTIONS(6478), 1, anon_sym_RPAREN, - ACTIONS(5395), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, - STATE(3142), 3, + STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183367] = 5, + [169581] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5399), 1, - anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(6480), 1, + anon_sym_LPAREN, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183386] = 5, + [169600] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5403), 1, - anon_sym_RPAREN, - ACTIONS(5401), 2, + ACTIONS(6484), 1, + anon_sym_LPAREN, + ACTIONS(6482), 2, sym__ws, sym_comment, - STATE(3141), 3, + STATE(2781), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183405] = 5, + [169619] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5405), 1, - anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(6488), 1, + anon_sym_LPAREN, + ACTIONS(6486), 2, sym__ws, sym_comment, - STATE(2336), 3, + STATE(2788), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183424] = 5, + [169638] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5409), 1, - anon_sym_RPAREN, - ACTIONS(5407), 2, + ACTIONS(6490), 1, + anon_sym_LPAREN, + ACTIONS(5913), 2, sym__ws, sym_comment, - STATE(2794), 3, + STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183443] = 5, + [169657] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5411), 1, + ACTIONS(6494), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(6492), 2, sym__ws, sym_comment, - STATE(2336), 3, + STATE(2795), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183462] = 5, + [169676] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5415), 1, - anon_sym_RPAREN, - ACTIONS(5413), 2, + ACTIONS(6498), 1, + anon_sym_LPAREN, + ACTIONS(6496), 2, sym__ws, sym_comment, - STATE(3140), 3, + STATE(2791), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183481] = 5, + [169695] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5417), 1, - anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(6500), 1, + anon_sym_LPAREN, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183500] = 5, + [169714] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5419), 1, + ACTIONS(6502), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183519] = 5, + [169733] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5423), 1, + ACTIONS(6506), 1, anon_sym_RPAREN, - ACTIONS(5421), 2, + ACTIONS(6504), 2, sym__ws, sym_comment, STATE(2800), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183538] = 5, + [169752] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5427), 1, + ACTIONS(6510), 1, anon_sym_RPAREN, - ACTIONS(5425), 2, + ACTIONS(6508), 2, sym__ws, sym_comment, STATE(2801), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183557] = 5, + [169771] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5431), 1, + ACTIONS(6514), 1, anon_sym_RPAREN, - ACTIONS(5429), 2, + ACTIONS(6512), 2, sym__ws, sym_comment, STATE(2804), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183576] = 5, + [169790] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5435), 1, + ACTIONS(6518), 1, anon_sym_RPAREN, - ACTIONS(5433), 2, + ACTIONS(6516), 2, sym__ws, sym_comment, STATE(2808), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183595] = 5, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4836), 1, - anon_sym_POUND_, - ACTIONS(5439), 1, - anon_sym_LPAREN, - ACTIONS(5437), 2, - sym__ws, - sym_comment, - STATE(2782), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [183614] = 5, + [169809] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5441), 1, + ACTIONS(6520), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183633] = 5, + [169828] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5443), 1, + ACTIONS(6522), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183652] = 5, + [169847] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5447), 1, + ACTIONS(6526), 1, anon_sym_RPAREN, - ACTIONS(5445), 2, + ACTIONS(6524), 2, sym__ws, sym_comment, STATE(2812), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183671] = 5, + [169866] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5451), 1, + ACTIONS(6530), 1, anon_sym_RPAREN, - ACTIONS(5449), 2, + ACTIONS(6528), 2, sym__ws, sym_comment, STATE(2813), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183690] = 5, + [169885] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5453), 1, + ACTIONS(6532), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183709] = 5, + [169904] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5457), 1, + ACTIONS(6536), 1, anon_sym_RPAREN, - ACTIONS(5455), 2, + ACTIONS(6534), 2, sym__ws, sym_comment, STATE(2815), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183728] = 5, + [169923] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5461), 1, + ACTIONS(6540), 1, anon_sym_RPAREN, - ACTIONS(5459), 2, + ACTIONS(6538), 2, sym__ws, sym_comment, STATE(2816), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183747] = 5, + [169942] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5465), 1, + ACTIONS(6544), 1, anon_sym_RPAREN, - ACTIONS(5463), 2, + ACTIONS(6542), 2, sym__ws, sym_comment, STATE(2818), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183766] = 5, + [169961] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5467), 1, + ACTIONS(6546), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183785] = 5, + [169980] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5471), 1, + ACTIONS(6548), 1, anon_sym_RPAREN, - ACTIONS(5469), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, - STATE(2821), 3, + STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183804] = 5, + [169999] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5475), 1, + ACTIONS(6552), 1, anon_sym_RPAREN, - ACTIONS(5473), 2, + ACTIONS(6550), 2, sym__ws, sym_comment, STATE(2822), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183823] = 5, + [170018] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5479), 1, + ACTIONS(6556), 1, anon_sym_RPAREN, - ACTIONS(5477), 2, + ACTIONS(6554), 2, sym__ws, sym_comment, STATE(2824), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183842] = 5, + [170037] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5481), 1, + ACTIONS(6558), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183861] = 5, + [170056] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5483), 1, + ACTIONS(6560), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183880] = 5, + [170075] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5487), 1, + ACTIONS(6564), 1, anon_sym_RPAREN, - ACTIONS(5485), 2, + ACTIONS(6562), 2, sym__ws, sym_comment, STATE(2827), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183899] = 5, + [170094] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5489), 1, + ACTIONS(6566), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183918] = 5, + [170113] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5491), 1, + ACTIONS(6568), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183937] = 5, + [170132] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5495), 1, + ACTIONS(6572), 1, anon_sym_RPAREN, - ACTIONS(5493), 2, + ACTIONS(6570), 2, sym__ws, sym_comment, STATE(2828), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183956] = 5, + [170151] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5497), 1, + ACTIONS(6574), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183975] = 5, + [170170] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5501), 1, + ACTIONS(6578), 1, anon_sym_RPAREN, - ACTIONS(5499), 2, + ACTIONS(6576), 2, sym__ws, sym_comment, STATE(2829), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [183994] = 5, + [170189] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5505), 1, + ACTIONS(6582), 1, anon_sym_RPAREN, - ACTIONS(5503), 2, + ACTIONS(6580), 2, sym__ws, sym_comment, STATE(2830), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184013] = 5, + [170208] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5507), 1, + ACTIONS(6584), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184032] = 5, + [170227] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5509), 1, + ACTIONS(6586), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184051] = 5, + [170246] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5513), 1, + ACTIONS(6590), 1, anon_sym_RPAREN, - ACTIONS(5511), 2, + ACTIONS(6588), 2, sym__ws, sym_comment, STATE(2832), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184070] = 5, + [170265] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5515), 1, + ACTIONS(6592), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184089] = 5, + [170284] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5519), 1, + ACTIONS(6596), 1, anon_sym_RPAREN, - ACTIONS(5517), 2, + ACTIONS(6594), 2, sym__ws, sym_comment, STATE(2833), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184108] = 5, + [170303] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5523), 1, + ACTIONS(6600), 1, anon_sym_RPAREN, - ACTIONS(5521), 2, + ACTIONS(6598), 2, sym__ws, sym_comment, STATE(2834), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184127] = 5, + [170322] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5525), 1, + ACTIONS(6602), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184146] = 5, + [170341] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5527), 1, + ACTIONS(6604), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184165] = 5, + [170360] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5529), 1, + ACTIONS(6606), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184184] = 5, + [170379] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5531), 1, + ACTIONS(6608), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184203] = 5, + [170398] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5535), 1, + ACTIONS(6612), 1, anon_sym_RPAREN, - ACTIONS(5533), 2, + ACTIONS(6610), 2, sym__ws, sym_comment, STATE(2836), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184222] = 5, + [170417] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5537), 1, + ACTIONS(6614), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184241] = 5, + [170436] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5539), 1, + ACTIONS(6616), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184260] = 5, + [170455] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5541), 1, + ACTIONS(6618), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184279] = 5, + [170474] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5545), 1, + ACTIONS(6622), 1, anon_sym_RPAREN, - ACTIONS(5543), 2, + ACTIONS(6620), 2, sym__ws, sym_comment, STATE(2837), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184298] = 5, + [170493] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5547), 1, + ACTIONS(6624), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184317] = 5, + [170512] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5549), 1, + ACTIONS(6626), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184336] = 5, + [170531] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5551), 1, + ACTIONS(6628), 1, anon_sym_LPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184355] = 5, + [170550] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5555), 1, + ACTIONS(6632), 1, anon_sym_LPAREN, - ACTIONS(5553), 2, + ACTIONS(6630), 2, sym__ws, sym_comment, - STATE(2838), 3, + STATE(2794), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184374] = 5, + [170569] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5557), 1, + ACTIONS(6636), 1, + anon_sym_RPAREN, + ACTIONS(6634), 2, + sym__ws, + sym_comment, + STATE(2874), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [170588] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(5915), 1, + anon_sym_POUND_, + ACTIONS(6640), 1, anon_sym_LPAREN, - ACTIONS(4840), 2, + ACTIONS(6638), 2, sym__ws, sym_comment, - STATE(2336), 3, + STATE(2838), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184393] = 5, + [170607] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5559), 1, + ACTIONS(6642), 1, anon_sym_LPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184412] = 5, + [170626] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5563), 1, + ACTIONS(6646), 1, anon_sym_LPAREN, - ACTIONS(5561), 2, + ACTIONS(6644), 2, sym__ws, sym_comment, - STATE(2840), 3, + STATE(2842), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184431] = 5, + [170645] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5567), 1, + ACTIONS(6648), 1, anon_sym_LPAREN, - ACTIONS(5565), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, - STATE(2841), 3, + STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184450] = 5, + [170664] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5569), 1, + ACTIONS(6650), 1, anon_sym_LPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184469] = 5, + [170683] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5573), 1, + ACTIONS(6654), 1, anon_sym_LPAREN, - ACTIONS(5571), 2, + ACTIONS(6652), 2, sym__ws, sym_comment, STATE(2844), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184488] = 5, + [170702] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5575), 1, + ACTIONS(6658), 1, anon_sym_LPAREN, - ACTIONS(4840), 2, + ACTIONS(6656), 2, sym__ws, sym_comment, - STATE(2336), 3, + STATE(2845), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184507] = 5, + [170721] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5577), 1, - anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(6660), 1, + anon_sym_LPAREN, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184526] = 5, + [170740] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5579), 1, - anon_sym_LPAREN, - ACTIONS(4840), 2, + ACTIONS(6662), 1, + anon_sym_RPAREN, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184545] = 5, + [170759] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5583), 1, - anon_sym_LPAREN, - ACTIONS(5581), 2, + ACTIONS(6666), 1, + anon_sym_RPAREN, + ACTIONS(6664), 2, sym__ws, sym_comment, - STATE(2846), 3, + STATE(2759), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184564] = 5, + [170778] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5587), 1, + ACTIONS(6670), 1, anon_sym_RPAREN, - ACTIONS(5585), 2, + ACTIONS(6668), 2, sym__ws, sym_comment, - STATE(2867), 3, + STATE(2758), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184583] = 5, + [170797] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5591), 1, + ACTIONS(6674), 1, anon_sym_LPAREN, - ACTIONS(5589), 2, + ACTIONS(6672), 2, sym__ws, sym_comment, STATE(2848), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184602] = 5, + [170816] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5595), 1, + ACTIONS(6676), 1, anon_sym_RPAREN, - ACTIONS(5593), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, - STATE(2763), 3, + STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184621] = 5, + [170835] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5597), 1, - anon_sym_LPAREN, - ACTIONS(4840), 2, + ACTIONS(6680), 1, + anon_sym_RPAREN, + ACTIONS(6678), 2, sym__ws, sym_comment, - STATE(2336), 3, + STATE(2757), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184640] = 5, + [170854] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5601), 1, + ACTIONS(6682), 1, anon_sym_LPAREN, - ACTIONS(5599), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, - STATE(2853), 3, + STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184659] = 5, + [170873] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5603), 1, + ACTIONS(6684), 1, anon_sym_LPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184678] = 5, + [170892] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5605), 1, - anon_sym_LPAREN, - ACTIONS(4840), 2, + ACTIONS(6686), 1, + anon_sym_RPAREN, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184697] = 5, + [170911] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5609), 1, - anon_sym_LPAREN, - ACTIONS(5607), 2, + ACTIONS(6688), 1, + anon_sym_RPAREN, + ACTIONS(5913), 2, sym__ws, sym_comment, - STATE(2855), 3, + STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184716] = 5, + [170930] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5613), 1, + ACTIONS(6692), 1, anon_sym_LPAREN, - ACTIONS(5611), 2, + ACTIONS(6690), 2, sym__ws, sym_comment, - STATE(2856), 3, + STATE(2855), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184735] = 5, + [170949] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5615), 1, + ACTIONS(6696), 1, anon_sym_LPAREN, - ACTIONS(4840), 2, + ACTIONS(6694), 2, sym__ws, sym_comment, - STATE(2336), 3, + STATE(2856), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184754] = 5, + [170968] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5619), 1, - anon_sym_LPAREN, - ACTIONS(5617), 2, + ACTIONS(6700), 1, + anon_sym_RPAREN, + ACTIONS(6698), 2, sym__ws, sym_comment, - STATE(2859), 3, + STATE(2755), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184773] = 5, + [170987] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5621), 1, + ACTIONS(6702), 1, anon_sym_LPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184792] = 5, + [171006] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5623), 1, + ACTIONS(6706), 1, anon_sym_LPAREN, - ACTIONS(4840), 2, + ACTIONS(6704), 2, sym__ws, sym_comment, - STATE(2336), 3, + STATE(2862), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184811] = 5, + [171025] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5627), 1, + ACTIONS(6708), 1, anon_sym_LPAREN, - ACTIONS(5625), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, - STATE(2861), 3, + STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184830] = 5, + [171044] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5631), 1, - anon_sym_LPAREN, - ACTIONS(5629), 2, + ACTIONS(6712), 1, + anon_sym_RPAREN, + ACTIONS(6710), 2, sym__ws, sym_comment, - STATE(2862), 3, + STATE(3080), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184849] = 5, + [171063] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5633), 1, - anon_sym_LPAREN, - ACTIONS(4840), 2, + ACTIONS(6716), 1, + anon_sym_RPAREN, + ACTIONS(6714), 2, sym__ws, sym_comment, - STATE(2336), 3, + STATE(2773), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184868] = 5, + [171082] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5637), 1, + ACTIONS(6718), 1, anon_sym_RPAREN, - ACTIONS(5635), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, - STATE(2774), 3, + STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184887] = 5, + [171101] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5639), 1, + ACTIONS(6722), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(6720), 2, sym__ws, sym_comment, - STATE(2336), 3, + STATE(2809), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184906] = 5, + [171120] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5643), 1, - anon_sym_LPAREN, - ACTIONS(5641), 2, + ACTIONS(6724), 1, + anon_sym_RPAREN, + ACTIONS(5913), 2, sym__ws, sym_comment, - STATE(2865), 3, + STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184925] = 5, + [171139] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5645), 1, + ACTIONS(6726), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184944] = 5, + [171158] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5647), 1, + ACTIONS(6730), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(6728), 2, sym__ws, sym_comment, - STATE(2336), 3, + STATE(2849), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184963] = 5, + [171177] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5651), 1, + ACTIONS(6732), 1, anon_sym_RPAREN, - ACTIONS(5649), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, - STATE(2779), 3, + STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [184982] = 5, + [171196] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5655), 1, + ACTIONS(6736), 1, anon_sym_RPAREN, - ACTIONS(5653), 2, + ACTIONS(6734), 2, sym__ws, sym_comment, - STATE(2869), 3, + STATE(2783), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185001] = 5, + [171215] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5659), 1, + ACTIONS(6738), 1, anon_sym_RPAREN, - ACTIONS(5657), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, - STATE(2781), 3, + STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185020] = 5, + [171234] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5663), 1, + ACTIONS(6742), 1, anon_sym_RPAREN, - ACTIONS(5661), 2, + ACTIONS(6740), 2, sym__ws, sym_comment, - STATE(2784), 3, + STATE(2853), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185039] = 5, + [171253] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5667), 1, - anon_sym_RPAREN, - ACTIONS(5665), 2, + ACTIONS(6744), 1, + anon_sym_LPAREN, + ACTIONS(5913), 2, sym__ws, sym_comment, - STATE(2946), 3, + STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185058] = 5, + [171272] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5671), 1, - anon_sym_RPAREN, - ACTIONS(5669), 2, + ACTIONS(6748), 1, + anon_sym_LPAREN, + ACTIONS(6746), 2, sym__ws, sym_comment, - STATE(2947), 3, + STATE(2864), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185077] = 5, + [171291] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5673), 1, + ACTIONS(6752), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(6750), 2, sym__ws, sym_comment, - STATE(2336), 3, + STATE(2786), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185096] = 5, + [171310] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5675), 1, + ACTIONS(6756), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(6754), 2, sym__ws, sym_comment, - STATE(2336), 3, + STATE(2787), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185115] = 5, + [171329] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5677), 1, + ACTIONS(6758), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185134] = 5, + [171348] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5681), 1, + ACTIONS(6762), 1, anon_sym_RPAREN, - ACTIONS(5679), 2, + ACTIONS(6760), 2, sym__ws, sym_comment, - STATE(2787), 3, + STATE(2857), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185153] = 5, + [171367] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5683), 1, + ACTIONS(6766), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(6764), 2, sym__ws, sym_comment, - STATE(2336), 3, + STATE(2858), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185172] = 5, + [171386] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5687), 1, + ACTIONS(6768), 1, anon_sym_RPAREN, - ACTIONS(5685), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, - STATE(2789), 3, + STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185191] = 5, + [171405] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5691), 1, + ACTIONS(6772), 1, anon_sym_RPAREN, - ACTIONS(5689), 2, + ACTIONS(6770), 2, sym__ws, sym_comment, - STATE(2791), 3, + STATE(2867), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185210] = 5, + [171424] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5695), 1, + ACTIONS(6776), 1, anon_sym_RPAREN, - ACTIONS(5693), 2, + ACTIONS(6774), 2, sym__ws, sym_comment, - STATE(2888), 3, + STATE(2889), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185229] = 5, + [171443] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5697), 1, + ACTIONS(6780), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(6778), 2, sym__ws, sym_comment, - STATE(2336), 3, + STATE(2869), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185248] = 5, + [171462] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5701), 1, + ACTIONS(6784), 1, anon_sym_RPAREN, - ACTIONS(5699), 2, + ACTIONS(6782), 2, sym__ws, sym_comment, STATE(2870), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185267] = 5, + [171481] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5705), 1, + ACTIONS(6786), 1, anon_sym_RPAREN, - ACTIONS(5703), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, - STATE(2793), 3, + STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185286] = 5, + [171500] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5707), 1, + ACTIONS(6788), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185305] = 5, + [171519] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5711), 1, + ACTIONS(6792), 1, anon_sym_RPAREN, - ACTIONS(5709), 2, + ACTIONS(6790), 2, sym__ws, sym_comment, - STATE(2894), 3, + STATE(2895), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185324] = 5, + [171538] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5715), 1, + ACTIONS(6796), 1, anon_sym_RPAREN, - ACTIONS(5713), 2, + ACTIONS(6794), 2, sym__ws, sym_comment, - STATE(2895), 3, + STATE(2896), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185343] = 5, + [171557] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5719), 1, + ACTIONS(6800), 1, anon_sym_RPAREN, - ACTIONS(5717), 2, + ACTIONS(6798), 2, sym__ws, sym_comment, - STATE(2898), 3, + STATE(2899), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185362] = 5, + [171576] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5723), 1, + ACTIONS(6804), 1, anon_sym_RPAREN, - ACTIONS(5721), 2, + ACTIONS(6802), 2, sym__ws, sym_comment, - STATE(2902), 3, + STATE(2903), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185381] = 5, + [171595] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5727), 1, - anon_sym_RPAREN, - ACTIONS(5725), 2, + ACTIONS(6808), 1, + anon_sym_LPAREN, + ACTIONS(6806), 2, sym__ws, sym_comment, - STATE(3145), 3, + STATE(2876), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185400] = 5, + [171614] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5729), 1, + ACTIONS(6810), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185419] = 5, + [171633] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5731), 1, + ACTIONS(6812), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185438] = 5, + [171652] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5735), 1, + ACTIONS(6816), 1, anon_sym_RPAREN, - ACTIONS(5733), 2, + ACTIONS(6814), 2, sym__ws, sym_comment, - STATE(2906), 3, + STATE(2907), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185457] = 5, + [171671] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5739), 1, + ACTIONS(6820), 1, anon_sym_RPAREN, - ACTIONS(5737), 2, + ACTIONS(6818), 2, sym__ws, sym_comment, - STATE(2907), 3, + STATE(2908), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185476] = 5, + [171690] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5741), 1, + ACTIONS(6822), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185495] = 5, + [171709] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5745), 1, + ACTIONS(6826), 1, anon_sym_RPAREN, - ACTIONS(5743), 2, + ACTIONS(6824), 2, sym__ws, sym_comment, - STATE(2909), 3, + STATE(2910), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185514] = 5, + [171728] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5749), 1, + ACTIONS(6830), 1, anon_sym_RPAREN, - ACTIONS(5747), 2, + ACTIONS(6828), 2, sym__ws, sym_comment, - STATE(2910), 3, + STATE(2911), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185533] = 5, + [171747] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5753), 1, + ACTIONS(6834), 1, anon_sym_RPAREN, - ACTIONS(5751), 2, + ACTIONS(6832), 2, sym__ws, sym_comment, - STATE(2912), 3, + STATE(2913), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185552] = 5, + [171766] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5755), 1, + ACTIONS(6836), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185571] = 5, + [171785] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5759), 1, + ACTIONS(6840), 1, anon_sym_RPAREN, - ACTIONS(5757), 2, + ACTIONS(6838), 2, sym__ws, sym_comment, - STATE(2915), 3, + STATE(2916), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185590] = 5, + [171804] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5763), 1, + ACTIONS(6844), 1, anon_sym_RPAREN, - ACTIONS(5761), 2, + ACTIONS(6842), 2, sym__ws, sym_comment, - STATE(2916), 3, + STATE(2917), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185609] = 5, + [171823] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5767), 1, + ACTIONS(6848), 1, anon_sym_RPAREN, - ACTIONS(5765), 2, + ACTIONS(6846), 2, sym__ws, sym_comment, - STATE(2918), 3, + STATE(2919), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185628] = 5, + [171842] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5769), 1, + ACTIONS(6850), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185647] = 5, + [171861] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5771), 1, + ACTIONS(6852), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185666] = 5, + [171880] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5775), 1, + ACTIONS(6856), 1, anon_sym_RPAREN, - ACTIONS(5773), 2, + ACTIONS(6854), 2, sym__ws, sym_comment, - STATE(2921), 3, + STATE(2922), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185685] = 5, + [171899] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5777), 1, + ACTIONS(6858), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185704] = 5, + [171918] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5779), 1, + ACTIONS(6860), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185723] = 5, + [171937] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5783), 1, + ACTIONS(6864), 1, anon_sym_RPAREN, - ACTIONS(5781), 2, + ACTIONS(6862), 2, sym__ws, sym_comment, - STATE(2922), 3, + STATE(2923), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185742] = 5, + [171956] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5785), 1, + ACTIONS(6866), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185761] = 5, + [171975] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5789), 1, + ACTIONS(6870), 1, anon_sym_RPAREN, - ACTIONS(5787), 2, + ACTIONS(6868), 2, sym__ws, sym_comment, - STATE(2923), 3, + STATE(2924), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185780] = 5, + [171994] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5793), 1, + ACTIONS(6874), 1, anon_sym_RPAREN, - ACTIONS(5791), 2, + ACTIONS(6872), 2, sym__ws, sym_comment, - STATE(2924), 3, + STATE(2925), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185799] = 5, + [172013] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5795), 1, + ACTIONS(6876), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185818] = 5, + [172032] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5797), 1, + ACTIONS(6878), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185837] = 5, + [172051] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5801), 1, + ACTIONS(6882), 1, anon_sym_RPAREN, - ACTIONS(5799), 2, + ACTIONS(6880), 2, sym__ws, sym_comment, - STATE(2926), 3, + STATE(2927), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185856] = 5, + [172070] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5803), 1, + ACTIONS(6884), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185875] = 5, + [172089] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5807), 1, + ACTIONS(6888), 1, anon_sym_RPAREN, - ACTIONS(5805), 2, + ACTIONS(6886), 2, sym__ws, sym_comment, - STATE(2927), 3, + STATE(2928), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185894] = 5, + [172108] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5811), 1, + ACTIONS(6892), 1, anon_sym_RPAREN, - ACTIONS(5809), 2, + ACTIONS(6890), 2, sym__ws, sym_comment, - STATE(2928), 3, + STATE(2929), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185913] = 5, + [172127] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5813), 1, + ACTIONS(6894), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185932] = 5, + [172146] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5815), 1, + ACTIONS(6896), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185951] = 5, + [172165] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5817), 1, + ACTIONS(6898), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185970] = 5, + [172184] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5819), 1, + ACTIONS(6900), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [185989] = 5, + [172203] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5823), 1, + ACTIONS(6904), 1, anon_sym_RPAREN, - ACTIONS(5821), 2, + ACTIONS(6902), 2, sym__ws, sym_comment, - STATE(2930), 3, + STATE(2931), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186008] = 5, + [172222] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5825), 1, + ACTIONS(6906), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186027] = 5, + [172241] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5827), 1, + ACTIONS(6908), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186046] = 5, + [172260] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5829), 1, + ACTIONS(6910), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186065] = 5, + [172279] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5833), 1, + ACTIONS(6914), 1, anon_sym_RPAREN, - ACTIONS(5831), 2, + ACTIONS(6912), 2, sym__ws, sym_comment, - STATE(2931), 3, + STATE(2932), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186084] = 5, + [172298] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5835), 1, + ACTIONS(6916), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186103] = 5, + [172317] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5837), 1, + ACTIONS(6918), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186122] = 5, + [172336] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5839), 1, - anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(6920), 1, + anon_sym_LPAREN, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186141] = 5, + [172355] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5841), 1, + ACTIONS(6924), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(6922), 2, sym__ws, sym_comment, - STATE(2336), 3, + STATE(2872), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186160] = 5, + [172374] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5845), 1, - anon_sym_RPAREN, - ACTIONS(5843), 2, + ACTIONS(6928), 1, + anon_sym_LPAREN, + ACTIONS(6926), 2, sym__ws, sym_comment, - STATE(2950), 3, + STATE(2933), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186179] = 5, + [172393] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5847), 1, - anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(6930), 1, + anon_sym_LPAREN, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186198] = 5, + [172412] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5851), 1, - anon_sym_RPAREN, - ACTIONS(5849), 2, + ACTIONS(6932), 1, + anon_sym_LPAREN, + ACTIONS(5913), 2, sym__ws, sym_comment, - STATE(2753), 3, + STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186217] = 5, + [172431] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5853), 1, - anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(6936), 1, + anon_sym_LPAREN, + ACTIONS(6934), 2, sym__ws, sym_comment, - STATE(2336), 3, + STATE(2936), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186236] = 5, + [172450] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5857), 1, - anon_sym_RPAREN, - ACTIONS(5855), 2, + ACTIONS(6940), 1, + anon_sym_LPAREN, + ACTIONS(6938), 2, sym__ws, sym_comment, - STATE(2954), 3, + STATE(2937), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186255] = 5, + [172469] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5859), 1, - anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(6942), 1, + anon_sym_LPAREN, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186274] = 5, + [172488] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5861), 1, - anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(6946), 1, + anon_sym_LPAREN, + ACTIONS(6944), 2, sym__ws, sym_comment, - STATE(2336), 3, + STATE(2940), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186293] = 5, + [172507] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5865), 1, + ACTIONS(6950), 1, anon_sym_RPAREN, - ACTIONS(5863), 2, + ACTIONS(6948), 2, sym__ws, sym_comment, - STATE(2955), 3, + STATE(2943), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186312] = 5, + [172526] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5867), 1, + ACTIONS(6952), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186331] = 5, + [172545] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5871), 1, + ACTIONS(6956), 1, anon_sym_RPAREN, - ACTIONS(5869), 2, + ACTIONS(6954), 2, sym__ws, sym_comment, - STATE(2956), 3, + STATE(2951), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186350] = 5, + [172564] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5875), 1, + ACTIONS(6958), 1, anon_sym_RPAREN, - ACTIONS(5873), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, - STATE(2957), 3, + STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186369] = 5, + [172583] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5877), 1, + ACTIONS(6960), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186388] = 5, + [172602] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5879), 1, + ACTIONS(6964), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(6962), 2, sym__ws, sym_comment, - STATE(2336), 3, + STATE(2954), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186407] = 5, + [172621] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5881), 1, + ACTIONS(6968), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(6966), 2, sym__ws, sym_comment, - STATE(2336), 3, + STATE(2883), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186426] = 5, + [172640] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5885), 1, + ACTIONS(6972), 1, anon_sym_RPAREN, - ACTIONS(5883), 2, + ACTIONS(6970), 2, sym__ws, sym_comment, - STATE(2960), 3, + STATE(2958), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186445] = 5, + [172659] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5887), 1, + ACTIONS(6976), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(6974), 2, sym__ws, sym_comment, - STATE(2336), 3, + STATE(2964), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186464] = 5, + [172678] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5889), 1, + ACTIONS(6978), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186483] = 5, + [172697] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5891), 1, + ACTIONS(6982), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(6980), 2, sym__ws, sym_comment, - STATE(2336), 3, + STATE(2888), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186502] = 5, + [172716] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5895), 1, + ACTIONS(6986), 1, anon_sym_RPAREN, - ACTIONS(5893), 2, + ACTIONS(6984), 2, sym__ws, sym_comment, - STATE(2961), 3, + STATE(2945), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186521] = 5, + [172735] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5899), 1, + ACTIONS(6988), 1, anon_sym_RPAREN, - ACTIONS(5897), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, - STATE(2962), 3, + STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186540] = 5, + [172754] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5901), 1, + ACTIONS(6992), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(6990), 2, sym__ws, sym_comment, - STATE(2336), 3, + STATE(2968), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186559] = 5, + [172773] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5903), 1, + ACTIONS(6996), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(6994), 2, sym__ws, sym_comment, - STATE(2336), 3, + STATE(2946), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186578] = 5, + [172792] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5905), 1, + ACTIONS(7000), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(6998), 2, sym__ws, sym_comment, - STATE(2336), 3, + STATE(2970), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186597] = 5, + [172811] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5907), 1, + ACTIONS(7002), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186616] = 5, + [172830] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5911), 1, + ACTIONS(7006), 1, anon_sym_RPAREN, - ACTIONS(5909), 2, + ACTIONS(7004), 2, sym__ws, sym_comment, - STATE(2878), 3, + STATE(2972), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186635] = 5, + [172849] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, - anon_sym_POUND_, ACTIONS(5915), 1, + anon_sym_POUND_, + ACTIONS(7008), 1, anon_sym_RPAREN, ACTIONS(5913), 2, sym__ws, sym_comment, - STATE(2970), 3, + STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186654] = 5, + [172868] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5917), 1, + ACTIONS(7012), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(7010), 2, sym__ws, sym_comment, - STATE(2336), 3, + STATE(2973), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186673] = 5, + [172887] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5919), 1, + ACTIONS(7016), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(7014), 2, sym__ws, sym_comment, - STATE(2336), 3, + STATE(2975), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [172906] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(5915), 1, + anon_sym_POUND_, + ACTIONS(7020), 1, + anon_sym_RPAREN, + ACTIONS(7018), 2, + sym__ws, + sym_comment, + STATE(2960), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186692] = 5, + [172925] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5921), 1, + ACTIONS(7022), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186711] = 5, + [172944] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5925), 1, + ACTIONS(7026), 1, anon_sym_RPAREN, - ACTIONS(5923), 2, + ACTIONS(7024), 2, sym__ws, sym_comment, - STATE(2879), 3, + STATE(2978), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186730] = 5, + [172963] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5927), 1, + ACTIONS(7030), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(7028), 2, sym__ws, sym_comment, - STATE(2336), 3, + STATE(2979), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186749] = 5, + [172982] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5931), 1, + ACTIONS(7034), 1, anon_sym_RPAREN, - ACTIONS(5929), 2, + ACTIONS(7032), 2, sym__ws, sym_comment, - STATE(2881), 3, + STATE(2982), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186768] = 5, + [173001] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5933), 1, + ACTIONS(7036), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186787] = 5, + [173020] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5937), 1, + ACTIONS(7040), 1, anon_sym_RPAREN, - ACTIONS(5935), 2, + ACTIONS(7038), 2, sym__ws, sym_comment, - STATE(2877), 3, + STATE(2880), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186806] = 5, + [173039] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5939), 1, + ACTIONS(7042), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186825] = 5, + [173058] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5943), 1, + ACTIONS(7046), 1, anon_sym_RPAREN, - ACTIONS(5941), 2, + ACTIONS(7044), 2, sym__ws, sym_comment, - STATE(2987), 3, + STATE(3028), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186844] = 5, + [173077] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5945), 1, + ACTIONS(7048), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186863] = 5, + [173096] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5949), 1, + ACTIONS(7050), 1, anon_sym_RPAREN, - ACTIONS(5947), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, - STATE(2847), 3, + STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186882] = 5, + [173115] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5953), 1, + ACTIONS(7054), 1, anon_sym_RPAREN, - ACTIONS(5951), 2, + ACTIONS(7052), 2, sym__ws, sym_comment, - STATE(2945), 3, + STATE(3029), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186901] = 5, + [173134] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5955), 1, + ACTIONS(7056), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186920] = 5, + [173153] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5959), 1, + ACTIONS(7060), 1, anon_sym_RPAREN, - ACTIONS(5957), 2, + ACTIONS(7058), 2, sym__ws, sym_comment, - STATE(2885), 3, + STATE(3030), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186939] = 5, + [173172] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5963), 1, + ACTIONS(7064), 1, anon_sym_RPAREN, - ACTIONS(5961), 2, + ACTIONS(7062), 2, sym__ws, sym_comment, - STATE(2949), 3, + STATE(3031), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186958] = 5, + [173191] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5965), 1, + ACTIONS(7066), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186977] = 5, + [173210] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5969), 1, + ACTIONS(7068), 1, anon_sym_RPAREN, - ACTIONS(5967), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, - STATE(2932), 3, + STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [186996] = 5, + [173229] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5973), 1, + ACTIONS(7072), 1, anon_sym_RPAREN, - ACTIONS(5971), 2, + ACTIONS(7070), 2, sym__ws, sym_comment, - STATE(2982), 3, + STATE(2984), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [187015] = 5, + [173248] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5977), 1, + ACTIONS(7076), 1, anon_sym_RPAREN, - ACTIONS(5975), 2, + ACTIONS(7074), 2, sym__ws, sym_comment, - STATE(2933), 3, + STATE(3033), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [187034] = 5, + [173267] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5979), 1, + ACTIONS(7078), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [187053] = 5, + [173286] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5981), 1, + ACTIONS(7082), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(7080), 2, sym__ws, sym_comment, - STATE(2336), 3, + STATE(3034), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [187072] = 5, + [173305] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5983), 1, + ACTIONS(7084), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [187091] = 5, + [173324] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5987), 1, + ACTIONS(7088), 1, anon_sym_RPAREN, - ACTIONS(5985), 2, + ACTIONS(7086), 2, sym__ws, sym_comment, - STATE(2988), 3, + STATE(2990), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [187110] = 5, + [173343] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5991), 1, + ACTIONS(7092), 1, anon_sym_RPAREN, - ACTIONS(5989), 2, + ACTIONS(7090), 2, sym__ws, sym_comment, - STATE(2989), 3, + STATE(2991), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [187129] = 5, + [173362] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5995), 1, + ACTIONS(7096), 1, anon_sym_RPAREN, - ACTIONS(5993), 2, + ACTIONS(7094), 2, sym__ws, sym_comment, - STATE(2992), 3, + STATE(2994), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [187148] = 5, + [173381] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(5999), 1, + ACTIONS(7100), 1, anon_sym_RPAREN, - ACTIONS(5997), 2, + ACTIONS(7098), 2, sym__ws, sym_comment, - STATE(2996), 3, + STATE(2998), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [187167] = 5, + [173400] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6001), 1, + ACTIONS(7104), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(7102), 2, sym__ws, sym_comment, - STATE(2336), 3, + STATE(3035), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [187186] = 5, + [173419] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6003), 1, + ACTIONS(7106), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [187205] = 5, + [173438] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6005), 1, + ACTIONS(7108), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [187224] = 5, + [173457] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6009), 1, + ACTIONS(7112), 1, anon_sym_RPAREN, - ACTIONS(6007), 2, + ACTIONS(7110), 2, sym__ws, sym_comment, - STATE(3000), 3, + STATE(3002), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [187243] = 5, + [173476] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6013), 1, + ACTIONS(7116), 1, anon_sym_RPAREN, - ACTIONS(6011), 2, + ACTIONS(7114), 2, sym__ws, sym_comment, - STATE(3001), 3, + STATE(3003), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [187262] = 5, + [173495] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6015), 1, + ACTIONS(7118), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [187281] = 5, + [173514] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6019), 1, + ACTIONS(7122), 1, anon_sym_RPAREN, - ACTIONS(6017), 2, + ACTIONS(7120), 2, sym__ws, sym_comment, - STATE(3003), 3, + STATE(3005), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [187300] = 5, + [173533] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6023), 1, + ACTIONS(7126), 1, anon_sym_RPAREN, - ACTIONS(6021), 2, + ACTIONS(7124), 2, sym__ws, sym_comment, - STATE(3004), 3, + STATE(3006), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [187319] = 5, + [173552] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6027), 1, + ACTIONS(7130), 1, anon_sym_RPAREN, - ACTIONS(6025), 2, + ACTIONS(7128), 2, sym__ws, sym_comment, - STATE(3006), 3, + STATE(3008), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [187338] = 5, + [173571] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6029), 1, + ACTIONS(7132), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [187357] = 5, + [173590] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6033), 1, + ACTIONS(7136), 1, anon_sym_RPAREN, - ACTIONS(6031), 2, + ACTIONS(7134), 2, sym__ws, sym_comment, - STATE(3009), 3, + STATE(3011), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [187376] = 5, + [173609] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6037), 1, + ACTIONS(7140), 1, anon_sym_RPAREN, - ACTIONS(6035), 2, + ACTIONS(7138), 2, sym__ws, sym_comment, - STATE(3010), 3, + STATE(3012), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [187395] = 5, + [173628] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6041), 1, + ACTIONS(7144), 1, anon_sym_RPAREN, - ACTIONS(6039), 2, + ACTIONS(7142), 2, sym__ws, sym_comment, - STATE(3012), 3, + STATE(3014), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [187414] = 5, + [173647] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6043), 1, + ACTIONS(7146), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [187433] = 5, + [173666] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6045), 1, + ACTIONS(7148), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [187452] = 5, + [173685] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6049), 1, + ACTIONS(7152), 1, anon_sym_RPAREN, - ACTIONS(6047), 2, + ACTIONS(7150), 2, sym__ws, sym_comment, - STATE(3015), 3, + STATE(3017), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [187471] = 5, + [173704] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6051), 1, + ACTIONS(7154), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [187490] = 5, + [173723] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6053), 1, + ACTIONS(7156), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [187509] = 5, + [173742] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6057), 1, + ACTIONS(7160), 1, anon_sym_RPAREN, - ACTIONS(6055), 2, + ACTIONS(7158), 2, sym__ws, sym_comment, - STATE(3016), 3, + STATE(3018), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [187528] = 5, + [173761] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6059), 1, + ACTIONS(7162), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [187547] = 5, + [173780] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6063), 1, + ACTIONS(7166), 1, anon_sym_RPAREN, - ACTIONS(6061), 2, + ACTIONS(7164), 2, sym__ws, sym_comment, - STATE(3017), 3, + STATE(3019), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [187566] = 5, + [173799] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6067), 1, + ACTIONS(7170), 1, anon_sym_RPAREN, - ACTIONS(6065), 2, + ACTIONS(7168), 2, sym__ws, sym_comment, - STATE(3018), 3, + STATE(3020), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [187585] = 5, + [173818] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6069), 1, + ACTIONS(7172), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [187604] = 5, + [173837] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6071), 1, + ACTIONS(7174), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [187623] = 5, + [173856] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6075), 1, + ACTIONS(7178), 1, anon_sym_RPAREN, - ACTIONS(6073), 2, + ACTIONS(7176), 2, sym__ws, sym_comment, - STATE(3020), 3, + STATE(3022), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [187642] = 5, + [173875] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6077), 1, + ACTIONS(7180), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [187661] = 5, + [173894] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6081), 1, + ACTIONS(7184), 1, anon_sym_RPAREN, - ACTIONS(6079), 2, + ACTIONS(7182), 2, sym__ws, sym_comment, - STATE(3021), 3, + STATE(3023), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [187680] = 5, + [173913] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6085), 1, + ACTIONS(7188), 1, anon_sym_RPAREN, - ACTIONS(6083), 2, + ACTIONS(7186), 2, sym__ws, sym_comment, - STATE(3022), 3, + STATE(3024), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [187699] = 5, + [173932] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6087), 1, + ACTIONS(7190), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [187718] = 5, + [173951] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6089), 1, + ACTIONS(7192), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [187737] = 5, + [173970] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6091), 1, + ACTIONS(7194), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [187756] = 5, + [173989] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6093), 1, + ACTIONS(7196), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [187775] = 5, + [174008] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6097), 1, + ACTIONS(7200), 1, anon_sym_RPAREN, - ACTIONS(6095), 2, + ACTIONS(7198), 2, sym__ws, sym_comment, - STATE(3024), 3, + STATE(3026), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [187794] = 5, + [174027] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6099), 1, + ACTIONS(7202), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [187813] = 5, + [174046] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6101), 1, + ACTIONS(7204), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [187832] = 5, + [174065] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6103), 1, + ACTIONS(7206), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [187851] = 5, + [174084] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6107), 1, + ACTIONS(7210), 1, anon_sym_RPAREN, - ACTIONS(6105), 2, + ACTIONS(7208), 2, sym__ws, sym_comment, - STATE(3025), 3, + STATE(3027), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [187870] = 5, + [174103] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6109), 1, + ACTIONS(7212), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [187889] = 5, + [174122] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6111), 1, + ACTIONS(7214), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [187908] = 5, + [174141] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6115), 1, + ACTIONS(7216), 1, anon_sym_RPAREN, - ACTIONS(6113), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, - STATE(2951), 3, + STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [187927] = 5, + [174160] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6117), 1, + ACTIONS(7218), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [187946] = 5, + [174179] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6121), 1, + ACTIONS(7220), 1, anon_sym_RPAREN, - ACTIONS(6119), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, - STATE(3033), 3, + STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [187965] = 5, + [174198] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6125), 1, + ACTIONS(7222), 1, anon_sym_RPAREN, - ACTIONS(6123), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, - STATE(3034), 3, + STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [187984] = 5, + [174217] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6129), 1, + ACTIONS(7226), 1, anon_sym_RPAREN, - ACTIONS(6127), 2, + ACTIONS(7224), 2, sym__ws, sym_comment, STATE(3037), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [188003] = 5, + [174236] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6133), 1, + ACTIONS(7228), 1, anon_sym_RPAREN, - ACTIONS(6131), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, - STATE(3089), 3, + STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [188022] = 5, + [174255] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6137), 1, + ACTIONS(7230), 1, anon_sym_RPAREN, - ACTIONS(6135), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, - STATE(3027), 3, + STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [188041] = 5, + [174274] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6139), 1, + ACTIONS(7232), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [188060] = 5, + [174293] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6141), 1, + ACTIONS(7236), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(7234), 2, sym__ws, sym_comment, - STATE(2336), 3, + STATE(3038), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [188079] = 5, + [174312] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6145), 1, + ACTIONS(7238), 1, anon_sym_RPAREN, - ACTIONS(6143), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, - STATE(2935), 3, + STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [188098] = 5, + [174331] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6149), 1, + ACTIONS(7240), 1, anon_sym_RPAREN, - ACTIONS(6147), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, - STATE(2937), 3, + STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [188117] = 5, + [174350] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6151), 1, + ACTIONS(7242), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [188136] = 5, + [174369] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6155), 1, + ACTIONS(7246), 1, anon_sym_RPAREN, - ACTIONS(6153), 2, + ACTIONS(7244), 2, sym__ws, sym_comment, - STATE(2939), 3, + STATE(3041), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [188155] = 5, + [174388] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6159), 1, + ACTIONS(7248), 1, anon_sym_RPAREN, - ACTIONS(6157), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, - STATE(2940), 3, + STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [188174] = 5, + [174407] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6163), 1, + ACTIONS(7252), 1, anon_sym_RPAREN, - ACTIONS(6161), 2, + ACTIONS(7250), 2, sym__ws, sym_comment, - STATE(3044), 3, + STATE(3049), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [188193] = 5, + [174426] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6165), 1, - anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(7254), 1, + anon_sym_LPAREN, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [188212] = 5, + [174445] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6167), 1, + ACTIONS(7258), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(7256), 2, sym__ws, sym_comment, - STATE(2336), 3, + STATE(3050), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [188231] = 5, + [174464] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6169), 1, - anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(7260), 1, + anon_sym_LPAREN, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [188250] = 5, + [174483] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6171), 1, + ACTIONS(7264), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(7262), 2, sym__ws, sym_comment, - STATE(2336), 3, + STATE(3054), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [188269] = 5, + [174502] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6175), 1, + ACTIONS(7268), 1, anon_sym_RPAREN, - ACTIONS(6173), 2, + ACTIONS(7266), 2, sym__ws, sym_comment, - STATE(3052), 3, + STATE(3060), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [188288] = 5, + [174521] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6179), 1, + ACTIONS(7270), 1, anon_sym_RPAREN, - ACTIONS(6177), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, - STATE(2964), 3, + STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [188307] = 5, + [174540] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6183), 1, + ACTIONS(7272), 1, anon_sym_RPAREN, - ACTIONS(6181), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, - STATE(3041), 3, + STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [188326] = 5, + [174559] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6185), 1, + ACTIONS(7274), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [188345] = 5, + [174578] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6189), 1, + ACTIONS(7278), 1, anon_sym_RPAREN, - ACTIONS(6187), 2, + ACTIONS(7276), 2, sym__ws, sym_comment, - STATE(2966), 3, + STATE(3067), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [188364] = 5, + [174597] = 5, + ACTIONS(23), 1, + aux_sym_sym_lit_token1, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(7280), 1, + anon_sym_loop, + STATE(1523), 1, + sym_sym_lit, + ACTIONS(7282), 4, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + [174616] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6193), 1, + ACTIONS(7286), 1, anon_sym_RPAREN, - ACTIONS(6191), 2, + ACTIONS(7284), 2, sym__ws, sym_comment, - STATE(2968), 3, + STATE(3068), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [188383] = 5, + [174635] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6195), 1, + ACTIONS(7288), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [188402] = 5, + [174654] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6197), 1, + ACTIONS(7290), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [188421] = 5, + [174673] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6199), 1, - anon_sym_LPAREN, - ACTIONS(4840), 2, + ACTIONS(7294), 1, + anon_sym_RPAREN, + ACTIONS(7292), 2, sym__ws, sym_comment, - STATE(2336), 3, + STATE(3181), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [188440] = 5, + [174692] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6201), 1, + ACTIONS(7296), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [188459] = 5, + [174711] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6205), 1, + ACTIONS(7300), 1, anon_sym_RPAREN, - ACTIONS(6203), 2, + ACTIONS(7298), 2, sym__ws, sym_comment, - STATE(2973), 3, + STATE(3198), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [188478] = 5, + [174730] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6209), 1, + ACTIONS(7304), 1, anon_sym_RPAREN, - ACTIONS(6207), 2, + ACTIONS(7302), 2, sym__ws, sym_comment, - STATE(2976), 3, + STATE(3073), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [188497] = 5, + [174749] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6213), 1, + ACTIONS(7306), 1, anon_sym_RPAREN, - ACTIONS(6211), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, - STATE(2980), 3, + STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [188516] = 5, + [174768] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6217), 1, + ACTIONS(7310), 1, anon_sym_RPAREN, - ACTIONS(6215), 2, + ACTIONS(7308), 2, sym__ws, sym_comment, - STATE(3063), 3, + STATE(3076), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [188535] = 5, + [174787] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6221), 1, + ACTIONS(7314), 1, anon_sym_RPAREN, - ACTIONS(6219), 2, + ACTIONS(7312), 2, sym__ws, sym_comment, - STATE(3064), 3, + STATE(3077), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [188554] = 5, + [174806] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6225), 1, + ACTIONS(7316), 1, anon_sym_RPAREN, - ACTIONS(6223), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, - STATE(3067), 3, + STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [188573] = 5, + [174825] = 5, + ACTIONS(23), 1, + aux_sym_sym_lit_token1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7318), 1, + anon_sym_loop, + STATE(1523), 1, + sym_sym_lit, + ACTIONS(7282), 4, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + [174844] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6229), 1, + ACTIONS(7322), 1, anon_sym_RPAREN, - ACTIONS(6227), 2, + ACTIONS(7320), 2, sym__ws, sym_comment, - STATE(3071), 3, + STATE(3119), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [188592] = 5, + [174863] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6231), 1, + ACTIONS(7326), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(7324), 2, sym__ws, sym_comment, - STATE(2336), 3, + STATE(2754), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [188611] = 5, + [174882] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6233), 1, + ACTIONS(7328), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [188630] = 5, + [174901] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6235), 1, + ACTIONS(7330), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [188649] = 5, + [174920] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6239), 1, + ACTIONS(7334), 1, anon_sym_RPAREN, - ACTIONS(6237), 2, + ACTIONS(7332), 2, sym__ws, sym_comment, - STATE(3077), 3, + STATE(3085), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [188668] = 5, + [174939] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6243), 1, + ACTIONS(7338), 1, anon_sym_RPAREN, - ACTIONS(6241), 2, + ACTIONS(7336), 2, sym__ws, sym_comment, - STATE(3078), 3, + STATE(3071), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [188687] = 5, + [174958] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6245), 1, + ACTIONS(7340), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [188706] = 5, + [174977] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6249), 1, + ACTIONS(7344), 1, anon_sym_RPAREN, - ACTIONS(6247), 2, + ACTIONS(7342), 2, sym__ws, sym_comment, - STATE(3081), 3, + STATE(3086), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [188725] = 5, + [174996] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6253), 1, + ACTIONS(7346), 1, anon_sym_RPAREN, - ACTIONS(6251), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, - STATE(3082), 3, + STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [188744] = 5, + [175015] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6257), 1, + ACTIONS(7350), 1, anon_sym_RPAREN, - ACTIONS(6255), 2, + ACTIONS(7348), 2, sym__ws, sym_comment, - STATE(3084), 3, + STATE(3087), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [188763] = 5, + [175034] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6259), 1, + ACTIONS(7354), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(7352), 2, sym__ws, sym_comment, - STATE(2336), 3, + STATE(3088), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [188782] = 5, + [175053] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6263), 1, + ACTIONS(7356), 1, anon_sym_RPAREN, - ACTIONS(6261), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, - STATE(3087), 3, + STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [188801] = 5, + [175072] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6265), 1, - anon_sym_LPAREN, - ACTIONS(4840), 2, + ACTIONS(7358), 1, + anon_sym_RPAREN, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [188820] = 5, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(6267), 1, - anon_sym_loop, - STATE(1643), 1, - sym_sym_lit, - ACTIONS(6269), 4, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - [188839] = 5, + [175091] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6273), 1, + ACTIONS(7362), 1, anon_sym_RPAREN, - ACTIONS(6271), 2, + ACTIONS(7360), 2, sym__ws, sym_comment, - STATE(3111), 3, + STATE(3093), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [188858] = 5, + [175110] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6277), 1, + ACTIONS(7366), 1, anon_sym_RPAREN, - ACTIONS(6275), 2, + ACTIONS(7364), 2, sym__ws, sym_comment, - STATE(3091), 3, + STATE(3183), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [188877] = 5, + [175129] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6279), 1, + ACTIONS(7368), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [188896] = 5, + [175148] = 5, + ACTIONS(23), 1, + aux_sym_sym_lit_token1, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, - anon_sym_POUND_, - ACTIONS(6281), 1, - anon_sym_RPAREN, - ACTIONS(4840), 2, - sym__ws, - sym_comment, - STATE(2336), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [188915] = 5, + ACTIONS(7370), 1, + anon_sym_loop, + STATE(1523), 1, + sym_sym_lit, + ACTIONS(7282), 4, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + [175167] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6283), 1, + ACTIONS(7374), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(7372), 2, sym__ws, sym_comment, - STATE(2336), 3, + STATE(3184), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [188934] = 5, + [175186] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6287), 1, + ACTIONS(7378), 1, anon_sym_RPAREN, - ACTIONS(6285), 2, + ACTIONS(7376), 2, sym__ws, sym_comment, - STATE(3096), 3, + STATE(3094), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [188953] = 5, + [175205] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6289), 1, + ACTIONS(7382), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(7380), 2, sym__ws, sym_comment, - STATE(2336), 3, + STATE(3097), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [188972] = 5, + [175224] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6291), 1, + ACTIONS(7384), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [188991] = 5, + [175243] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6295), 1, + ACTIONS(7386), 1, anon_sym_RPAREN, - ACTIONS(6293), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, - STATE(3097), 3, + STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [189010] = 5, + [175262] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6297), 1, + ACTIONS(7388), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [189029] = 5, + [175281] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6301), 1, + ACTIONS(7390), 1, anon_sym_RPAREN, - ACTIONS(6299), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, - STATE(3098), 3, + STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [189048] = 5, + [175300] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6305), 1, + ACTIONS(7394), 1, anon_sym_RPAREN, - ACTIONS(6303), 2, + ACTIONS(7392), 2, sym__ws, sym_comment, - STATE(3100), 3, + STATE(3099), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [189067] = 5, + [175319] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6307), 1, + ACTIONS(7396), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [189086] = 5, + [175338] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6311), 1, + ACTIONS(7398), 1, anon_sym_RPAREN, - ACTIONS(6309), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, - STATE(3042), 3, + STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [189105] = 5, + [175357] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6313), 1, + ACTIONS(7402), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(7400), 2, sym__ws, sym_comment, - STATE(2336), 3, + STATE(3090), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [189124] = 5, + [175376] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6317), 1, + ACTIONS(7404), 1, anon_sym_RPAREN, - ACTIONS(6315), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, - STATE(3103), 3, + STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [189143] = 5, + [175395] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6319), 1, + ACTIONS(7406), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [189162] = 5, + [175414] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6323), 1, - anon_sym_RPAREN, - ACTIONS(6321), 2, + ACTIONS(7410), 1, + anon_sym_LPAREN, + ACTIONS(7408), 2, sym__ws, sym_comment, - STATE(3104), 3, + STATE(3043), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [189181] = 5, + [175433] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6327), 1, - anon_sym_RPAREN, - ACTIONS(6325), 2, + ACTIONS(7414), 1, + anon_sym_LPAREN, + ACTIONS(7412), 2, sym__ws, sym_comment, - STATE(3043), 3, + STATE(3045), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [189200] = 5, + [175452] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6329), 1, + ACTIONS(7416), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [189219] = 5, + [175471] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6333), 1, + ACTIONS(7420), 1, anon_sym_RPAREN, - ACTIONS(6331), 2, + ACTIONS(7418), 2, sym__ws, sym_comment, - STATE(3105), 3, + STATE(3100), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [189238] = 5, + [175490] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6335), 1, + ACTIONS(7422), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [189257] = 5, + [175509] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6337), 1, + ACTIONS(7424), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [189276] = 5, + [175528] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6339), 1, + ACTIONS(7426), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [189295] = 5, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(6341), 1, - anon_sym_loop, - STATE(1643), 1, - sym_sym_lit, - ACTIONS(6269), 4, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - [189314] = 5, + [175547] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6343), 1, + ACTIONS(7428), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [189333] = 5, + [175566] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6347), 1, + ACTIONS(7430), 1, anon_sym_RPAREN, - ACTIONS(6345), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, - STATE(3107), 3, + STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [189352] = 5, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(6349), 1, - anon_sym_loop, - STATE(1643), 1, - sym_sym_lit, - ACTIONS(6269), 4, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - [189371] = 5, + [175585] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6351), 1, + ACTIONS(7434), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(7432), 2, sym__ws, sym_comment, - STATE(2336), 3, + STATE(3091), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [189390] = 5, + [175604] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6353), 1, + ACTIONS(7438), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(7436), 2, sym__ws, sym_comment, - STATE(2336), 3, + STATE(3112), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [189409] = 5, + [175623] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6355), 1, + ACTIONS(7440), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [189428] = 5, + [175642] = 5, + ACTIONS(23), 1, + aux_sym_sym_lit_token1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7442), 1, + anon_sym_loop, + STATE(1523), 1, + sym_sym_lit, + ACTIONS(7282), 4, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + [175661] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6359), 1, + ACTIONS(7444), 1, anon_sym_RPAREN, - ACTIONS(6357), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, - STATE(3108), 3, + STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [189447] = 5, + [175680] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6361), 1, - anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(7446), 1, + anon_sym_LPAREN, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [189466] = 5, + [175699] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6363), 1, + ACTIONS(7448), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [189485] = 5, + [175718] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6367), 1, + ACTIONS(7450), 1, anon_sym_RPAREN, - ACTIONS(6365), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, - STATE(3130), 3, + STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [189504] = 5, + [175737] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6369), 1, + ACTIONS(7452), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [189523] = 5, + [175756] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6371), 1, + ACTIONS(7456), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(7454), 2, sym__ws, sym_comment, - STATE(2336), 3, + STATE(3101), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [189542] = 5, + [175775] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6373), 1, + ACTIONS(7458), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [189561] = 5, + [175794] = 5, + ACTIONS(23), 1, + aux_sym_sym_lit_token1, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(7460), 1, + anon_sym_loop, + STATE(1523), 1, + sym_sym_lit, + ACTIONS(7282), 4, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + [175813] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6375), 1, + ACTIONS(7464), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(7462), 2, sym__ws, sym_comment, - STATE(2336), 3, + STATE(3124), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [189580] = 5, + [175832] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6377), 1, + ACTIONS(7468), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(7466), 2, sym__ws, sym_comment, - STATE(2336), 3, + STATE(3102), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [189599] = 5, + [175851] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6381), 1, + ACTIONS(7470), 1, anon_sym_RPAREN, - ACTIONS(6379), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, - STATE(3048), 3, + STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [189618] = 5, + [175870] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6385), 1, + ACTIONS(7472), 1, anon_sym_RPAREN, - ACTIONS(6383), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, - STATE(3051), 3, + STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [189637] = 5, + [175889] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6389), 1, - anon_sym_LPAREN, - ACTIONS(6387), 2, + ACTIONS(7476), 1, + anon_sym_RPAREN, + ACTIONS(7474), 2, sym__ws, sym_comment, - STATE(3073), 3, + STATE(3103), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [189656] = 5, + [175908] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6393), 1, - anon_sym_LPAREN, - ACTIONS(6391), 2, + ACTIONS(7478), 1, + anon_sym_RPAREN, + ACTIONS(5913), 2, sym__ws, sym_comment, - STATE(3053), 3, + STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [189675] = 5, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, + [175927] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6395), 1, - anon_sym_loop, - STATE(1643), 1, - sym_sym_lit, - ACTIONS(6269), 4, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - [189694] = 5, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6397), 1, + ACTIONS(7480), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [189713] = 5, + [175946] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6401), 1, + ACTIONS(7484), 1, anon_sym_RPAREN, - ACTIONS(6399), 2, + ACTIONS(7482), 2, sym__ws, sym_comment, - STATE(3062), 3, + STATE(3106), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [189732] = 5, + [175965] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6403), 1, - anon_sym_LPAREN, - ACTIONS(4840), 2, + ACTIONS(7486), 1, + anon_sym_RPAREN, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [189751] = 5, + [175984] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6405), 1, + ACTIONS(7490), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(7488), 2, sym__ws, sym_comment, - STATE(2336), 3, + STATE(3108), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [189770] = 5, + [176003] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6407), 1, + ACTIONS(7492), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [189789] = 5, + [176022] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6409), 1, + ACTIONS(7496), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(7494), 2, sym__ws, sym_comment, - STATE(2336), 3, + STATE(3110), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [189808] = 5, + [176041] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6413), 1, + ACTIONS(7498), 1, anon_sym_RPAREN, - ACTIONS(6411), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, - STATE(3110), 3, + STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [189827] = 5, + [176060] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6417), 1, + ACTIONS(7500), 1, anon_sym_RPAREN, - ACTIONS(6415), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, - STATE(3112), 3, + STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [189846] = 5, + [176079] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6419), 1, + ACTIONS(7504), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(7502), 2, sym__ws, sym_comment, - STATE(2336), 3, + STATE(3111), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [189865] = 5, + [176098] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6423), 1, + ACTIONS(7506), 1, anon_sym_RPAREN, - ACTIONS(6421), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, - STATE(3113), 3, + STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [189884] = 5, + [176117] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6425), 1, + ACTIONS(7508), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [189903] = 5, + [176136] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6427), 1, + ACTIONS(7512), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(7510), 2, sym__ws, sym_comment, - STATE(2336), 3, + STATE(3118), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [189922] = 5, + [176155] = 5, ACTIONS(23), 1, aux_sym_sym_lit_token1, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6429), 1, + ACTIONS(7514), 1, anon_sym_loop, - STATE(1643), 1, + STATE(1523), 1, sym_sym_lit, - ACTIONS(6269), 4, + ACTIONS(7282), 4, anon_sym_defun, anon_sym_defmacro, anon_sym_defgeneric, anon_sym_defmethod, - [189941] = 5, + [176174] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6433), 1, + ACTIONS(7518), 1, anon_sym_RPAREN, - ACTIONS(6431), 2, + ACTIONS(7516), 2, sym__ws, sym_comment, - STATE(3114), 3, + STATE(3121), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [189960] = 5, + [176193] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6435), 1, + ACTIONS(7522), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(7520), 2, sym__ws, sym_comment, - STATE(2336), 3, + STATE(3164), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [189979] = 5, + [176212] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6439), 1, + ACTIONS(7526), 1, anon_sym_RPAREN, - ACTIONS(6437), 2, + ACTIONS(7524), 2, sym__ws, sym_comment, - STATE(3054), 3, + STATE(3122), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [189998] = 5, + [176231] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6443), 1, + ACTIONS(7528), 1, anon_sym_RPAREN, - ACTIONS(6441), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, - STATE(3079), 3, + STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [190017] = 5, + [176250] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6447), 1, + ACTIONS(7532), 1, anon_sym_RPAREN, - ACTIONS(6445), 2, + ACTIONS(7530), 2, sym__ws, sym_comment, - STATE(3094), 3, + STATE(3126), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [190036] = 5, + [176269] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6451), 1, + ACTIONS(7536), 1, anon_sym_RPAREN, - ACTIONS(6449), 2, + ACTIONS(7534), 2, sym__ws, sym_comment, - STATE(3123), 3, + STATE(3128), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [190055] = 5, + [176288] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6453), 1, + ACTIONS(7540), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(7538), 2, sym__ws, sym_comment, - STATE(2336), 3, + STATE(3129), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [190074] = 5, + [176307] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6455), 1, + ACTIONS(7542), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [190093] = 5, + [176326] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6457), 1, + ACTIONS(7546), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(7544), 2, sym__ws, sym_comment, - STATE(2336), 3, + STATE(3131), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [176345] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(5915), 1, + anon_sym_POUND_, + ACTIONS(7550), 1, + anon_sym_RPAREN, + ACTIONS(7548), 2, + sym__ws, + sym_comment, + STATE(3132), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [190112] = 5, + [176364] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6459), 1, + ACTIONS(7552), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [190131] = 5, + [176383] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6463), 1, + ACTIONS(7554), 1, anon_sym_RPAREN, - ACTIONS(6461), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, - STATE(3139), 3, + STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [190150] = 5, + [176402] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6467), 1, + ACTIONS(7556), 1, anon_sym_RPAREN, - ACTIONS(6465), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, - STATE(2942), 3, + STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [190169] = 5, + [176421] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6469), 1, + ACTIONS(7560), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(7558), 2, sym__ws, sym_comment, - STATE(2336), 3, + STATE(3138), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [190188] = 5, + [176440] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6471), 1, + ACTIONS(7564), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(7562), 2, sym__ws, sym_comment, - STATE(2336), 3, + STATE(3142), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [190207] = 5, + [176459] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6473), 1, + ACTIONS(7568), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(7566), 2, sym__ws, sym_comment, - STATE(2336), 3, + STATE(3145), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [190226] = 5, + [176478] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6475), 1, + ACTIONS(7572), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(7570), 2, sym__ws, sym_comment, - STATE(2336), 3, + STATE(3146), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [190245] = 5, + [176497] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6479), 1, + ACTIONS(7574), 1, anon_sym_RPAREN, - ACTIONS(6477), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, - STATE(3176), 3, + STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [190264] = 5, + [176516] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6481), 1, + ACTIONS(7576), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [190283] = 5, + [176535] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6485), 1, + ACTIONS(7580), 1, anon_sym_RPAREN, - ACTIONS(6483), 2, + ACTIONS(7578), 2, sym__ws, sym_comment, - STATE(3120), 3, + STATE(3195), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [190302] = 5, + [176554] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6489), 1, + ACTIONS(7582), 1, anon_sym_RPAREN, - ACTIONS(6487), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, - STATE(3124), 3, + STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [190321] = 5, + [176573] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6493), 1, + ACTIONS(7586), 1, anon_sym_RPAREN, - ACTIONS(6491), 2, + ACTIONS(7584), 2, sym__ws, sym_comment, - STATE(3125), 3, + STATE(3152), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [190340] = 5, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(6495), 1, - anon_sym_loop, - STATE(1643), 1, - sym_sym_lit, - ACTIONS(6269), 4, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - [190359] = 5, + [176592] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6497), 1, + ACTIONS(7590), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(7588), 2, sym__ws, sym_comment, - STATE(2336), 3, + STATE(3196), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [190378] = 5, + [176611] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6501), 1, + ACTIONS(7594), 1, anon_sym_RPAREN, - ACTIONS(6499), 2, + ACTIONS(7592), 2, sym__ws, sym_comment, - STATE(3128), 3, + STATE(3163), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [190397] = 5, + [176630] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6505), 1, + ACTIONS(7598), 1, anon_sym_RPAREN, - ACTIONS(6503), 2, + ACTIONS(7596), 2, sym__ws, sym_comment, - STATE(3160), 3, + STATE(3165), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [190416] = 5, + [176649] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6509), 1, + ACTIONS(7602), 1, anon_sym_RPAREN, - ACTIONS(6507), 2, + ACTIONS(7600), 2, sym__ws, sym_comment, - STATE(3178), 3, + STATE(3168), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [190435] = 5, + [176668] = 5, ACTIONS(23), 1, aux_sym_sym_lit_token1, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6511), 1, + ACTIONS(7604), 1, anon_sym_loop, - STATE(1643), 1, + STATE(1523), 1, sym_sym_lit, - ACTIONS(6269), 4, + ACTIONS(7282), 4, anon_sym_defun, anon_sym_defmacro, anon_sym_defgeneric, anon_sym_defmethod, - [190454] = 5, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4836), 1, - anon_sym_POUND_, - ACTIONS(6513), 1, - anon_sym_RPAREN, - ACTIONS(4840), 2, - sym__ws, - sym_comment, - STATE(2336), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [190473] = 5, + [176687] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6517), 1, + ACTIONS(7608), 1, anon_sym_RPAREN, - ACTIONS(6515), 2, + ACTIONS(7606), 2, sym__ws, sym_comment, - STATE(3192), 3, + STATE(3173), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [190492] = 5, + [176706] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6521), 1, + ACTIONS(7610), 1, anon_sym_RPAREN, - ACTIONS(6519), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, - STATE(3211), 3, + STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [190511] = 5, + [176725] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6525), 1, + ACTIONS(7612), 1, anon_sym_RPAREN, - ACTIONS(6523), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, - STATE(3134), 3, + STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [190530] = 5, + [176744] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6527), 1, + ACTIONS(7614), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [190549] = 5, + [176763] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6531), 1, + ACTIONS(7618), 1, anon_sym_RPAREN, - ACTIONS(6529), 2, + ACTIONS(7616), 2, sym__ws, sym_comment, - STATE(3191), 3, + STATE(3177), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [190568] = 5, + [176782] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6535), 1, + ACTIONS(7622), 1, anon_sym_RPAREN, - ACTIONS(6533), 2, + ACTIONS(7620), 2, sym__ws, sym_comment, - STATE(3201), 3, + STATE(3178), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [190587] = 5, + [176801] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6537), 1, + ACTIONS(7624), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [190606] = 5, + [176820] = 5, + ACTIONS(23), 1, + aux_sym_sym_lit_token1, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7626), 1, + anon_sym_loop, + STATE(1523), 1, + sym_sym_lit, + ACTIONS(7282), 4, + anon_sym_defun, + anon_sym_defmacro, + anon_sym_defgeneric, + anon_sym_defmethod, + [176839] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6539), 1, + ACTIONS(7630), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(7628), 2, sym__ws, sym_comment, - STATE(2336), 3, + STATE(3180), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [190625] = 5, + [176858] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6543), 1, + ACTIONS(7634), 1, anon_sym_RPAREN, - ACTIONS(6541), 2, + ACTIONS(7632), 2, sym__ws, sym_comment, - STATE(3203), 3, + STATE(3182), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [190644] = 5, + [176877] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6547), 1, + ACTIONS(7638), 1, anon_sym_RPAREN, - ACTIONS(6545), 2, + ACTIONS(7636), 2, sym__ws, sym_comment, - STATE(3204), 3, + STATE(3188), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [190663] = 5, + [176896] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6549), 1, + ACTIONS(7640), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [190682] = 5, + [176915] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6553), 1, + ACTIONS(7644), 1, anon_sym_RPAREN, - ACTIONS(6551), 2, + ACTIONS(7642), 2, sym__ws, sym_comment, - STATE(3205), 3, + STATE(3191), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [190701] = 5, + [176934] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6555), 1, + ACTIONS(7648), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(7646), 2, sym__ws, sym_comment, - STATE(2336), 3, + STATE(3193), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [190720] = 5, + [176953] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6557), 1, + ACTIONS(7652), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(7650), 2, sym__ws, sym_comment, - STATE(2336), 3, + STATE(3197), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [190739] = 5, + [176972] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6561), 1, + ACTIONS(7654), 1, anon_sym_RPAREN, - ACTIONS(6559), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, - STATE(3206), 3, + STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [190758] = 5, + [176991] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6563), 1, + ACTIONS(7656), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [190777] = 5, + [177010] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6567), 1, + ACTIONS(7660), 1, anon_sym_RPAREN, - ACTIONS(6565), 2, + ACTIONS(7658), 2, sym__ws, sym_comment, - STATE(3131), 3, + STATE(3209), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [190796] = 5, + [177029] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6569), 1, + ACTIONS(7662), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [190815] = 5, + [177048] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6573), 1, + ACTIONS(7664), 1, anon_sym_RPAREN, - ACTIONS(6571), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, - STATE(3164), 3, + STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [190834] = 5, + [177067] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6575), 1, + ACTIONS(7666), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [190853] = 5, + [177086] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6577), 1, + ACTIONS(7668), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [190872] = 5, + [177105] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6581), 1, + ACTIONS(7670), 1, anon_sym_RPAREN, - ACTIONS(6579), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, - STATE(2981), 3, + STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [190891] = 5, + [177124] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6585), 1, + ACTIONS(7674), 1, anon_sym_LPAREN, - ACTIONS(6583), 2, + ACTIONS(7672), 2, sym__ws, sym_comment, - STATE(3122), 3, + STATE(3109), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [190910] = 5, + [177143] = 5, ACTIONS(23), 1, aux_sym_sym_lit_token1, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6587), 1, + ACTIONS(7676), 1, anon_sym_loop, - STATE(1643), 1, + STATE(1523), 1, sym_sym_lit, - ACTIONS(6269), 4, + ACTIONS(7282), 4, anon_sym_defun, anon_sym_defmacro, anon_sym_defgeneric, anon_sym_defmethod, - [190929] = 5, + [177162] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6591), 1, + ACTIONS(7680), 1, anon_sym_RPAREN, - ACTIONS(6589), 2, + ACTIONS(7678), 2, sym__ws, sym_comment, - STATE(3167), 3, + STATE(3208), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [190948] = 5, + [177181] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6595), 1, + ACTIONS(7682), 1, anon_sym_RPAREN, - ACTIONS(6593), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, - STATE(3168), 3, + STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [190967] = 5, + [177200] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6597), 1, + ACTIONS(7686), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(7684), 2, sym__ws, sym_comment, - STATE(2336), 3, + STATE(3207), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [190986] = 5, + [177219] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6601), 1, + ACTIONS(7690), 1, anon_sym_RPAREN, - ACTIONS(6599), 2, + ACTIONS(7688), 2, sym__ws, sym_comment, - STATE(3171), 3, + STATE(3206), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [191005] = 5, + [177238] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6605), 1, + ACTIONS(7692), 1, anon_sym_RPAREN, - ACTIONS(6603), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, - STATE(3173), 3, + STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [191024] = 5, + [177257] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6609), 1, + ACTIONS(7696), 1, anon_sym_RPAREN, - ACTIONS(6607), 2, + ACTIONS(7694), 2, sym__ws, sym_comment, - STATE(3174), 3, + STATE(3114), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [191043] = 5, + [177276] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6611), 1, + ACTIONS(7698), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [191062] = 5, + [177295] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6613), 1, + ACTIONS(7702), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(7700), 2, sym__ws, sym_comment, - STATE(2336), 3, + STATE(3204), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [191081] = 5, - ACTIONS(23), 1, - aux_sym_sym_lit_token1, + [177314] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6615), 1, - anon_sym_loop, - STATE(1643), 1, - sym_sym_lit, - ACTIONS(6269), 4, - anon_sym_defun, - anon_sym_defmacro, - anon_sym_defgeneric, - anon_sym_defmethod, - [191100] = 5, + ACTIONS(5915), 1, + anon_sym_POUND_, + ACTIONS(7704), 1, + anon_sym_RPAREN, + ACTIONS(5913), 2, + sym__ws, + sym_comment, + STATE(2336), 3, + sym__gap, + sym_dis_expr, + aux_sym_dis_expr_repeat1, + [177333] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6619), 1, + ACTIONS(7706), 1, anon_sym_RPAREN, - ACTIONS(6617), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, - STATE(3180), 3, + STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [191119] = 5, + [177352] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6623), 1, + ACTIONS(7708), 1, anon_sym_RPAREN, - ACTIONS(6621), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, - STATE(3187), 3, + STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [191138] = 5, + [177371] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6625), 1, + ACTIONS(7710), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [191157] = 5, + [177390] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6627), 1, + ACTIONS(7712), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [191176] = 5, + [177409] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6631), 1, + ACTIONS(7714), 1, anon_sym_RPAREN, - ACTIONS(6629), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, - STATE(3196), 3, + STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [191195] = 5, + [177428] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6633), 1, + ACTIONS(7718), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(7716), 2, sym__ws, sym_comment, - STATE(2336), 3, + STATE(3199), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [191214] = 5, + [177447] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6635), 1, + ACTIONS(7720), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [191233] = 5, + [177466] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6637), 1, + ACTIONS(7722), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [191252] = 5, + [177485] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6641), 1, + ACTIONS(7724), 1, anon_sym_RPAREN, - ACTIONS(6639), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, - STATE(3197), 3, + STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [191271] = 5, + [177504] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6643), 1, + ACTIONS(7728), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(7726), 2, sym__ws, sym_comment, - STATE(2336), 3, + STATE(3200), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [191290] = 5, + [177523] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6645), 1, + ACTIONS(7730), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [191309] = 5, + [177542] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6647), 1, + ACTIONS(7732), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [191328] = 5, + [177561] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6649), 1, + ACTIONS(7734), 1, anon_sym_RPAREN, - ACTIONS(4840), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [191347] = 5, + [177580] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6653), 1, + ACTIONS(7736), 1, anon_sym_RPAREN, - ACTIONS(6651), 2, + ACTIONS(5913), 2, sym__ws, sym_comment, - STATE(3199), 3, + STATE(2336), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [191366] = 5, + [177599] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6657), 1, + ACTIONS(7740), 1, anon_sym_RPAREN, - ACTIONS(6655), 2, + ACTIONS(7738), 2, sym__ws, sym_comment, - STATE(3181), 3, + STATE(3203), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [191385] = 5, + [177618] = 5, ACTIONS(23), 1, aux_sym_sym_lit_token1, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6659), 1, + ACTIONS(7742), 1, anon_sym_loop, - STATE(1643), 1, + STATE(1523), 1, sym_sym_lit, - ACTIONS(6269), 4, + ACTIONS(7282), 4, anon_sym_defun, anon_sym_defmacro, anon_sym_defgeneric, anon_sym_defmethod, - [191404] = 5, + [177637] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, + ACTIONS(5915), 1, anon_sym_POUND_, - ACTIONS(6663), 1, + ACTIONS(7746), 1, anon_sym_RPAREN, - ACTIONS(6661), 2, + ACTIONS(7744), 2, sym__ws, sym_comment, - STATE(3200), 3, + STATE(3202), 3, sym__gap, sym_dis_expr, aux_sym_dis_expr_repeat1, - [191423] = 5, + [177656] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4836), 1, - anon_sym_POUND_, - ACTIONS(6665), 1, - anon_sym_RPAREN, - ACTIONS(4840), 2, - sym__ws, - sym_comment, - STATE(2336), 3, - sym__gap, - sym_dis_expr, - aux_sym_dis_expr_repeat1, - [191442] = 5, - ACTIONS(29), 1, + ACTIONS(604), 1, anon_sym_LPAREN, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(6667), 1, + ACTIONS(7748), 1, sym__ws, - STATE(3351), 1, + STATE(3353), 1, aux_sym_read_cond_lit_repeat1, - STATE(1600), 3, + STATE(2294), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [191460] = 5, + [177674] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(631), 1, + ACTIONS(819), 1, anon_sym_LPAREN, - ACTIONS(6669), 1, + ACTIONS(7748), 1, sym__ws, - STATE(3250), 1, + STATE(3353), 1, aux_sym_read_cond_lit_repeat1, - STATE(2041), 3, + STATE(1684), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [191478] = 5, + [177692] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(557), 1, + ACTIONS(819), 1, anon_sym_LPAREN, - ACTIONS(6671), 1, + ACTIONS(7750), 1, sym__ws, - STATE(3263), 1, + STATE(3222), 1, aux_sym_read_cond_lit_repeat1, - STATE(1098), 3, + STATE(1756), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [191496] = 5, + [177710] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(557), 1, + ACTIONS(576), 1, anon_sym_LPAREN, - ACTIONS(6673), 1, + ACTIONS(7752), 1, sym__ws, - STATE(3220), 1, + STATE(3224), 1, aux_sym_read_cond_lit_repeat1, - STATE(1056), 3, + STATE(962), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [191514] = 5, + [177728] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3974), 1, + ACTIONS(7754), 1, anon_sym_DQUOTE, - ACTIONS(6677), 1, + ACTIONS(7758), 1, anon_sym_TILDE, - ACTIONS(6675), 2, + ACTIONS(7756), 2, aux_sym_str_lit_token1, aux_sym_str_lit_token2, - STATE(3313), 2, + STATE(3223), 2, sym_format_specifier, aux_sym_str_lit_repeat1, - [191532] = 5, + [177746] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(6667), 1, + ACTIONS(7760), 1, sym__ws, - STATE(3351), 1, + STATE(3225), 1, aux_sym_read_cond_lit_repeat1, - STATE(1288), 3, + STATE(1903), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [191550] = 5, + [177764] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(557), 1, + ACTIONS(869), 1, anon_sym_LPAREN, - ACTIONS(6667), 1, + ACTIONS(7762), 1, sym__ws, - STATE(3351), 1, + STATE(3226), 1, aux_sym_read_cond_lit_repeat1, - STATE(1083), 3, + STATE(1807), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [191568] = 5, - ACTIONS(47), 1, + [177782] = 5, + ACTIONS(3), 1, sym_block_comment, - ACTIONS(741), 1, + ACTIONS(5069), 1, + anon_sym_DQUOTE, + ACTIONS(7766), 1, + anon_sym_TILDE, + ACTIONS(7764), 2, + aux_sym_str_lit_token1, + aux_sym_str_lit_token2, + STATE(3323), 2, + sym_format_specifier, + aux_sym_str_lit_repeat1, + [177800] = 5, + ACTIONS(29), 1, anon_sym_LPAREN, - ACTIONS(6667), 1, - sym__ws, - STATE(3351), 1, - aux_sym_read_cond_lit_repeat1, - STATE(1780), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [191586] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(557), 1, - anon_sym_LPAREN, - ACTIONS(6667), 1, + ACTIONS(7748), 1, sym__ws, - STATE(3351), 1, + STATE(3353), 1, aux_sym_read_cond_lit_repeat1, - STATE(1087), 3, + STATE(1505), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [191604] = 5, + [177818] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(741), 1, + ACTIONS(819), 1, anon_sym_LPAREN, - ACTIONS(6679), 1, + ACTIONS(7748), 1, sym__ws, - STATE(3224), 1, + STATE(3353), 1, aux_sym_read_cond_lit_repeat1, - STATE(1771), 3, + STATE(1720), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [191622] = 5, + [177836] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3958), 1, + ACTIONS(5089), 1, anon_sym_DQUOTE, - ACTIONS(6681), 1, + ACTIONS(7768), 1, anon_sym_TILDE, - ACTIONS(6675), 2, + ACTIONS(7764), 2, aux_sym_str_lit_token1, aux_sym_str_lit_token2, - STATE(3313), 2, + STATE(3323), 2, sym_format_specifier, aux_sym_str_lit_repeat1, - [191640] = 5, + [177854] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(557), 1, + ACTIONS(576), 1, anon_sym_LPAREN, - ACTIONS(6683), 1, + ACTIONS(7748), 1, sym__ws, - STATE(3225), 1, + STATE(3353), 1, aux_sym_read_cond_lit_repeat1, - STATE(1099), 3, + STATE(1041), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [191658] = 5, + [177872] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(741), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(6667), 1, + ACTIONS(7748), 1, sym__ws, - STATE(3351), 1, + STATE(3353), 1, aux_sym_read_cond_lit_repeat1, - STATE(1750), 3, + STATE(1909), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [191676] = 5, + [177890] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(557), 1, + ACTIONS(869), 1, anon_sym_LPAREN, - ACTIONS(6667), 1, + ACTIONS(7748), 1, sym__ws, - STATE(3351), 1, + STATE(3353), 1, aux_sym_read_cond_lit_repeat1, - STATE(1084), 3, + STATE(1809), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [191694] = 5, - ACTIONS(3), 1, + [177908] = 5, + ACTIONS(47), 1, sym_block_comment, - ACTIONS(6685), 1, - anon_sym_DQUOTE, - ACTIONS(6689), 1, - anon_sym_TILDE, - ACTIONS(6687), 2, - aux_sym_str_lit_token1, - aux_sym_str_lit_token2, - STATE(3233), 2, - sym_format_specifier, - aux_sym_str_lit_repeat1, - [191712] = 5, + ACTIONS(819), 1, + anon_sym_LPAREN, + ACTIONS(7770), 1, + sym__ws, + STATE(3214), 1, + aux_sym_read_cond_lit_repeat1, + STATE(1704), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [177926] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(541), 1, + ACTIONS(576), 1, anon_sym_LPAREN, - ACTIONS(6691), 1, + ACTIONS(7772), 1, sym__ws, - STATE(3234), 1, + STATE(3232), 1, aux_sym_read_cond_lit_repeat1, - STATE(830), 3, + STATE(1031), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [191730] = 5, + [177944] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(741), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(6693), 1, + ACTIONS(7774), 1, sym__ws, - STATE(3235), 1, + STATE(3240), 1, aux_sym_read_cond_lit_repeat1, - STATE(1799), 3, + STATE(1857), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [191748] = 5, + [177962] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, + ACTIONS(869), 1, anon_sym_LPAREN, - ACTIONS(6695), 1, + ACTIONS(7776), 1, sym__ws, - STATE(3217), 1, + STATE(3241), 1, aux_sym_read_cond_lit_repeat1, - STATE(1376), 3, + STATE(1789), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [191766] = 5, + [177980] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(557), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(6697), 1, + ACTIONS(7778), 1, sym__ws, - STATE(3218), 1, + STATE(3279), 1, aux_sym_read_cond_lit_repeat1, - STATE(1049), 3, + STATE(2403), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [191784] = 5, - ACTIONS(3), 1, + [177998] = 5, + ACTIONS(47), 1, sym_block_comment, - ACTIONS(6699), 1, - anon_sym_DQUOTE, - ACTIONS(6703), 1, - anon_sym_TILDE, - ACTIONS(6701), 2, - aux_sym_str_lit_token1, - aux_sym_str_lit_token2, - STATE(3216), 2, - sym_format_specifier, - aux_sym_str_lit_repeat1, - [191802] = 5, + ACTIONS(576), 1, + anon_sym_LPAREN, + ACTIONS(7748), 1, + sym__ws, + STATE(3353), 1, + aux_sym_read_cond_lit_repeat1, + STATE(1014), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [178016] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(6705), 1, + ACTIONS(7780), 1, anon_sym_DQUOTE, - ACTIONS(6709), 1, + ACTIONS(7784), 1, anon_sym_TILDE, - ACTIONS(6707), 2, + ACTIONS(7782), 2, aux_sym_str_lit_token1, aux_sym_str_lit_token2, - STATE(3222), 2, + STATE(3236), 2, sym_format_specifier, aux_sym_str_lit_repeat1, - [191820] = 5, + [178034] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(775), 1, + anon_sym_LPAREN, + ACTIONS(7786), 1, + sym__ws, + STATE(3237), 1, + aux_sym_read_cond_lit_repeat1, + STATE(896), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [178052] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(819), 1, + anon_sym_LPAREN, + ACTIONS(7788), 1, + sym__ws, + STATE(3239), 1, + aux_sym_read_cond_lit_repeat1, + STATE(1755), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [178070] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3988), 1, + ACTIONS(5057), 1, anon_sym_DQUOTE, - ACTIONS(6711), 1, + ACTIONS(7790), 1, anon_sym_TILDE, - ACTIONS(6675), 2, + ACTIONS(7764), 2, aux_sym_str_lit_token1, aux_sym_str_lit_token2, - STATE(3313), 2, + STATE(3323), 2, sym_format_specifier, aux_sym_str_lit_repeat1, - [191838] = 5, + [178088] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(541), 1, + ACTIONS(775), 1, anon_sym_LPAREN, - ACTIONS(6667), 1, + ACTIONS(7748), 1, sym__ws, - STATE(3351), 1, + STATE(3353), 1, aux_sym_read_cond_lit_repeat1, - STATE(849), 3, + STATE(846), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [191856] = 5, + [178106] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(741), 1, + ACTIONS(288), 1, anon_sym_LPAREN, - ACTIONS(6667), 1, + ACTIONS(7792), 1, sym__ws, - STATE(3351), 1, + STATE(3313), 1, aux_sym_read_cond_lit_repeat1, - STATE(1779), 3, + STATE(2172), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [191874] = 5, + [178124] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(541), 1, + ACTIONS(819), 1, anon_sym_LPAREN, - ACTIONS(6713), 1, + ACTIONS(7748), 1, sym__ws, - STATE(3238), 1, + STATE(3353), 1, aux_sym_read_cond_lit_repeat1, - STATE(858), 3, + STATE(1719), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [191892] = 5, + [178142] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(741), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(6715), 1, + ACTIONS(7748), 1, sym__ws, - STATE(3239), 1, + STATE(3353), 1, aux_sym_read_cond_lit_repeat1, - STATE(1770), 3, + STATE(1870), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [191910] = 5, + [178160] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(541), 1, + ACTIONS(869), 1, anon_sym_LPAREN, - ACTIONS(6667), 1, + ACTIONS(7748), 1, sym__ws, - STATE(3351), 1, + STATE(3353), 1, aux_sym_read_cond_lit_repeat1, - STATE(871), 3, + STATE(1743), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [191928] = 5, + [178178] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(741), 1, + ACTIONS(775), 1, anon_sym_LPAREN, - ACTIONS(6667), 1, + ACTIONS(7794), 1, sym__ws, - STATE(3351), 1, + STATE(3245), 1, aux_sym_read_cond_lit_repeat1, - STATE(1747), 3, + STATE(831), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [191946] = 5, + [178196] = 5, + ACTIONS(29), 1, + anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(741), 1, + ACTIONS(7748), 1, + sym__ws, + STATE(3353), 1, + aux_sym_read_cond_lit_repeat1, + STATE(1506), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [178214] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(819), 1, + anon_sym_LPAREN, + ACTIONS(7796), 1, + sym__ws, + STATE(3246), 1, + aux_sym_read_cond_lit_repeat1, + STATE(1703), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [178232] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(775), 1, + anon_sym_LPAREN, + ACTIONS(7748), 1, + sym__ws, + STATE(3353), 1, + aux_sym_read_cond_lit_repeat1, + STATE(819), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [178250] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(819), 1, anon_sym_LPAREN, - ACTIONS(6717), 1, + ACTIONS(7748), 1, sym__ws, - STATE(3219), 1, + STATE(3353), 1, aux_sym_read_cond_lit_repeat1, - STATE(1661), 3, + STATE(1683), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [191964] = 5, + [178268] = 5, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(7798), 1, + anon_sym_DQUOTE, + ACTIONS(7802), 1, + anon_sym_TILDE, + ACTIONS(7800), 2, + aux_sym_str_lit_token1, + aux_sym_str_lit_token2, + STATE(3248), 2, + sym_format_specifier, + aux_sym_str_lit_repeat1, + [178286] = 5, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(5087), 1, + anon_sym_DQUOTE, + ACTIONS(7804), 1, + anon_sym_TILDE, + ACTIONS(7764), 2, + aux_sym_str_lit_token1, + aux_sym_str_lit_token2, + STATE(3323), 2, + sym_format_specifier, + aux_sym_str_lit_repeat1, + [178304] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(6719), 1, + ACTIONS(7806), 1, anon_sym_DQUOTE, - ACTIONS(6723), 1, + ACTIONS(7810), 1, anon_sym_TILDE, - ACTIONS(6721), 2, + ACTIONS(7808), 2, aux_sym_str_lit_token1, aux_sym_str_lit_token2, - STATE(3245), 2, + STATE(3270), 2, sym_format_specifier, aux_sym_str_lit_repeat1, - [191982] = 5, + [178322] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(6725), 1, + ACTIONS(7812), 1, sym__ws, - STATE(3246), 1, + STATE(3273), 1, aux_sym_read_cond_lit_repeat1, - STATE(2403), 3, + STATE(2406), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [192000] = 5, + [178340] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(541), 1, + ACTIONS(775), 1, anon_sym_LPAREN, - ACTIONS(6727), 1, + ACTIONS(7814), 1, sym__ws, - STATE(3247), 1, + STATE(3274), 1, aux_sym_read_cond_lit_repeat1, - STATE(831), 3, + STATE(903), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [192018] = 5, + [178358] = 5, + ACTIONS(29), 1, + anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(631), 1, - anon_sym_LPAREN, - ACTIONS(6667), 1, + ACTIONS(7748), 1, sym__ws, - STATE(3351), 1, + STATE(3353), 1, aux_sym_read_cond_lit_repeat1, - STATE(2242), 3, + STATE(1530), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [192036] = 5, + [178376] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(4008), 1, + ACTIONS(7816), 1, anon_sym_DQUOTE, - ACTIONS(6729), 1, + ACTIONS(7820), 1, anon_sym_TILDE, - ACTIONS(6675), 2, + ACTIONS(7818), 2, aux_sym_str_lit_token1, aux_sym_str_lit_token2, - STATE(3313), 2, + STATE(3256), 2, sym_format_specifier, aux_sym_str_lit_repeat1, - [192054] = 5, + [178394] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, + ACTIONS(869), 1, anon_sym_LPAREN, - ACTIONS(6667), 1, + ACTIONS(7822), 1, sym__ws, - STATE(3351), 1, + STATE(3257), 1, aux_sym_read_cond_lit_repeat1, - STATE(2386), 3, + STATE(2141), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [192072] = 5, + [178412] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(541), 1, + ACTIONS(869), 1, anon_sym_LPAREN, - ACTIONS(6667), 1, + ACTIONS(7824), 1, sym__ws, - STATE(3351), 1, + STATE(3262), 1, aux_sym_read_cond_lit_repeat1, - STATE(850), 3, + STATE(2263), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [192090] = 5, + [178430] = 5, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(5073), 1, + anon_sym_DQUOTE, + ACTIONS(7826), 1, + anon_sym_TILDE, + ACTIONS(7764), 2, + aux_sym_str_lit_token1, + aux_sym_str_lit_token2, + STATE(3323), 2, + sym_format_specifier, + aux_sym_str_lit_repeat1, + [178448] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, + ACTIONS(869), 1, anon_sym_LPAREN, - ACTIONS(6731), 1, + ACTIONS(7748), 1, sym__ws, - STATE(3251), 1, + STATE(3353), 1, aux_sym_read_cond_lit_repeat1, - STATE(2390), 3, + STATE(2139), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [192108] = 5, + [178466] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(541), 1, + ACTIONS(604), 1, anon_sym_LPAREN, - ACTIONS(6733), 1, + ACTIONS(7748), 1, sym__ws, - STATE(3252), 1, + STATE(3353), 1, aux_sym_read_cond_lit_repeat1, - STATE(859), 3, + STATE(2253), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [192126] = 5, + [178484] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(631), 1, + ACTIONS(604), 1, anon_sym_LPAREN, - ACTIONS(6667), 1, + ACTIONS(7748), 1, sym__ws, - STATE(3351), 1, + STATE(3353), 1, aux_sym_read_cond_lit_repeat1, - STATE(2061), 3, + STATE(2399), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [192144] = 5, + [178502] = 5, + ACTIONS(29), 1, + anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, - anon_sym_LPAREN, - ACTIONS(6667), 1, + ACTIONS(7828), 1, sym__ws, - STATE(3351), 1, + STATE(3261), 1, aux_sym_read_cond_lit_repeat1, - STATE(2394), 3, + STATE(1548), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [192162] = 5, + [178520] = 5, + ACTIONS(29), 1, + anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(541), 1, - anon_sym_LPAREN, - ACTIONS(6667), 1, + ACTIONS(7748), 1, sym__ws, - STATE(3351), 1, + STATE(3353), 1, aux_sym_read_cond_lit_repeat1, - STATE(872), 3, + STATE(1529), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [192180] = 5, + [178538] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(693), 1, + ACTIONS(869), 1, anon_sym_LPAREN, - ACTIONS(6667), 1, + ACTIONS(7748), 1, sym__ws, - STATE(3351), 1, + STATE(3353), 1, aux_sym_read_cond_lit_repeat1, - STATE(1512), 3, + STATE(2294), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [192198] = 5, + [178556] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(693), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(6667), 1, + ACTIONS(7748), 1, sym__ws, - STATE(3351), 1, + STATE(3353), 1, aux_sym_read_cond_lit_repeat1, - STATE(1510), 3, + STATE(1928), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [192216] = 5, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(6735), 1, - anon_sym_DQUOTE, - ACTIONS(6739), 1, - anon_sym_TILDE, - ACTIONS(6737), 2, - aux_sym_str_lit_token1, - aux_sym_str_lit_token2, - STATE(3268), 2, - sym_format_specifier, - aux_sym_str_lit_repeat1, - [192234] = 5, + [178574] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(631), 1, + ACTIONS(869), 1, anon_sym_LPAREN, - ACTIONS(6667), 1, + ACTIONS(7830), 1, sym__ws, - STATE(3351), 1, + STATE(3283), 1, aux_sym_read_cond_lit_repeat1, - STATE(1347), 3, + STATE(2135), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [192252] = 5, + [178592] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, + ACTIONS(869), 1, anon_sym_LPAREN, - ACTIONS(6667), 1, + ACTIONS(7832), 1, sym__ws, - STATE(3351), 1, + STATE(3266), 1, aux_sym_read_cond_lit_repeat1, - STATE(1858), 3, + STATE(2276), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [192270] = 5, - ACTIONS(29), 1, - anon_sym_LPAREN, + [178610] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6741), 1, + ACTIONS(869), 1, + anon_sym_LPAREN, + ACTIONS(7748), 1, sym__ws, - STATE(3279), 1, + STATE(3353), 1, aux_sym_read_cond_lit_repeat1, - STATE(1578), 3, + STATE(2253), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [192288] = 5, + [178628] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(693), 1, + ACTIONS(576), 1, anon_sym_LPAREN, - ACTIONS(6743), 1, + ACTIONS(7748), 1, sym__ws, - STATE(3254), 1, + STATE(3353), 1, aux_sym_read_cond_lit_repeat1, - STATE(1402), 3, + STATE(1042), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [192306] = 5, + [178646] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(829), 1, + ACTIONS(921), 1, anon_sym_LPAREN, - ACTIONS(6745), 1, + ACTIONS(7748), 1, sym__ws, - STATE(3269), 1, + STATE(3353), 1, aux_sym_read_cond_lit_repeat1, - STATE(2403), 3, + STATE(1239), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [192324] = 5, + [178664] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(829), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(6747), 1, + ACTIONS(7834), 1, sym__ws, - STATE(3271), 1, + STATE(3319), 1, aux_sym_read_cond_lit_repeat1, - STATE(2331), 3, + STATE(2276), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [192342] = 5, + [178682] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(6749), 1, + ACTIONS(5077), 1, anon_sym_DQUOTE, - ACTIONS(6753), 1, + ACTIONS(7836), 1, anon_sym_TILDE, - ACTIONS(6751), 2, + ACTIONS(7764), 2, aux_sym_str_lit_token1, aux_sym_str_lit_token2, - STATE(3265), 2, + STATE(3323), 2, sym_format_specifier, aux_sym_str_lit_repeat1, - [192360] = 5, + [178700] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(557), 1, + ACTIONS(604), 1, anon_sym_LPAREN, - ACTIONS(6667), 1, + ACTIONS(7838), 1, sym__ws, - STATE(3351), 1, + STATE(3258), 1, aux_sym_read_cond_lit_repeat1, - STATE(1082), 3, + STATE(2276), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [192378] = 5, + [178718] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, + ACTIONS(604), 1, anon_sym_LPAREN, - ACTIONS(6667), 1, + ACTIONS(7840), 1, sym__ws, - STATE(3351), 1, + STATE(3259), 1, aux_sym_read_cond_lit_repeat1, - STATE(1347), 3, + STATE(2403), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [192396] = 5, - ACTIONS(3), 1, + [178736] = 5, + ACTIONS(47), 1, sym_block_comment, - ACTIONS(4012), 1, - anon_sym_DQUOTE, - ACTIONS(6755), 1, - anon_sym_TILDE, - ACTIONS(6675), 2, - aux_sym_str_lit_token1, - aux_sym_str_lit_token2, - STATE(3313), 2, - sym_format_specifier, - aux_sym_str_lit_repeat1, - [192414] = 5, + ACTIONS(536), 1, + anon_sym_LPAREN, + ACTIONS(7748), 1, + sym__ws, + STATE(3353), 1, + aux_sym_read_cond_lit_repeat1, + STATE(2404), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [178754] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(277), 1, + ACTIONS(775), 1, anon_sym_LPAREN, - ACTIONS(6757), 1, + ACTIONS(7748), 1, sym__ws, - STATE(3292), 1, + STATE(3353), 1, aux_sym_read_cond_lit_repeat1, - STATE(2125), 3, + STATE(845), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [192432] = 5, + [178772] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(6759), 1, + ACTIONS(7748), 1, sym__ws, - STATE(3293), 1, + STATE(3353), 1, aux_sym_read_cond_lit_repeat1, - STATE(2331), 3, + STATE(2294), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [192450] = 5, + [178790] = 5, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(5065), 1, + anon_sym_DQUOTE, + ACTIONS(7842), 1, + anon_sym_TILDE, + ACTIONS(7764), 2, + aux_sym_str_lit_token1, + aux_sym_str_lit_token2, + STATE(3323), 2, + sym_format_specifier, + aux_sym_str_lit_repeat1, + [178808] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3982), 1, + ACTIONS(7844), 1, anon_sym_DQUOTE, - ACTIONS(6761), 1, + ACTIONS(7848), 1, anon_sym_TILDE, - ACTIONS(6675), 2, + ACTIONS(7846), 2, aux_sym_str_lit_token1, aux_sym_str_lit_token2, - STATE(3313), 2, + STATE(3220), 2, sym_format_specifier, aux_sym_str_lit_repeat1, - [192468] = 5, + [178826] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(829), 1, + ACTIONS(775), 1, + anon_sym_LPAREN, + ACTIONS(7850), 1, + sym__ws, + STATE(3281), 1, + aux_sym_read_cond_lit_repeat1, + STATE(830), 3, + sym__bare_list_lit, + sym_defun, + sym_loop_macro, + [178844] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(6667), 1, + ACTIONS(7748), 1, sym__ws, - STATE(3351), 1, + STATE(3353), 1, aux_sym_read_cond_lit_repeat1, - STATE(2386), 3, + STATE(2399), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [192486] = 5, + [178862] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3990), 1, + ACTIONS(5063), 1, anon_sym_DQUOTE, - ACTIONS(6763), 1, + ACTIONS(7852), 1, anon_sym_TILDE, - ACTIONS(6675), 2, + ACTIONS(7764), 2, aux_sym_str_lit_token1, aux_sym_str_lit_token2, - STATE(3313), 2, + STATE(3323), 2, sym_format_specifier, aux_sym_str_lit_repeat1, - [192504] = 5, + [178880] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(829), 1, + ACTIONS(775), 1, anon_sym_LPAREN, - ACTIONS(6667), 1, + ACTIONS(7748), 1, sym__ws, - STATE(3351), 1, + STATE(3353), 1, aux_sym_read_cond_lit_repeat1, - STATE(2318), 3, + STATE(835), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [192522] = 5, + [178898] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(631), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(6765), 1, + ACTIONS(7748), 1, sym__ws, - STATE(3256), 1, + STATE(3353), 1, aux_sym_read_cond_lit_repeat1, - STATE(1355), 3, + STATE(1871), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [192540] = 5, + [178916] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, + ACTIONS(869), 1, anon_sym_LPAREN, - ACTIONS(6767), 1, + ACTIONS(7748), 1, sym__ws, - STATE(3257), 1, + STATE(3353), 1, aux_sym_read_cond_lit_repeat1, - STATE(1852), 3, + STATE(2127), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [192558] = 5, + [178934] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(829), 1, + ACTIONS(576), 1, anon_sym_LPAREN, - ACTIONS(6769), 1, + ACTIONS(7748), 1, sym__ws, - STATE(3289), 1, + STATE(3353), 1, aux_sym_read_cond_lit_repeat1, - STATE(2390), 3, + STATE(1015), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [192576] = 5, + [178952] = 5, + ACTIONS(29), 1, + anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(829), 1, - anon_sym_LPAREN, - ACTIONS(6771), 1, + ACTIONS(7854), 1, sym__ws, - STATE(3290), 1, + STATE(3252), 1, aux_sym_read_cond_lit_repeat1, - STATE(2293), 3, + STATE(1549), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [192594] = 5, + [178970] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(631), 1, + ACTIONS(921), 1, anon_sym_LPAREN, - ACTIONS(6667), 1, + ACTIONS(7856), 1, sym__ws, - STATE(3351), 1, + STATE(3268), 1, aux_sym_read_cond_lit_repeat1, - STATE(1288), 3, + STATE(1203), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [192612] = 5, + [178988] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, + ACTIONS(604), 1, anon_sym_LPAREN, - ACTIONS(6667), 1, + ACTIONS(7858), 1, sym__ws, - STATE(3351), 1, + STATE(3213), 1, aux_sym_read_cond_lit_repeat1, - STATE(1854), 3, + STATE(2263), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [192630] = 5, + [179006] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(693), 1, + ACTIONS(288), 1, anon_sym_LPAREN, - ACTIONS(6773), 1, + ACTIONS(7748), 1, sym__ws, - STATE(3286), 1, + STATE(3353), 1, aux_sym_read_cond_lit_repeat1, - STATE(1500), 3, + STATE(2178), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [192648] = 5, - ACTIONS(29), 1, - anon_sym_LPAREN, + [179024] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6667), 1, + ACTIONS(604), 1, + anon_sym_LPAREN, + ACTIONS(7860), 1, sym__ws, - STATE(3351), 1, + STATE(3309), 1, aux_sym_read_cond_lit_repeat1, - STATE(1601), 3, + STATE(2406), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [192666] = 5, + [179042] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(693), 1, + ACTIONS(921), 1, anon_sym_LPAREN, - ACTIONS(6775), 1, + ACTIONS(7748), 1, sym__ws, - STATE(3253), 1, + STATE(3353), 1, aux_sym_read_cond_lit_repeat1, - STATE(1401), 3, + STATE(1208), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [192684] = 5, + [179060] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3992), 1, + ACTIONS(7862), 1, anon_sym_DQUOTE, - ACTIONS(6777), 1, + ACTIONS(7866), 1, anon_sym_TILDE, - ACTIONS(6675), 2, + ACTIONS(7864), 2, aux_sym_str_lit_token1, aux_sym_str_lit_token2, - STATE(3313), 2, + STATE(3280), 2, sym_format_specifier, aux_sym_str_lit_repeat1, - [192702] = 5, + [179078] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(693), 1, - anon_sym_LPAREN, - ACTIONS(6667), 1, - sym__ws, - STATE(3351), 1, - aux_sym_read_cond_lit_repeat1, - STATE(1414), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [192720] = 5, - ACTIONS(29), 1, - anon_sym_LPAREN, - ACTIONS(47), 1, + ACTIONS(5037), 1, + aux_sym_num_lit_token1, + ACTIONS(5045), 1, + anon_sym_SQUOTE, + ACTIONS(5954), 1, + anon_sym_COMMA, + ACTIONS(5958), 1, + aux_sym_format_directive_type_token11, + STATE(2412), 2, + sym__format_token, + aux_sym_format_modifiers_repeat1, + [179098] = 5, + ACTIONS(3), 1, sym_block_comment, - ACTIONS(6779), 1, - sym__ws, - STATE(3212), 1, - aux_sym_read_cond_lit_repeat1, - STATE(1579), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [192738] = 5, - ACTIONS(29), 1, - anon_sym_LPAREN, + ACTIONS(5041), 1, + anon_sym_DQUOTE, + ACTIONS(7868), 1, + anon_sym_TILDE, + ACTIONS(7764), 2, + aux_sym_str_lit_token1, + aux_sym_str_lit_token2, + STATE(3323), 2, + sym_format_specifier, + aux_sym_str_lit_repeat1, + [179116] = 5, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(7870), 1, + anon_sym_DQUOTE, + ACTIONS(7874), 1, + anon_sym_TILDE, + ACTIONS(7872), 2, + aux_sym_str_lit_token1, + aux_sym_str_lit_token2, + STATE(3326), 2, + sym_format_specifier, + aux_sym_str_lit_repeat1, + [179134] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6781), 1, - sym__ws, - STATE(3322), 1, - aux_sym_read_cond_lit_repeat1, - STATE(1641), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [192756] = 5, - ACTIONS(29), 1, + ACTIONS(288), 1, anon_sym_LPAREN, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(6783), 1, + ACTIONS(7876), 1, sym__ws, - STATE(3325), 1, + STATE(3288), 1, aux_sym_read_cond_lit_repeat1, - STATE(1574), 3, + STATE(2181), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [192774] = 5, + [179152] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(693), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(6667), 1, + ACTIONS(7878), 1, sym__ws, - STATE(3351), 1, + STATE(3275), 1, aux_sym_read_cond_lit_repeat1, - STATE(1416), 3, + STATE(2263), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [192792] = 5, + [179170] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(4002), 1, + ACTIONS(7880), 1, anon_sym_DQUOTE, - ACTIONS(6785), 1, + ACTIONS(7884), 1, anon_sym_TILDE, - ACTIONS(6675), 2, + ACTIONS(7882), 2, aux_sym_str_lit_token1, aux_sym_str_lit_token2, - STATE(3313), 2, + STATE(3276), 2, sym_format_specifier, aux_sym_str_lit_repeat1, - [192810] = 5, + [179188] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(693), 1, + ACTIONS(921), 1, anon_sym_LPAREN, - ACTIONS(6787), 1, + ACTIONS(7886), 1, sym__ws, - STATE(3282), 1, + STATE(3290), 1, aux_sym_read_cond_lit_repeat1, - STATE(1498), 3, + STATE(1195), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [192828] = 5, + [179206] = 5, + ACTIONS(29), 1, + anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(829), 1, - anon_sym_LPAREN, - ACTIONS(6667), 1, + ACTIONS(7888), 1, sym__ws, - STATE(3351), 1, + STATE(3243), 1, aux_sym_read_cond_lit_repeat1, - STATE(2394), 3, + STATE(1521), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [192846] = 5, + [179224] = 5, + ACTIONS(29), 1, + anon_sym_LPAREN, ACTIONS(47), 1, sym_block_comment, - ACTIONS(829), 1, - anon_sym_LPAREN, - ACTIONS(6667), 1, + ACTIONS(7890), 1, sym__ws, - STATE(3351), 1, + STATE(3221), 1, aux_sym_read_cond_lit_repeat1, - STATE(2242), 3, + STATE(1520), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [192864] = 5, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(6789), 1, - anon_sym_DQUOTE, - ACTIONS(6793), 1, - anon_sym_TILDE, - ACTIONS(6791), 2, - aux_sym_str_lit_token1, - aux_sym_str_lit_token2, - STATE(3287), 2, - sym_format_specifier, - aux_sym_str_lit_repeat1, - [192882] = 5, + [179242] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(277), 1, + ACTIONS(288), 1, anon_sym_LPAREN, - ACTIONS(6667), 1, + ACTIONS(7748), 1, sym__ws, - STATE(3351), 1, + STATE(3353), 1, aux_sym_read_cond_lit_repeat1, - STATE(2104), 3, + STATE(1743), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [192900] = 5, + [179260] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, + ACTIONS(921), 1, anon_sym_LPAREN, - ACTIONS(6667), 1, + ACTIONS(7748), 1, sym__ws, - STATE(3351), 1, + STATE(3353), 1, aux_sym_read_cond_lit_repeat1, - STATE(2318), 3, + STATE(1174), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [192918] = 5, + [179278] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(631), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(6795), 1, + ACTIONS(7892), 1, sym__ws, - STATE(3276), 1, + STATE(3310), 1, aux_sym_read_cond_lit_repeat1, - STATE(1376), 3, + STATE(1382), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [192936] = 5, + [179296] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, + ACTIONS(288), 1, anon_sym_LPAREN, - ACTIONS(6797), 1, + ACTIONS(7894), 1, sym__ws, - STATE(3277), 1, + STATE(3301), 1, aux_sym_read_cond_lit_repeat1, - STATE(1856), 3, + STATE(1789), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [192954] = 5, + [179314] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(277), 1, + ACTIONS(921), 1, anon_sym_LPAREN, - ACTIONS(6799), 1, + ACTIONS(7896), 1, sym__ws, STATE(3302), 1, aux_sym_read_cond_lit_repeat1, - STATE(2084), 3, + STATE(1220), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [192972] = 5, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(6801), 1, - anon_sym_DQUOTE, - ACTIONS(6805), 1, - anon_sym_TILDE, - ACTIONS(6803), 2, - aux_sym_str_lit_token1, - aux_sym_str_lit_token2, - STATE(3281), 2, - sym_format_specifier, - aux_sym_str_lit_repeat1, - [192990] = 5, + [179332] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(6807), 1, + ACTIONS(7898), 1, sym__ws, - STATE(3303), 1, + STATE(3311), 1, aux_sym_read_cond_lit_repeat1, - STATE(2293), 3, + STATE(1381), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [193008] = 5, + [179350] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(631), 1, + ACTIONS(288), 1, anon_sym_LPAREN, - ACTIONS(6809), 1, + ACTIONS(7748), 1, sym__ws, - STATE(3244), 1, + STATE(3353), 1, aux_sym_read_cond_lit_repeat1, - STATE(2293), 3, + STATE(1809), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [193026] = 5, + [179368] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(583), 1, + ACTIONS(921), 1, anon_sym_LPAREN, - ACTIONS(6667), 1, + ACTIONS(7748), 1, sym__ws, - STATE(3351), 1, + STATE(3353), 1, aux_sym_read_cond_lit_repeat1, - STATE(1263), 3, + STATE(1214), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [193044] = 5, + [179386] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, + ACTIONS(604), 1, anon_sym_LPAREN, - ACTIONS(6811), 1, + ACTIONS(7748), 1, sym__ws, - STATE(3264), 1, + STATE(3353), 1, aux_sym_read_cond_lit_repeat1, - STATE(1355), 3, + STATE(2404), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [193062] = 5, + [179404] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(277), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(6667), 1, + ACTIONS(7748), 1, sym__ws, - STATE(3351), 1, + STATE(3353), 1, aux_sym_read_cond_lit_repeat1, - STATE(2083), 3, + STATE(1346), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [193080] = 5, + [179422] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(789), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(6667), 1, + ACTIONS(7748), 1, sym__ws, - STATE(3351), 1, + STATE(3353), 1, aux_sym_read_cond_lit_repeat1, - STATE(2242), 3, + STATE(1345), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [193098] = 5, + [179440] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(6813), 1, + ACTIONS(7900), 1, anon_sym_DQUOTE, - ACTIONS(6817), 1, + ACTIONS(7904), 1, anon_sym_TILDE, - ACTIONS(6815), 2, + ACTIONS(7902), 2, aux_sym_str_lit_token1, aux_sym_str_lit_token2, - STATE(3321), 2, + STATE(3293), 2, sym_format_specifier, aux_sym_str_lit_repeat1, - [193116] = 6, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(3954), 1, - aux_sym_num_lit_token1, - ACTIONS(3962), 1, - anon_sym_SQUOTE, - ACTIONS(4865), 1, - anon_sym_COMMA, - ACTIONS(4869), 1, - aux_sym_format_directive_type_token11, - STATE(2381), 2, - sym__format_token, - aux_sym_format_modifiers_repeat1, - [193136] = 5, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(583), 1, - anon_sym_LPAREN, - ACTIONS(6819), 1, - sym__ws, - STATE(3300), 1, - aux_sym_read_cond_lit_repeat1, - STATE(1261), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [193154] = 5, + [179458] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(631), 1, + ACTIONS(288), 1, anon_sym_LPAREN, - ACTIONS(6821), 1, + ACTIONS(7748), 1, sym__ws, - STATE(3316), 1, + STATE(3353), 1, aux_sym_read_cond_lit_repeat1, - STATE(2039), 3, + STATE(2170), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [193172] = 5, + [179476] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(631), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(6667), 1, + ACTIONS(7906), 1, sym__ws, - STATE(3351), 1, + STATE(3318), 1, aux_sym_read_cond_lit_repeat1, - STATE(2318), 3, + STATE(1334), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [193190] = 5, + [179494] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(583), 1, + ACTIONS(288), 1, anon_sym_LPAREN, - ACTIONS(6667), 1, + ACTIONS(7908), 1, sym__ws, - STATE(3351), 1, + STATE(3307), 1, aux_sym_read_cond_lit_repeat1, - STATE(1245), 3, + STATE(1807), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [193208] = 5, + [179512] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(631), 1, + ACTIONS(921), 1, anon_sym_LPAREN, - ACTIONS(6823), 1, + ACTIONS(7910), 1, sym__ws, STATE(3308), 1, aux_sym_read_cond_lit_repeat1, - STATE(2331), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [193226] = 5, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(583), 1, - anon_sym_LPAREN, - ACTIONS(6825), 1, - sym__ws, - STATE(3317), 1, - aux_sym_read_cond_lit_repeat1, - STATE(1200), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [193244] = 5, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(277), 1, - anon_sym_LPAREN, - ACTIONS(6827), 1, - sym__ws, - STATE(3320), 1, - aux_sym_read_cond_lit_repeat1, - STATE(2132), 3, + STATE(1169), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [193262] = 5, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(6829), 1, - anon_sym_DQUOTE, - ACTIONS(6834), 1, - anon_sym_TILDE, - ACTIONS(6831), 2, - aux_sym_str_lit_token1, - aux_sym_str_lit_token2, - STATE(3313), 2, - sym_format_specifier, - aux_sym_str_lit_repeat1, - [193280] = 5, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(6837), 1, - anon_sym_DQUOTE, - ACTIONS(6841), 1, - anon_sym_TILDE, - ACTIONS(6839), 2, - aux_sym_str_lit_token1, - aux_sym_str_lit_token2, - STATE(3270), 2, - sym_format_specifier, - aux_sym_str_lit_repeat1, - [193298] = 5, + [179530] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(583), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(6843), 1, + ACTIONS(7912), 1, sym__ws, - STATE(3309), 1, + STATE(3321), 1, aux_sym_read_cond_lit_repeat1, - STATE(1206), 3, + STATE(1333), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [193316] = 5, + [179548] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(631), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(6667), 1, + ACTIONS(7748), 1, sym__ws, - STATE(3351), 1, + STATE(3353), 1, aux_sym_read_cond_lit_repeat1, - STATE(2055), 3, + STATE(1317), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [193334] = 5, + [179566] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(583), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(6667), 1, + ACTIONS(7748), 1, sym__ws, - STATE(3351), 1, + STATE(3353), 1, aux_sym_read_cond_lit_repeat1, - STATE(1182), 3, + STATE(2253), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [193352] = 5, + [179584] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(277), 1, + ACTIONS(576), 1, anon_sym_LPAREN, - ACTIONS(6667), 1, + ACTIONS(7914), 1, sym__ws, - STATE(3351), 1, + STATE(3267), 1, aux_sym_read_cond_lit_repeat1, - STATE(2090), 3, + STATE(1065), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [193370] = 5, + [179602] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(583), 1, + ACTIONS(486), 1, anon_sym_LPAREN, - ACTIONS(6667), 1, + ACTIONS(7748), 1, sym__ws, - STATE(3351), 1, + STATE(3353), 1, aux_sym_read_cond_lit_repeat1, - STATE(1173), 3, + STATE(1316), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [193388] = 5, + [179620] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(277), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(6667), 1, + ACTIONS(7916), 1, sym__ws, - STATE(3351), 1, + STATE(3263), 1, aux_sym_read_cond_lit_repeat1, - STATE(2122), 3, + STATE(1911), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [193406] = 5, + [179638] = 5, ACTIONS(3), 1, sym_block_comment, - ACTIONS(3978), 1, + ACTIONS(7918), 1, anon_sym_DQUOTE, - ACTIONS(6845), 1, + ACTIONS(7923), 1, anon_sym_TILDE, - ACTIONS(6675), 2, + ACTIONS(7920), 2, aux_sym_str_lit_token1, aux_sym_str_lit_token2, - STATE(3313), 2, + STATE(3323), 2, sym_format_specifier, aux_sym_str_lit_repeat1, - [193424] = 5, - ACTIONS(29), 1, - anon_sym_LPAREN, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(6667), 1, - sym__ws, - STATE(3351), 1, - aux_sym_read_cond_lit_repeat1, - STATE(1637), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [193442] = 5, + [179656] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(277), 1, + ACTIONS(536), 1, anon_sym_LPAREN, - ACTIONS(6847), 1, + ACTIONS(7926), 1, sym__ws, - STATE(3318), 1, + STATE(3282), 1, aux_sym_read_cond_lit_repeat1, - STATE(2078), 3, + STATE(1937), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [193460] = 5, + [179674] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(583), 1, + ACTIONS(576), 1, anon_sym_LPAREN, - ACTIONS(6849), 1, + ACTIONS(7928), 1, sym__ws, - STATE(3319), 1, + STATE(3284), 1, aux_sym_read_cond_lit_repeat1, - STATE(1177), 3, + STATE(1032), 3, sym__bare_list_lit, sym_defun, sym_loop_macro, - [193478] = 5, - ACTIONS(29), 1, - anon_sym_LPAREN, + [179692] = 5, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(5083), 1, + anon_sym_DQUOTE, + ACTIONS(7930), 1, + anon_sym_TILDE, + ACTIONS(7764), 2, + aux_sym_str_lit_token1, + aux_sym_str_lit_token2, + STATE(3323), 2, + sym_format_specifier, + aux_sym_str_lit_repeat1, + [179710] = 6, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6667), 1, - sym__ws, - STATE(3351), 1, - aux_sym_read_cond_lit_repeat1, - STATE(1606), 3, - sym__bare_list_lit, - sym_defun, - sym_loop_macro, - [193496] = 3, + ACTIONS(7932), 1, + anon_sym_cl, + ACTIONS(7934), 1, + aux_sym__sym_lit_without_slash_token1, + STATE(3329), 1, + aux_sym__sym_lit_without_slash_repeat1, + STATE(3359), 1, + sym__sym_lit_without_slash, + STATE(3479), 1, + sym__package_lit_without_slash, + [179729] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6851), 1, + ACTIONS(7936), 1, anon_sym_loop, - ACTIONS(6853), 4, + ACTIONS(7938), 4, anon_sym_defun, anon_sym_defmacro, anon_sym_defgeneric, anon_sym_defmethod, - [193509] = 3, + [179742] = 5, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7940), 1, + anon_sym_COLON, + ACTIONS(7944), 1, + aux_sym__sym_lit_without_slash_token1, + STATE(3332), 1, + aux_sym__sym_lit_without_slash_repeat1, + ACTIONS(7942), 2, + anon_sym_COLON_COLON, + anon_sym_SLASH, + [179759] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6855), 1, + ACTIONS(7946), 1, anon_sym_loop, - ACTIONS(6853), 4, + ACTIONS(7938), 4, anon_sym_defun, anon_sym_defmacro, anon_sym_defgeneric, anon_sym_defmethod, - [193522] = 3, + [179772] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6857), 1, + ACTIONS(7948), 1, anon_sym_loop, - ACTIONS(6853), 4, + ACTIONS(7938), 4, anon_sym_defun, anon_sym_defmacro, anon_sym_defgeneric, anon_sym_defmethod, - [193535] = 6, + [179785] = 5, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6859), 1, - anon_sym_cl, - ACTIONS(6861), 1, + ACTIONS(7950), 1, + anon_sym_COLON, + ACTIONS(7954), 1, aux_sym__sym_lit_without_slash_token1, - STATE(3336), 1, + STATE(3332), 1, aux_sym__sym_lit_without_slash_repeat1, - STATE(3353), 1, - sym__sym_lit_without_slash, - STATE(3443), 1, - sym__package_lit_without_slash, - [193554] = 3, + ACTIONS(7952), 2, + anon_sym_COLON_COLON, + anon_sym_SLASH, + [179802] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6863), 1, + ACTIONS(7957), 1, anon_sym_loop, - ACTIONS(6853), 4, + ACTIONS(7938), 4, anon_sym_defun, anon_sym_defmacro, anon_sym_defgeneric, anon_sym_defmethod, - [193567] = 3, + [179815] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6865), 1, + ACTIONS(7959), 1, anon_sym_loop, - ACTIONS(6853), 4, + ACTIONS(7938), 4, anon_sym_defun, anon_sym_defmacro, anon_sym_defgeneric, anon_sym_defmethod, - [193580] = 5, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(6867), 1, - anon_sym_COLON, - ACTIONS(6871), 1, - aux_sym__sym_lit_without_slash_token1, - STATE(3332), 1, - aux_sym__sym_lit_without_slash_repeat1, - ACTIONS(6869), 2, - anon_sym_COLON_COLON, - anon_sym_SLASH, - [193597] = 3, + [179828] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6874), 1, + ACTIONS(7961), 1, anon_sym_loop, - ACTIONS(6853), 4, + ACTIONS(7938), 4, anon_sym_defun, anon_sym_defmacro, anon_sym_defgeneric, anon_sym_defmethod, - [193610] = 3, + [179841] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6876), 1, + ACTIONS(7963), 1, anon_sym_loop, - ACTIONS(6853), 4, + ACTIONS(7938), 4, anon_sym_defun, anon_sym_defmacro, anon_sym_defgeneric, anon_sym_defmethod, - [193623] = 3, + [179854] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6878), 1, + ACTIONS(7965), 1, anon_sym_loop, - ACTIONS(6853), 4, + ACTIONS(7938), 4, anon_sym_defun, anon_sym_defmacro, anon_sym_defgeneric, anon_sym_defmethod, - [193636] = 5, + [179867] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6880), 1, - anon_sym_COLON, - ACTIONS(6884), 1, - aux_sym__sym_lit_without_slash_token1, - STATE(3332), 1, - aux_sym__sym_lit_without_slash_repeat1, - ACTIONS(6882), 2, - anon_sym_COLON_COLON, - anon_sym_SLASH, - [193653] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(6886), 1, + ACTIONS(7967), 1, anon_sym_loop, - ACTIONS(6853), 4, + ACTIONS(7938), 4, anon_sym_defun, anon_sym_defmacro, anon_sym_defgeneric, anon_sym_defmethod, - [193666] = 3, + [179880] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6888), 1, + ACTIONS(7969), 1, anon_sym_loop, - ACTIONS(6853), 4, + ACTIONS(7938), 4, anon_sym_defun, anon_sym_defmacro, anon_sym_defgeneric, anon_sym_defmethod, - [193679] = 2, + [179893] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(6890), 4, + ACTIONS(7971), 4, anon_sym_DQUOTE, aux_sym_str_lit_token1, aux_sym_str_lit_token2, anon_sym_TILDE, - [193689] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(6892), 1, - anon_sym_COLON, - ACTIONS(6894), 3, - anon_sym_COLON_COLON, - anon_sym_SLASH, - aux_sym__sym_lit_without_slash_token1, - [193701] = 2, + [179903] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(6896), 4, + ACTIONS(7973), 4, anon_sym_DQUOTE, aux_sym_str_lit_token1, aux_sym_str_lit_token2, anon_sym_TILDE, - [193711] = 2, + [179913] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(6898), 4, + ACTIONS(7975), 4, anon_sym_DQUOTE, aux_sym_str_lit_token1, aux_sym_str_lit_token2, anon_sym_TILDE, - [193721] = 2, + [179923] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(6900), 4, + ACTIONS(7977), 4, anon_sym_DQUOTE, aux_sym_str_lit_token1, aux_sym_str_lit_token2, anon_sym_TILDE, - [193731] = 2, + [179933] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(6902), 4, + ACTIONS(7979), 4, anon_sym_DQUOTE, aux_sym_str_lit_token1, aux_sym_str_lit_token2, anon_sym_TILDE, - [193741] = 2, + [179943] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7981), 1, + anon_sym_COLON, + ACTIONS(7983), 3, + anon_sym_COLON_COLON, + anon_sym_SLASH, + aux_sym__sym_lit_without_slash_token1, + [179955] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(6904), 4, + ACTIONS(7985), 4, anon_sym_DQUOTE, aux_sym_str_lit_token1, aux_sym_str_lit_token2, anon_sym_TILDE, - [193751] = 2, + [179965] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(6906), 4, + ACTIONS(7987), 4, anon_sym_DQUOTE, aux_sym_str_lit_token1, aux_sym_str_lit_token2, anon_sym_TILDE, - [193761] = 2, + [179975] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(6908), 4, + ACTIONS(7989), 4, anon_sym_DQUOTE, aux_sym_str_lit_token1, aux_sym_str_lit_token2, anon_sym_TILDE, - [193771] = 2, + [179985] = 2, ACTIONS(3), 1, sym_block_comment, - ACTIONS(6910), 4, + ACTIONS(7991), 4, anon_sym_DQUOTE, aux_sym_str_lit_token1, aux_sym_str_lit_token2, anon_sym_TILDE, - [193781] = 4, + [179995] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(787), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(6912), 1, + ACTIONS(7993), 1, anon_sym_EQ, - STATE(1357), 1, + STATE(1934), 1, sym_sym_lit, - [193794] = 4, + [180008] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(787), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(6914), 1, + ACTIONS(7995), 1, anon_sym_EQ, - STATE(1357), 1, + STATE(1934), 1, sym_sym_lit, - [193807] = 4, + [180021] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6916), 1, + ACTIONS(7944), 1, + aux_sym__sym_lit_without_slash_token1, + STATE(3329), 1, + aux_sym__sym_lit_without_slash_repeat1, + STATE(3468), 1, + sym__sym_lit_without_slash, + [180034] = 4, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(7997), 1, sym__ws, - ACTIONS(6919), 1, + ACTIONS(8000), 1, anon_sym_LPAREN, - STATE(3351), 1, + STATE(3353), 1, aux_sym_read_cond_lit_repeat1, - [193820] = 4, + [180047] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(787), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(6921), 1, + ACTIONS(8002), 1, anon_sym_EQ, - STATE(1357), 1, + STATE(1934), 1, sym_sym_lit, - [193833] = 4, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(6923), 1, - anon_sym_COLON, - ACTIONS(6925), 1, - anon_sym_COLON_COLON, - ACTIONS(6927), 1, - anon_sym_SLASH, - [193846] = 4, + [180060] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(787), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(6929), 1, + ACTIONS(8004), 1, anon_sym_EQ, - STATE(1357), 1, + STATE(1934), 1, sym_sym_lit, - [193859] = 4, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(6884), 1, - aux_sym__sym_lit_without_slash_token1, - STATE(3336), 1, - aux_sym__sym_lit_without_slash_repeat1, - STATE(3433), 1, - sym__sym_lit_without_slash, - [193872] = 4, + [180073] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(787), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(6931), 1, + ACTIONS(8006), 1, anon_sym_EQ, - STATE(1357), 1, + STATE(1934), 1, sym_sym_lit, - [193885] = 4, + [180086] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(787), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(6933), 1, + ACTIONS(8008), 1, anon_sym_EQ, - STATE(1357), 1, + STATE(1934), 1, sym_sym_lit, - [193898] = 4, + [180099] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(787), 1, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(6935), 1, + ACTIONS(8010), 1, anon_sym_EQ, - STATE(1357), 1, + STATE(1934), 1, sym_sym_lit, - [193911] = 4, + [180112] = 4, ACTIONS(47), 1, sym_block_comment, - ACTIONS(787), 1, + ACTIONS(8012), 1, + anon_sym_COLON, + ACTIONS(8014), 1, + anon_sym_COLON_COLON, + ACTIONS(8016), 1, + anon_sym_SLASH, + [180125] = 4, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(534), 1, aux_sym_sym_lit_token1, - ACTIONS(6937), 1, + ACTIONS(8018), 1, anon_sym_EQ, - STATE(1357), 1, + STATE(1934), 1, sym_sym_lit, - [193924] = 3, + [180138] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(5191), 1, + anon_sym_COLON_COLON, + ACTIONS(8020), 1, + anon_sym_COLON, + [180148] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6939), 1, + ACTIONS(8022), 1, aux_sym_num_lit_token1, - STATE(2082), 1, + STATE(2273), 1, sym_num_lit, - [193934] = 3, + [180158] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6941), 1, - aux_sym_sym_lit_token1, - STATE(1860), 1, - sym_kwd_symbol, - [193944] = 3, + ACTIONS(5103), 1, + anon_sym_COLON_COLON, + ACTIONS(8024), 1, + anon_sym_COLON, + [180168] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3880), 1, + ACTIONS(5189), 1, anon_sym_COLON, - ACTIONS(3882), 1, + ACTIONS(5191), 1, anon_sym_COLON_COLON, - [193954] = 3, + [180178] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4092), 1, - anon_sym_COLON_COLON, - ACTIONS(6943), 1, - anon_sym_COLON, - [193964] = 3, + ACTIONS(8026), 1, + aux_sym_num_lit_token1, + STATE(2273), 1, + sym_num_lit, + [180188] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6945), 1, + ACTIONS(8028), 1, aux_sym_sym_lit_token1, - STATE(2034), 1, + STATE(1760), 1, sym_kwd_symbol, - [193974] = 3, + [180198] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6947), 1, + ACTIONS(8030), 1, aux_sym_sym_lit_token1, - STATE(1357), 1, + STATE(1798), 1, sym_sym_lit, - [193984] = 3, + [180208] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(4963), 1, + anon_sym_COLON, + ACTIONS(4965), 1, + anon_sym_COLON_COLON, + [180218] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6949), 1, + ACTIONS(8032), 1, aux_sym_sym_lit_token1, - STATE(2093), 1, - sym_sym_lit, - [193994] = 3, + STATE(1069), 1, + sym_kwd_symbol, + [180228] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4092), 1, - anon_sym_COLON_COLON, - ACTIONS(6951), 1, - anon_sym_COLON, - [194004] = 3, + ACTIONS(8034), 1, + aux_sym_num_lit_token1, + STATE(1550), 1, + sym_num_lit, + [180238] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4738), 1, - anon_sym_COLON, - ACTIONS(4740), 1, - anon_sym_COLON_COLON, - [194014] = 3, + ACTIONS(8036), 1, + aux_sym_num_lit_token1, + STATE(1757), 1, + sym_num_lit, + [180248] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3884), 1, + ACTIONS(5031), 1, anon_sym_COLON, - ACTIONS(3886), 1, + ACTIONS(5033), 1, anon_sym_COLON_COLON, - [194024] = 3, + [180258] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4364), 1, + ACTIONS(8038), 1, aux_sym_sym_lit_token1, - STATE(1357), 1, + STATE(1192), 1, sym_sym_lit, - [194034] = 3, + [180268] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6953), 1, - aux_sym_sym_lit_token1, - STATE(1773), 1, - sym_sym_lit, - [194044] = 3, + ACTIONS(5819), 1, + anon_sym_COLON, + ACTIONS(5821), 1, + anon_sym_COLON_COLON, + [180278] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4018), 1, + ACTIONS(5103), 1, anon_sym_COLON_COLON, - ACTIONS(6955), 1, + ACTIONS(8040), 1, anon_sym_COLON, - [194054] = 3, + [180288] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6957), 1, + ACTIONS(5443), 1, aux_sym_sym_lit_token1, - STATE(1509), 1, - sym_kwd_symbol, - [194064] = 3, + STATE(2280), 1, + sym_sym_lit, + [180298] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4092), 1, - anon_sym_COLON_COLON, - ACTIONS(6959), 1, + ACTIONS(4811), 1, anon_sym_COLON, - [194074] = 3, + ACTIONS(4813), 1, + anon_sym_COLON_COLON, + [180308] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4897), 1, + ACTIONS(8042), 1, aux_sym_num_lit_token1, - STATE(1377), 1, + STATE(895), 1, sym_num_lit, - [194084] = 3, + [180318] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6961), 1, + ACTIONS(8044), 1, aux_sym_sym_lit_token1, - STATE(1096), 1, - sym_sym_lit, - [194094] = 3, + STATE(1388), 1, + sym_kwd_symbol, + [180328] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6963), 1, + ACTIONS(8046), 1, aux_sym_sym_lit_token1, - STATE(826), 1, - sym_kwd_symbol, - [194104] = 3, + STATE(1708), 1, + sym_sym_lit, + [180338] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6965), 1, + ACTIONS(8048), 1, aux_sym_num_lit_token1, - STATE(1377), 1, + STATE(1910), 1, sym_num_lit, - [194114] = 3, + [180348] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3998), 1, - anon_sym_COLON, - ACTIONS(4000), 1, - anon_sym_COLON_COLON, - [194124] = 3, + ACTIONS(5443), 1, + aux_sym_sym_lit_token1, + STATE(1798), 1, + sym_sym_lit, + [180358] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4830), 1, - anon_sym_COLON, - ACTIONS(4832), 1, + ACTIONS(5191), 1, anon_sym_COLON_COLON, - [194134] = 3, + ACTIONS(8050), 1, + anon_sym_COLON, + [180368] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4364), 1, - aux_sym_sym_lit_token1, - STATE(2297), 1, - sym_sym_lit, - [194144] = 3, + ACTIONS(8052), 1, + aux_sym_num_lit_token1, + STATE(1805), 1, + sym_num_lit, + [180378] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4090), 1, + ACTIONS(8012), 1, anon_sym_COLON, - ACTIONS(4092), 1, + ACTIONS(8014), 1, anon_sym_COLON_COLON, - [194154] = 3, + [180388] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4078), 1, + ACTIONS(5473), 1, anon_sym_COLON, - ACTIONS(4080), 1, - anon_sym_COLON_COLON, - [194164] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4018), 1, + ACTIONS(5475), 1, anon_sym_COLON_COLON, - ACTIONS(6967), 1, - anon_sym_COLON, - [194174] = 3, + [180398] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4356), 1, + ACTIONS(8054), 1, aux_sym_sym_lit_token1, - STATE(1643), 1, - sym_sym_lit, - [194184] = 3, + STATE(1553), 1, + sym_kwd_symbol, + [180408] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4092), 1, - anon_sym_COLON_COLON, - ACTIONS(6969), 1, - anon_sym_COLON, - [194194] = 3, + ACTIONS(8056), 1, + aux_sym_num_lit_token1, + STATE(1066), 1, + sym_num_lit, + [180418] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4092), 1, + ACTIONS(5103), 1, anon_sym_COLON_COLON, - ACTIONS(6971), 1, + ACTIONS(8058), 1, anon_sym_COLON, - [194204] = 3, + [180428] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4018), 1, + ACTIONS(5103), 1, anon_sym_COLON_COLON, - ACTIONS(6973), 1, + ACTIONS(8060), 1, anon_sym_COLON, - [194214] = 3, + [180438] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4018), 1, - anon_sym_COLON_COLON, - ACTIONS(6975), 1, - anon_sym_COLON, - [194224] = 3, + ACTIONS(8062), 1, + aux_sym_sym_lit_token1, + STATE(836), 1, + sym_sym_lit, + [180448] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6977), 1, + ACTIONS(8064), 1, aux_sym_sym_lit_token1, - STATE(1803), 1, + STATE(1172), 1, sym_kwd_symbol, - [194234] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(4895), 1, - aux_sym_num_lit_token1, - STATE(1584), 1, - sym_num_lit, - [194244] = 3, + [180458] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6979), 1, - aux_sym_num_lit_token1, - STATE(1051), 1, - sym_num_lit, - [194254] = 3, + ACTIONS(8066), 1, + aux_sym_sym_lit_token1, + STATE(887), 1, + sym_kwd_symbol, + [180468] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6981), 1, - aux_sym_num_lit_token1, - STATE(1800), 1, - sym_num_lit, - [194264] = 3, + ACTIONS(5101), 1, + anon_sym_COLON, + ACTIONS(5103), 1, + anon_sym_COLON_COLON, + [180478] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6983), 1, - aux_sym_num_lit_token1, - STATE(1203), 1, - sym_num_lit, - [194274] = 3, + ACTIONS(5157), 1, + anon_sym_COLON, + ACTIONS(5159), 1, + anon_sym_COLON_COLON, + [180488] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4018), 1, + ACTIONS(5191), 1, anon_sym_COLON_COLON, - ACTIONS(6985), 1, + ACTIONS(8068), 1, anon_sym_COLON, - [194284] = 3, + [180498] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4018), 1, + ACTIONS(5103), 1, anon_sym_COLON_COLON, - ACTIONS(6987), 1, + ACTIONS(8070), 1, anon_sym_COLON, - [194294] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(6989), 1, - aux_sym_num_lit_token1, - STATE(829), 1, - sym_num_lit, - [194304] = 3, + [180508] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4394), 1, - anon_sym_COLON, - ACTIONS(4396), 1, + ACTIONS(5191), 1, anon_sym_COLON_COLON, - [194314] = 3, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(6991), 1, - aux_sym_sym_lit_token1, - STATE(1257), 1, - sym_sym_lit, - [194324] = 3, + ACTIONS(8072), 1, + anon_sym_COLON, + [180518] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4396), 1, + ACTIONS(5191), 1, anon_sym_COLON_COLON, - ACTIONS(6993), 1, + ACTIONS(8074), 1, anon_sym_COLON, - [194334] = 3, + [180528] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6995), 1, + ACTIONS(8076), 1, aux_sym_sym_lit_token1, - STATE(1589), 1, + STATE(2409), 1, sym_kwd_symbol, - [194344] = 3, + [180538] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6997), 1, - aux_sym_sym_lit_token1, - STATE(1209), 1, - sym_kwd_symbol, - [194354] = 3, + ACTIONS(5927), 1, + anon_sym_COLON, + ACTIONS(5929), 1, + anon_sym_COLON_COLON, + [180548] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4092), 1, + ACTIONS(5103), 1, anon_sym_COLON_COLON, - ACTIONS(6999), 1, + ACTIONS(8078), 1, anon_sym_COLON, - [194364] = 3, + [180558] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4871), 1, - anon_sym_COLON, - ACTIONS(4873), 1, - anon_sym_COLON_COLON, - [194374] = 3, + ACTIONS(8080), 1, + aux_sym_num_lit_token1, + STATE(1185), 1, + sym_num_lit, + [180568] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4372), 1, + ACTIONS(8082), 1, aux_sym_sym_lit_token1, - STATE(2297), 1, - sym_sym_lit, - [194384] = 3, + STATE(2183), 1, + sym_kwd_symbol, + [180578] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4018), 1, + ACTIONS(5475), 1, anon_sym_COLON_COLON, - ACTIONS(7001), 1, + ACTIONS(8084), 1, anon_sym_COLON, - [194394] = 3, + [180588] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7003), 1, + ACTIONS(8086), 1, aux_sym_sym_lit_token1, - STATE(1048), 1, + STATE(1894), 1, sym_kwd_symbol, - [194404] = 3, + [180598] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4018), 1, + ACTIONS(4308), 1, + anon_sym_COLON, + ACTIONS(4310), 1, + anon_sym_COLON_COLON, + [180608] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(5103), 1, anon_sym_COLON_COLON, - ACTIONS(7005), 1, + ACTIONS(8088), 1, anon_sym_COLON, - [194414] = 3, + [180618] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4016), 1, + ACTIONS(5103), 1, + anon_sym_COLON_COLON, + ACTIONS(8090), 1, anon_sym_COLON, - ACTIONS(4018), 1, + [180628] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(5191), 1, anon_sym_COLON_COLON, - [194424] = 3, + ACTIONS(8092), 1, + anon_sym_COLON, + [180638] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7007), 1, + ACTIONS(6022), 1, aux_sym_num_lit_token1, - STATE(2288), 1, + STATE(1910), 1, sym_num_lit, - [194434] = 3, + [180648] = 3, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(5191), 1, + anon_sym_COLON_COLON, + ACTIONS(8094), 1, + anon_sym_COLON, + [180658] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7009), 1, + ACTIONS(8096), 1, aux_sym_sym_lit_token1, - STATE(2382), 1, - sym_kwd_symbol, - [194444] = 3, + STATE(1934), 1, + sym_sym_lit, + [180668] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4092), 1, - anon_sym_COLON_COLON, - ACTIONS(7011), 1, - anon_sym_COLON, - [194454] = 3, + ACTIONS(8098), 1, + aux_sym_num_lit_token1, + STATE(1805), 1, + sym_num_lit, + [180678] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7013), 1, + ACTIONS(5974), 1, aux_sym_num_lit_token1, - STATE(2288), 1, + STATE(1550), 1, sym_num_lit, - [194464] = 3, + [180688] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7015), 1, + ACTIONS(5435), 1, aux_sym_sym_lit_token1, - STATE(856), 1, + STATE(2280), 1, sym_sym_lit, - [194474] = 3, + [180698] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7017), 1, + ACTIONS(8100), 1, aux_sym_sym_lit_token1, - STATE(2128), 1, - sym_kwd_symbol, - [194484] = 3, + STATE(1339), 1, + sym_sym_lit, + [180708] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(3077), 1, - anon_sym_COLON, - ACTIONS(3079), 1, - anon_sym_COLON_COLON, - [194494] = 3, + ACTIONS(8102), 1, + aux_sym_num_lit_token1, + STATE(1383), 1, + sym_num_lit, + [180718] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7019), 1, + ACTIONS(8104), 1, aux_sym_sym_lit_token1, - STATE(1398), 1, - sym_sym_lit, - [194504] = 3, + STATE(2120), 1, + sym_kwd_symbol, + [180728] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4018), 1, - anon_sym_COLON_COLON, - ACTIONS(7021), 1, + ACTIONS(5909), 1, anon_sym_COLON, - [194514] = 3, + ACTIONS(5911), 1, + anon_sym_COLON_COLON, + [180738] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4092), 1, + ACTIONS(5103), 1, anon_sym_COLON_COLON, - ACTIONS(7023), 1, + ACTIONS(8106), 1, anon_sym_COLON, - [194524] = 3, + [180748] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(4018), 1, + ACTIONS(5103), 1, anon_sym_COLON_COLON, - ACTIONS(7025), 1, + ACTIONS(8108), 1, anon_sym_COLON, - [194534] = 3, + [180758] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7027), 1, - aux_sym_num_lit_token1, - STATE(1501), 1, - sym_num_lit, - [194544] = 3, + ACTIONS(5191), 1, + anon_sym_COLON_COLON, + ACTIONS(8110), 1, + anon_sym_COLON, + [180768] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7029), 1, - aux_sym_num_lit_token1, - STATE(1584), 1, - sym_num_lit, - [194554] = 3, + ACTIONS(5451), 1, + aux_sym_sym_lit_token1, + STATE(1523), 1, + sym_sym_lit, + [180778] = 3, ACTIONS(47), 1, sym_block_comment, - ACTIONS(6923), 1, - anon_sym_COLON, - ACTIONS(6925), 1, - anon_sym_COLON_COLON, - [194564] = 2, + ACTIONS(8112), 1, + aux_sym_sym_lit_token1, + STATE(1034), 1, + sym_sym_lit, + [180788] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7031), 1, - anon_sym_COLON, - [194571] = 2, + ACTIONS(8114), 1, + anon_sym_EQ, + [180795] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7033), 1, - anon_sym_COLON, - [194578] = 2, + ACTIONS(8116), 1, + ts_builtin_sym_end, + [180802] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7035), 1, - ts_builtin_sym_end, - [194585] = 2, + ACTIONS(8118), 1, + anon_sym_EQ, + [180809] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(585), 1, - anon_sym_LBRACE, - [194592] = 2, + ACTIONS(8120), 1, + aux_sym_regex_lit_token1, + [180816] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7037), 1, + ACTIONS(8122), 1, anon_sym_COLON, - [194599] = 2, + [180823] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7039), 1, - anon_sym_EQ, - [194606] = 2, + ACTIONS(606), 1, + anon_sym_LBRACE, + [180830] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7041), 1, + ACTIONS(8124), 1, anon_sym_EQ, - [194613] = 2, + [180837] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7043), 1, - anon_sym_COLON, - [194620] = 2, + ACTIONS(8126), 1, + anon_sym_EQ, + [180844] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7045), 1, + ACTIONS(8128), 1, anon_sym_COLON, - [194627] = 2, + [180851] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7047), 1, - anon_sym_SLASH, - [194634] = 2, + ACTIONS(8130), 1, + aux_sym_regex_lit_token1, + [180858] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7049), 1, + ACTIONS(8132), 1, anon_sym_COLON, - [194641] = 2, + [180865] = 2, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8134), 1, + anon_sym_EQ, + [180872] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7051), 1, + ACTIONS(8136), 1, anon_sym_COLON, - [194648] = 2, + [180879] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7053), 1, + ACTIONS(8138), 1, anon_sym_COLON, - [194655] = 2, + [180886] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7055), 1, + ACTIONS(8140), 1, anon_sym_EQ, - [194662] = 2, + [180893] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7057), 1, - anon_sym_into, - [194669] = 2, + ACTIONS(8142), 1, + anon_sym_COLON, + [180900] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7059), 1, - anon_sym_COLON, - [194676] = 2, + ACTIONS(8144), 1, + aux_sym_regex_lit_token1, + [180907] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7061), 1, - anon_sym_COLON, - [194683] = 2, + ACTIONS(871), 1, + anon_sym_LBRACE, + [180914] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7063), 1, - aux_sym_regex_lit_token1, - [194690] = 2, + ACTIONS(8146), 1, + anon_sym_EQ, + [180921] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7065), 1, - anon_sym_COLON, - [194697] = 2, + ACTIONS(721), 1, + anon_sym_LBRACE, + [180928] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7067), 1, - anon_sym_SLASH, - [194704] = 2, + ACTIONS(8148), 1, + anon_sym_COLON, + [180935] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7069), 1, + ACTIONS(8150), 1, anon_sym_EQ, - [194711] = 2, + [180942] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7071), 1, - anon_sym_COLON, - [194718] = 2, + ACTIONS(923), 1, + anon_sym_LBRACE, + [180949] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7073), 1, - aux_sym_regex_lit_token1, - [194725] = 2, + ACTIONS(8152), 1, + anon_sym_COLON, + [180956] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7075), 1, + ACTIONS(8154), 1, anon_sym_COLON, - [194732] = 2, + [180963] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7077), 1, + ACTIONS(8156), 1, anon_sym_COLON, - [194739] = 2, + [180970] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(791), 1, - anon_sym_LBRACE, - [194746] = 2, + ACTIONS(8158), 1, + anon_sym_EQ, + [180977] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7079), 1, + ACTIONS(8160), 1, anon_sym_COLON, - [194753] = 2, + [180984] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7081), 1, - aux_sym_regex_lit_token1, - [194760] = 2, + ACTIONS(8162), 1, + anon_sym_COLON, + [180991] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7083), 1, + ACTIONS(8164), 1, anon_sym_COLON, - [194767] = 2, + [180998] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7085), 1, + ACTIONS(8166), 1, anon_sym_EQ, - [194774] = 2, + [181005] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7087), 1, + ACTIONS(8168), 1, anon_sym_COLON, - [194781] = 2, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7089), 1, - anon_sym_into, - [194788] = 2, + [181012] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(669), 1, - anon_sym_LBRACE, - [194795] = 2, + ACTIONS(8170), 1, + anon_sym_COLON, + [181019] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7091), 1, + ACTIONS(8172), 1, anon_sym_COLON, - [194802] = 2, + [181026] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7093), 1, + ACTIONS(8174), 1, anon_sym_COLON, - [194809] = 2, + [181033] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7095), 1, - anon_sym_COLON, - [194816] = 2, + ACTIONS(8176), 1, + anon_sym_EQ, + [181040] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7097), 1, + ACTIONS(8178), 1, anon_sym_COLON, - [194823] = 2, + [181047] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7099), 1, - anon_sym_EQ, - [194830] = 2, + ACTIONS(8180), 1, + anon_sym_COLON, + [181054] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7101), 1, + ACTIONS(8182), 1, anon_sym_COLON, - [194837] = 2, + [181061] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(559), 1, + ACTIONS(777), 1, anon_sym_LBRACE, - [194844] = 2, + [181068] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7103), 1, + ACTIONS(8184), 1, aux_sym_regex_lit_token1, - [194851] = 2, + [181075] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7105), 1, + ACTIONS(8186), 1, anon_sym_COLON, - [194858] = 2, + [181082] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7107), 1, - anon_sym_EQ, - [194865] = 2, - ACTIONS(47), 1, - sym_block_comment, - ACTIONS(7109), 1, - anon_sym_COLON, - [194872] = 2, + ACTIONS(8188), 1, + anon_sym_SLASH, + [181089] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7111), 1, - aux_sym_regex_lit_token1, - [194879] = 2, + ACTIONS(8190), 1, + anon_sym_EQ, + [181096] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(695), 1, - anon_sym_LBRACE, - [194886] = 2, + ACTIONS(8192), 1, + anon_sym_COLON, + [181103] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(441), 1, + ACTIONS(578), 1, anon_sym_LBRACE, - [194893] = 2, + [181110] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7113), 1, + ACTIONS(8194), 1, aux_sym_regex_lit_token1, - [194900] = 2, + [181117] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7115), 1, - anon_sym_into, - [194907] = 2, + ACTIONS(8196), 1, + anon_sym_COLON, + [181124] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7117), 1, - aux_sym_regex_lit_token1, - [194914] = 2, + ACTIONS(8198), 1, + anon_sym_EQ, + [181131] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7119), 1, + ACTIONS(8200), 1, anon_sym_EQ, - [194921] = 2, + [181138] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7121), 1, - anon_sym_into, - [194928] = 2, + ACTIONS(8202), 1, + anon_sym_COLON, + [181145] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7123), 1, + ACTIONS(8204), 1, anon_sym_COLON, - [194935] = 2, + [181152] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7125), 1, - anon_sym_COLON, - [194942] = 2, + ACTIONS(8206), 1, + anon_sym_EQ, + [181159] = 2, + ACTIONS(47), 1, + sym_block_comment, + ACTIONS(8208), 1, + anon_sym_SLASH, + [181166] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7127), 1, + ACTIONS(8210), 1, anon_sym_COLON, - [194949] = 2, + [181173] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7129), 1, - anon_sym_EQ, - [194956] = 2, + ACTIONS(8212), 1, + anon_sym_into, + [181180] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7131), 1, - aux_sym_regex_lit_token1, - [194963] = 2, + ACTIONS(8214), 1, + anon_sym_into, + [181187] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7133), 1, + ACTIONS(8216), 1, anon_sym_COLON, - [194970] = 2, + [181194] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7135), 1, - anon_sym_EQ, - [194977] = 2, + ACTIONS(8218), 1, + anon_sym_COLON, + [181201] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7137), 1, - anon_sym_COLON, - [194984] = 2, + ACTIONS(8220), 1, + anon_sym_EQ, + [181208] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(543), 1, - anon_sym_LBRACE, - [194991] = 2, + ACTIONS(8222), 1, + anon_sym_COLON, + [181215] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7139), 1, - aux_sym__format_token_token1, - [194998] = 2, + ACTIONS(8224), 1, + anon_sym_COLON, + [181222] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7141), 1, - anon_sym_EQ, - [195005] = 2, + ACTIONS(538), 1, + anon_sym_LBRACE, + [181229] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7143), 1, - anon_sym_EQ, - [195012] = 2, + ACTIONS(821), 1, + anon_sym_LBRACE, + [181236] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7145), 1, + ACTIONS(8226), 1, anon_sym_COLON, - [195019] = 2, + [181243] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7147), 1, - anon_sym_EQ, - [195026] = 2, + ACTIONS(8228), 1, + anon_sym_into, + [181250] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7149), 1, - anon_sym_EQ, - [195033] = 2, + ACTIONS(8230), 1, + aux_sym_regex_lit_token1, + [181257] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7151), 1, - anon_sym_EQ, - [195040] = 2, + ACTIONS(8232), 1, + aux_sym_regex_lit_token1, + [181264] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7153), 1, - anon_sym_COLON, - [195047] = 2, + ACTIONS(8234), 1, + anon_sym_into, + [181271] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7155), 1, - anon_sym_EQ, - [195054] = 2, + ACTIONS(8236), 1, + anon_sym_COLON, + [181278] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7157), 1, - anon_sym_COLON, - [195061] = 2, + ACTIONS(8238), 1, + aux_sym_regex_lit_token1, + [181285] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(7159), 1, + ACTIONS(8240), 1, aux_sym_regex_lit_token1, - [195068] = 2, + [181292] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(633), 1, + ACTIONS(488), 1, anon_sym_LBRACE, - [195075] = 2, + [181299] = 2, ACTIONS(47), 1, sym_block_comment, - ACTIONS(743), 1, - anon_sym_LBRACE, + ACTIONS(8242), 1, + aux_sym__format_token_token1, }; static uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(44)] = 0, - [SMALL_STATE(45)] = 135, - [SMALL_STATE(46)] = 270, - [SMALL_STATE(47)] = 407, - [SMALL_STATE(48)] = 542, - [SMALL_STATE(49)] = 677, - [SMALL_STATE(50)] = 812, - [SMALL_STATE(51)] = 947, - [SMALL_STATE(52)] = 1082, - [SMALL_STATE(53)] = 1217, - [SMALL_STATE(54)] = 1352, - [SMALL_STATE(55)] = 1487, - [SMALL_STATE(56)] = 1622, - [SMALL_STATE(57)] = 1759, - [SMALL_STATE(58)] = 1894, - [SMALL_STATE(59)] = 2029, - [SMALL_STATE(60)] = 2164, - [SMALL_STATE(61)] = 2299, - [SMALL_STATE(62)] = 2434, - [SMALL_STATE(63)] = 2569, - [SMALL_STATE(64)] = 2706, - [SMALL_STATE(65)] = 2841, - [SMALL_STATE(66)] = 2976, - [SMALL_STATE(67)] = 3111, - [SMALL_STATE(68)] = 3248, - [SMALL_STATE(69)] = 3385, - [SMALL_STATE(70)] = 3520, - [SMALL_STATE(71)] = 3655, - [SMALL_STATE(72)] = 3790, - [SMALL_STATE(73)] = 3927, - [SMALL_STATE(74)] = 4062, - [SMALL_STATE(75)] = 4197, - [SMALL_STATE(76)] = 4332, - [SMALL_STATE(77)] = 4467, - [SMALL_STATE(78)] = 4602, - [SMALL_STATE(79)] = 4737, - [SMALL_STATE(80)] = 4872, - [SMALL_STATE(81)] = 5007, - [SMALL_STATE(82)] = 5144, - [SMALL_STATE(83)] = 5279, - [SMALL_STATE(84)] = 5416, - [SMALL_STATE(85)] = 5551, - [SMALL_STATE(86)] = 5686, - [SMALL_STATE(87)] = 5821, - [SMALL_STATE(88)] = 5956, - [SMALL_STATE(89)] = 6091, - [SMALL_STATE(90)] = 6226, - [SMALL_STATE(91)] = 6361, - [SMALL_STATE(92)] = 6496, - [SMALL_STATE(93)] = 6631, - [SMALL_STATE(94)] = 6768, - [SMALL_STATE(95)] = 6903, - [SMALL_STATE(96)] = 7040, - [SMALL_STATE(97)] = 7175, - [SMALL_STATE(98)] = 7310, - [SMALL_STATE(99)] = 7445, - [SMALL_STATE(100)] = 7580, - [SMALL_STATE(101)] = 7715, - [SMALL_STATE(102)] = 7850, - [SMALL_STATE(103)] = 7985, - [SMALL_STATE(104)] = 8122, - [SMALL_STATE(105)] = 8257, - [SMALL_STATE(106)] = 8392, - [SMALL_STATE(107)] = 8527, - [SMALL_STATE(108)] = 8664, - [SMALL_STATE(109)] = 8799, - [SMALL_STATE(110)] = 8934, - [SMALL_STATE(111)] = 9069, - [SMALL_STATE(112)] = 9204, - [SMALL_STATE(113)] = 9339, - [SMALL_STATE(114)] = 9476, - [SMALL_STATE(115)] = 9611, - [SMALL_STATE(116)] = 9746, - [SMALL_STATE(117)] = 9883, - [SMALL_STATE(118)] = 10018, - [SMALL_STATE(119)] = 10153, - [SMALL_STATE(120)] = 10288, - [SMALL_STATE(121)] = 10423, - [SMALL_STATE(122)] = 10558, - [SMALL_STATE(123)] = 10693, - [SMALL_STATE(124)] = 10828, - [SMALL_STATE(125)] = 10965, - [SMALL_STATE(126)] = 11100, - [SMALL_STATE(127)] = 11235, - [SMALL_STATE(128)] = 11370, - [SMALL_STATE(129)] = 11505, - [SMALL_STATE(130)] = 11640, - [SMALL_STATE(131)] = 11775, - [SMALL_STATE(132)] = 11910, - [SMALL_STATE(133)] = 12045, - [SMALL_STATE(134)] = 12180, - [SMALL_STATE(135)] = 12315, - [SMALL_STATE(136)] = 12450, - [SMALL_STATE(137)] = 12585, - [SMALL_STATE(138)] = 12720, - [SMALL_STATE(139)] = 12855, - [SMALL_STATE(140)] = 12990, - [SMALL_STATE(141)] = 13125, - [SMALL_STATE(142)] = 13260, - [SMALL_STATE(143)] = 13395, - [SMALL_STATE(144)] = 13530, - [SMALL_STATE(145)] = 13665, - [SMALL_STATE(146)] = 13800, - [SMALL_STATE(147)] = 13937, - [SMALL_STATE(148)] = 14072, - [SMALL_STATE(149)] = 14207, - [SMALL_STATE(150)] = 14342, - [SMALL_STATE(151)] = 14477, - [SMALL_STATE(152)] = 14614, - [SMALL_STATE(153)] = 14749, - [SMALL_STATE(154)] = 14884, - [SMALL_STATE(155)] = 15021, - [SMALL_STATE(156)] = 15156, - [SMALL_STATE(157)] = 15291, - [SMALL_STATE(158)] = 15428, - [SMALL_STATE(159)] = 15563, - [SMALL_STATE(160)] = 15700, - [SMALL_STATE(161)] = 15835, - [SMALL_STATE(162)] = 15970, - [SMALL_STATE(163)] = 16105, - [SMALL_STATE(164)] = 16240, - [SMALL_STATE(165)] = 16375, - [SMALL_STATE(166)] = 16510, - [SMALL_STATE(167)] = 16642, - [SMALL_STATE(168)] = 16774, - [SMALL_STATE(169)] = 16906, - [SMALL_STATE(170)] = 17038, - [SMALL_STATE(171)] = 17170, - [SMALL_STATE(172)] = 17302, - [SMALL_STATE(173)] = 17434, - [SMALL_STATE(174)] = 17566, - [SMALL_STATE(175)] = 17698, - [SMALL_STATE(176)] = 17830, - [SMALL_STATE(177)] = 17962, - [SMALL_STATE(178)] = 18094, - [SMALL_STATE(179)] = 18226, - [SMALL_STATE(180)] = 18358, - [SMALL_STATE(181)] = 18490, - [SMALL_STATE(182)] = 18622, - [SMALL_STATE(183)] = 18754, - [SMALL_STATE(184)] = 18886, - [SMALL_STATE(185)] = 19018, - [SMALL_STATE(186)] = 19150, - [SMALL_STATE(187)] = 19282, - [SMALL_STATE(188)] = 19414, - [SMALL_STATE(189)] = 19546, - [SMALL_STATE(190)] = 19678, - [SMALL_STATE(191)] = 19810, - [SMALL_STATE(192)] = 19942, - [SMALL_STATE(193)] = 20074, - [SMALL_STATE(194)] = 20206, - [SMALL_STATE(195)] = 20338, - [SMALL_STATE(196)] = 20470, - [SMALL_STATE(197)] = 20602, - [SMALL_STATE(198)] = 20734, - [SMALL_STATE(199)] = 20866, - [SMALL_STATE(200)] = 20998, - [SMALL_STATE(201)] = 21130, - [SMALL_STATE(202)] = 21262, - [SMALL_STATE(203)] = 21394, - [SMALL_STATE(204)] = 21526, - [SMALL_STATE(205)] = 21658, - [SMALL_STATE(206)] = 21790, - [SMALL_STATE(207)] = 21922, - [SMALL_STATE(208)] = 22054, - [SMALL_STATE(209)] = 22186, - [SMALL_STATE(210)] = 22318, - [SMALL_STATE(211)] = 22450, - [SMALL_STATE(212)] = 22582, - [SMALL_STATE(213)] = 22714, - [SMALL_STATE(214)] = 22846, - [SMALL_STATE(215)] = 22978, - [SMALL_STATE(216)] = 23110, - [SMALL_STATE(217)] = 23242, - [SMALL_STATE(218)] = 23374, - [SMALL_STATE(219)] = 23506, - [SMALL_STATE(220)] = 23638, - [SMALL_STATE(221)] = 23770, - [SMALL_STATE(222)] = 23902, - [SMALL_STATE(223)] = 24034, - [SMALL_STATE(224)] = 24166, - [SMALL_STATE(225)] = 24298, - [SMALL_STATE(226)] = 24430, - [SMALL_STATE(227)] = 24562, - [SMALL_STATE(228)] = 24694, - [SMALL_STATE(229)] = 24826, - [SMALL_STATE(230)] = 24958, - [SMALL_STATE(231)] = 25090, - [SMALL_STATE(232)] = 25222, - [SMALL_STATE(233)] = 25354, - [SMALL_STATE(234)] = 25486, - [SMALL_STATE(235)] = 25618, - [SMALL_STATE(236)] = 25750, - [SMALL_STATE(237)] = 25882, - [SMALL_STATE(238)] = 26014, - [SMALL_STATE(239)] = 26146, - [SMALL_STATE(240)] = 26278, - [SMALL_STATE(241)] = 26410, - [SMALL_STATE(242)] = 26542, - [SMALL_STATE(243)] = 26674, - [SMALL_STATE(244)] = 26806, - [SMALL_STATE(245)] = 26938, - [SMALL_STATE(246)] = 27070, - [SMALL_STATE(247)] = 27202, - [SMALL_STATE(248)] = 27334, - [SMALL_STATE(249)] = 27466, - [SMALL_STATE(250)] = 27598, - [SMALL_STATE(251)] = 27730, - [SMALL_STATE(252)] = 27862, - [SMALL_STATE(253)] = 27994, - [SMALL_STATE(254)] = 28126, - [SMALL_STATE(255)] = 28258, - [SMALL_STATE(256)] = 28390, - [SMALL_STATE(257)] = 28522, - [SMALL_STATE(258)] = 28654, - [SMALL_STATE(259)] = 28786, - [SMALL_STATE(260)] = 28918, - [SMALL_STATE(261)] = 29050, - [SMALL_STATE(262)] = 29182, - [SMALL_STATE(263)] = 29314, - [SMALL_STATE(264)] = 29446, - [SMALL_STATE(265)] = 29578, - [SMALL_STATE(266)] = 29710, - [SMALL_STATE(267)] = 29842, - [SMALL_STATE(268)] = 29974, - [SMALL_STATE(269)] = 30106, - [SMALL_STATE(270)] = 30238, - [SMALL_STATE(271)] = 30370, - [SMALL_STATE(272)] = 30502, - [SMALL_STATE(273)] = 30634, - [SMALL_STATE(274)] = 30766, - [SMALL_STATE(275)] = 30898, - [SMALL_STATE(276)] = 31030, - [SMALL_STATE(277)] = 31162, - [SMALL_STATE(278)] = 31294, - [SMALL_STATE(279)] = 31426, - [SMALL_STATE(280)] = 31558, - [SMALL_STATE(281)] = 31690, - [SMALL_STATE(282)] = 31822, - [SMALL_STATE(283)] = 31954, - [SMALL_STATE(284)] = 32086, - [SMALL_STATE(285)] = 32218, - [SMALL_STATE(286)] = 32350, - [SMALL_STATE(287)] = 32482, - [SMALL_STATE(288)] = 32614, - [SMALL_STATE(289)] = 32746, - [SMALL_STATE(290)] = 32878, - [SMALL_STATE(291)] = 33010, - [SMALL_STATE(292)] = 33142, - [SMALL_STATE(293)] = 33274, - [SMALL_STATE(294)] = 33406, - [SMALL_STATE(295)] = 33538, - [SMALL_STATE(296)] = 33670, - [SMALL_STATE(297)] = 33802, - [SMALL_STATE(298)] = 33934, - [SMALL_STATE(299)] = 34066, - [SMALL_STATE(300)] = 34198, - [SMALL_STATE(301)] = 34330, - [SMALL_STATE(302)] = 34462, - [SMALL_STATE(303)] = 34594, - [SMALL_STATE(304)] = 34726, - [SMALL_STATE(305)] = 34858, - [SMALL_STATE(306)] = 34990, - [SMALL_STATE(307)] = 35122, - [SMALL_STATE(308)] = 35254, - [SMALL_STATE(309)] = 35386, - [SMALL_STATE(310)] = 35518, - [SMALL_STATE(311)] = 35650, - [SMALL_STATE(312)] = 35782, - [SMALL_STATE(313)] = 35914, - [SMALL_STATE(314)] = 36046, - [SMALL_STATE(315)] = 36178, - [SMALL_STATE(316)] = 36310, - [SMALL_STATE(317)] = 36442, - [SMALL_STATE(318)] = 36574, - [SMALL_STATE(319)] = 36706, - [SMALL_STATE(320)] = 36838, - [SMALL_STATE(321)] = 36970, - [SMALL_STATE(322)] = 37102, - [SMALL_STATE(323)] = 37234, - [SMALL_STATE(324)] = 37366, - [SMALL_STATE(325)] = 37498, - [SMALL_STATE(326)] = 37630, - [SMALL_STATE(327)] = 37762, - [SMALL_STATE(328)] = 37894, - [SMALL_STATE(329)] = 38026, - [SMALL_STATE(330)] = 38158, - [SMALL_STATE(331)] = 38290, - [SMALL_STATE(332)] = 38422, - [SMALL_STATE(333)] = 38554, - [SMALL_STATE(334)] = 38686, - [SMALL_STATE(335)] = 38818, - [SMALL_STATE(336)] = 38950, - [SMALL_STATE(337)] = 39082, - [SMALL_STATE(338)] = 39214, - [SMALL_STATE(339)] = 39346, - [SMALL_STATE(340)] = 39478, - [SMALL_STATE(341)] = 39610, - [SMALL_STATE(342)] = 39742, - [SMALL_STATE(343)] = 39874, - [SMALL_STATE(344)] = 40006, - [SMALL_STATE(345)] = 40138, - [SMALL_STATE(346)] = 40270, - [SMALL_STATE(347)] = 40402, - [SMALL_STATE(348)] = 40534, - [SMALL_STATE(349)] = 40666, - [SMALL_STATE(350)] = 40798, - [SMALL_STATE(351)] = 40930, - [SMALL_STATE(352)] = 41062, - [SMALL_STATE(353)] = 41194, - [SMALL_STATE(354)] = 41326, - [SMALL_STATE(355)] = 41458, - [SMALL_STATE(356)] = 41590, - [SMALL_STATE(357)] = 41722, - [SMALL_STATE(358)] = 41854, - [SMALL_STATE(359)] = 41986, - [SMALL_STATE(360)] = 42118, - [SMALL_STATE(361)] = 42250, - [SMALL_STATE(362)] = 42382, - [SMALL_STATE(363)] = 42514, - [SMALL_STATE(364)] = 42646, - [SMALL_STATE(365)] = 42778, - [SMALL_STATE(366)] = 42910, - [SMALL_STATE(367)] = 43042, - [SMALL_STATE(368)] = 43174, - [SMALL_STATE(369)] = 43306, - [SMALL_STATE(370)] = 43438, - [SMALL_STATE(371)] = 43570, - [SMALL_STATE(372)] = 43702, - [SMALL_STATE(373)] = 43834, - [SMALL_STATE(374)] = 43966, - [SMALL_STATE(375)] = 44098, - [SMALL_STATE(376)] = 44230, - [SMALL_STATE(377)] = 44362, - [SMALL_STATE(378)] = 44494, - [SMALL_STATE(379)] = 44626, - [SMALL_STATE(380)] = 44758, - [SMALL_STATE(381)] = 44890, - [SMALL_STATE(382)] = 45022, - [SMALL_STATE(383)] = 45154, - [SMALL_STATE(384)] = 45286, - [SMALL_STATE(385)] = 45418, - [SMALL_STATE(386)] = 45550, - [SMALL_STATE(387)] = 45682, - [SMALL_STATE(388)] = 45814, - [SMALL_STATE(389)] = 45946, - [SMALL_STATE(390)] = 46078, - [SMALL_STATE(391)] = 46210, - [SMALL_STATE(392)] = 46342, - [SMALL_STATE(393)] = 46474, - [SMALL_STATE(394)] = 46606, - [SMALL_STATE(395)] = 46738, - [SMALL_STATE(396)] = 46870, - [SMALL_STATE(397)] = 47002, - [SMALL_STATE(398)] = 47134, - [SMALL_STATE(399)] = 47266, - [SMALL_STATE(400)] = 47398, - [SMALL_STATE(401)] = 47530, - [SMALL_STATE(402)] = 47662, - [SMALL_STATE(403)] = 47794, - [SMALL_STATE(404)] = 47926, - [SMALL_STATE(405)] = 48058, - [SMALL_STATE(406)] = 48190, - [SMALL_STATE(407)] = 48322, - [SMALL_STATE(408)] = 48454, - [SMALL_STATE(409)] = 48586, - [SMALL_STATE(410)] = 48718, - [SMALL_STATE(411)] = 48850, - [SMALL_STATE(412)] = 48982, - [SMALL_STATE(413)] = 49114, - [SMALL_STATE(414)] = 49246, - [SMALL_STATE(415)] = 49378, - [SMALL_STATE(416)] = 49510, - [SMALL_STATE(417)] = 49642, - [SMALL_STATE(418)] = 49774, - [SMALL_STATE(419)] = 49906, - [SMALL_STATE(420)] = 50038, - [SMALL_STATE(421)] = 50170, - [SMALL_STATE(422)] = 50302, - [SMALL_STATE(423)] = 50434, - [SMALL_STATE(424)] = 50566, - [SMALL_STATE(425)] = 50698, - [SMALL_STATE(426)] = 50830, - [SMALL_STATE(427)] = 50962, - [SMALL_STATE(428)] = 51094, - [SMALL_STATE(429)] = 51226, - [SMALL_STATE(430)] = 51358, - [SMALL_STATE(431)] = 51490, - [SMALL_STATE(432)] = 51622, - [SMALL_STATE(433)] = 51754, - [SMALL_STATE(434)] = 51886, - [SMALL_STATE(435)] = 52018, - [SMALL_STATE(436)] = 52150, - [SMALL_STATE(437)] = 52282, - [SMALL_STATE(438)] = 52414, - [SMALL_STATE(439)] = 52546, - [SMALL_STATE(440)] = 52678, - [SMALL_STATE(441)] = 52810, - [SMALL_STATE(442)] = 52942, - [SMALL_STATE(443)] = 53074, - [SMALL_STATE(444)] = 53206, - [SMALL_STATE(445)] = 53338, - [SMALL_STATE(446)] = 53470, - [SMALL_STATE(447)] = 53602, - [SMALL_STATE(448)] = 53734, - [SMALL_STATE(449)] = 53866, - [SMALL_STATE(450)] = 53998, - [SMALL_STATE(451)] = 54130, - [SMALL_STATE(452)] = 54262, - [SMALL_STATE(453)] = 54394, - [SMALL_STATE(454)] = 54526, - [SMALL_STATE(455)] = 54658, - [SMALL_STATE(456)] = 54790, - [SMALL_STATE(457)] = 54922, - [SMALL_STATE(458)] = 55054, - [SMALL_STATE(459)] = 55186, - [SMALL_STATE(460)] = 55318, - [SMALL_STATE(461)] = 55450, - [SMALL_STATE(462)] = 55582, - [SMALL_STATE(463)] = 55714, - [SMALL_STATE(464)] = 55846, - [SMALL_STATE(465)] = 55978, - [SMALL_STATE(466)] = 56110, - [SMALL_STATE(467)] = 56242, - [SMALL_STATE(468)] = 56374, - [SMALL_STATE(469)] = 56506, - [SMALL_STATE(470)] = 56638, - [SMALL_STATE(471)] = 56770, - [SMALL_STATE(472)] = 56902, - [SMALL_STATE(473)] = 57034, - [SMALL_STATE(474)] = 57166, - [SMALL_STATE(475)] = 57298, - [SMALL_STATE(476)] = 57430, - [SMALL_STATE(477)] = 57562, - [SMALL_STATE(478)] = 57694, - [SMALL_STATE(479)] = 57826, - [SMALL_STATE(480)] = 57958, - [SMALL_STATE(481)] = 58090, - [SMALL_STATE(482)] = 58222, - [SMALL_STATE(483)] = 58354, - [SMALL_STATE(484)] = 58486, - [SMALL_STATE(485)] = 58618, - [SMALL_STATE(486)] = 58750, - [SMALL_STATE(487)] = 58882, - [SMALL_STATE(488)] = 59014, - [SMALL_STATE(489)] = 59146, - [SMALL_STATE(490)] = 59278, - [SMALL_STATE(491)] = 59410, - [SMALL_STATE(492)] = 59542, - [SMALL_STATE(493)] = 59674, - [SMALL_STATE(494)] = 59806, - [SMALL_STATE(495)] = 59938, - [SMALL_STATE(496)] = 60070, - [SMALL_STATE(497)] = 60202, - [SMALL_STATE(498)] = 60334, - [SMALL_STATE(499)] = 60466, - [SMALL_STATE(500)] = 60598, - [SMALL_STATE(501)] = 60730, - [SMALL_STATE(502)] = 60862, - [SMALL_STATE(503)] = 60994, - [SMALL_STATE(504)] = 61126, - [SMALL_STATE(505)] = 61258, - [SMALL_STATE(506)] = 61390, - [SMALL_STATE(507)] = 61522, - [SMALL_STATE(508)] = 61654, - [SMALL_STATE(509)] = 61786, - [SMALL_STATE(510)] = 61918, - [SMALL_STATE(511)] = 62050, - [SMALL_STATE(512)] = 62182, - [SMALL_STATE(513)] = 62314, - [SMALL_STATE(514)] = 62446, - [SMALL_STATE(515)] = 62578, - [SMALL_STATE(516)] = 62710, - [SMALL_STATE(517)] = 62842, - [SMALL_STATE(518)] = 62974, - [SMALL_STATE(519)] = 63106, - [SMALL_STATE(520)] = 63238, - [SMALL_STATE(521)] = 63370, - [SMALL_STATE(522)] = 63502, - [SMALL_STATE(523)] = 63634, - [SMALL_STATE(524)] = 63766, - [SMALL_STATE(525)] = 63898, - [SMALL_STATE(526)] = 64030, - [SMALL_STATE(527)] = 64162, - [SMALL_STATE(528)] = 64294, - [SMALL_STATE(529)] = 64426, - [SMALL_STATE(530)] = 64558, - [SMALL_STATE(531)] = 64690, - [SMALL_STATE(532)] = 64822, - [SMALL_STATE(533)] = 64954, - [SMALL_STATE(534)] = 65086, - [SMALL_STATE(535)] = 65218, - [SMALL_STATE(536)] = 65350, - [SMALL_STATE(537)] = 65482, - [SMALL_STATE(538)] = 65614, - [SMALL_STATE(539)] = 65746, - [SMALL_STATE(540)] = 65878, - [SMALL_STATE(541)] = 66010, - [SMALL_STATE(542)] = 66142, - [SMALL_STATE(543)] = 66274, - [SMALL_STATE(544)] = 66406, - [SMALL_STATE(545)] = 66538, - [SMALL_STATE(546)] = 66670, - [SMALL_STATE(547)] = 66802, - [SMALL_STATE(548)] = 66934, - [SMALL_STATE(549)] = 67066, - [SMALL_STATE(550)] = 67198, - [SMALL_STATE(551)] = 67330, - [SMALL_STATE(552)] = 67462, - [SMALL_STATE(553)] = 67594, - [SMALL_STATE(554)] = 67726, - [SMALL_STATE(555)] = 67858, - [SMALL_STATE(556)] = 67990, - [SMALL_STATE(557)] = 68122, - [SMALL_STATE(558)] = 68254, - [SMALL_STATE(559)] = 68386, - [SMALL_STATE(560)] = 68518, - [SMALL_STATE(561)] = 68650, - [SMALL_STATE(562)] = 68782, - [SMALL_STATE(563)] = 68914, - [SMALL_STATE(564)] = 69046, - [SMALL_STATE(565)] = 69178, - [SMALL_STATE(566)] = 69310, - [SMALL_STATE(567)] = 69442, - [SMALL_STATE(568)] = 69574, - [SMALL_STATE(569)] = 69706, - [SMALL_STATE(570)] = 69838, - [SMALL_STATE(571)] = 69970, - [SMALL_STATE(572)] = 70102, - [SMALL_STATE(573)] = 70234, - [SMALL_STATE(574)] = 70366, - [SMALL_STATE(575)] = 70498, - [SMALL_STATE(576)] = 70630, - [SMALL_STATE(577)] = 70762, - [SMALL_STATE(578)] = 70894, - [SMALL_STATE(579)] = 71026, - [SMALL_STATE(580)] = 71158, - [SMALL_STATE(581)] = 71290, - [SMALL_STATE(582)] = 71422, - [SMALL_STATE(583)] = 71554, - [SMALL_STATE(584)] = 71686, - [SMALL_STATE(585)] = 71818, - [SMALL_STATE(586)] = 71950, - [SMALL_STATE(587)] = 72082, - [SMALL_STATE(588)] = 72214, - [SMALL_STATE(589)] = 72346, - [SMALL_STATE(590)] = 72478, - [SMALL_STATE(591)] = 72610, - [SMALL_STATE(592)] = 72742, - [SMALL_STATE(593)] = 72874, - [SMALL_STATE(594)] = 73006, - [SMALL_STATE(595)] = 73138, - [SMALL_STATE(596)] = 73270, - [SMALL_STATE(597)] = 73402, - [SMALL_STATE(598)] = 73534, - [SMALL_STATE(599)] = 73666, - [SMALL_STATE(600)] = 73798, - [SMALL_STATE(601)] = 73930, - [SMALL_STATE(602)] = 74062, - [SMALL_STATE(603)] = 74194, - [SMALL_STATE(604)] = 74326, - [SMALL_STATE(605)] = 74458, - [SMALL_STATE(606)] = 74590, - [SMALL_STATE(607)] = 74722, - [SMALL_STATE(608)] = 74854, - [SMALL_STATE(609)] = 74986, - [SMALL_STATE(610)] = 75118, - [SMALL_STATE(611)] = 75250, - [SMALL_STATE(612)] = 75382, - [SMALL_STATE(613)] = 75514, - [SMALL_STATE(614)] = 75646, - [SMALL_STATE(615)] = 75778, - [SMALL_STATE(616)] = 75910, - [SMALL_STATE(617)] = 76042, - [SMALL_STATE(618)] = 76174, - [SMALL_STATE(619)] = 76306, - [SMALL_STATE(620)] = 76438, - [SMALL_STATE(621)] = 76570, - [SMALL_STATE(622)] = 76702, - [SMALL_STATE(623)] = 76834, - [SMALL_STATE(624)] = 76966, - [SMALL_STATE(625)] = 77098, - [SMALL_STATE(626)] = 77230, - [SMALL_STATE(627)] = 77362, - [SMALL_STATE(628)] = 77494, - [SMALL_STATE(629)] = 77626, - [SMALL_STATE(630)] = 77758, - [SMALL_STATE(631)] = 77890, - [SMALL_STATE(632)] = 78022, - [SMALL_STATE(633)] = 78154, - [SMALL_STATE(634)] = 78286, - [SMALL_STATE(635)] = 78418, - [SMALL_STATE(636)] = 78550, - [SMALL_STATE(637)] = 78682, - [SMALL_STATE(638)] = 78814, - [SMALL_STATE(639)] = 78946, - [SMALL_STATE(640)] = 79078, - [SMALL_STATE(641)] = 79210, - [SMALL_STATE(642)] = 79342, - [SMALL_STATE(643)] = 79474, - [SMALL_STATE(644)] = 79606, - [SMALL_STATE(645)] = 79738, - [SMALL_STATE(646)] = 79870, - [SMALL_STATE(647)] = 80002, - [SMALL_STATE(648)] = 80134, - [SMALL_STATE(649)] = 80266, - [SMALL_STATE(650)] = 80398, - [SMALL_STATE(651)] = 80530, - [SMALL_STATE(652)] = 80662, - [SMALL_STATE(653)] = 80794, - [SMALL_STATE(654)] = 80926, - [SMALL_STATE(655)] = 81058, - [SMALL_STATE(656)] = 81190, - [SMALL_STATE(657)] = 81322, - [SMALL_STATE(658)] = 81454, - [SMALL_STATE(659)] = 81586, - [SMALL_STATE(660)] = 81718, - [SMALL_STATE(661)] = 81850, - [SMALL_STATE(662)] = 81982, - [SMALL_STATE(663)] = 82114, - [SMALL_STATE(664)] = 82246, - [SMALL_STATE(665)] = 82378, - [SMALL_STATE(666)] = 82510, - [SMALL_STATE(667)] = 82642, - [SMALL_STATE(668)] = 82774, - [SMALL_STATE(669)] = 82906, - [SMALL_STATE(670)] = 83038, - [SMALL_STATE(671)] = 83170, - [SMALL_STATE(672)] = 83302, - [SMALL_STATE(673)] = 83434, - [SMALL_STATE(674)] = 83566, - [SMALL_STATE(675)] = 83698, - [SMALL_STATE(676)] = 83830, - [SMALL_STATE(677)] = 83962, - [SMALL_STATE(678)] = 84094, - [SMALL_STATE(679)] = 84226, - [SMALL_STATE(680)] = 84358, - [SMALL_STATE(681)] = 84490, - [SMALL_STATE(682)] = 84622, - [SMALL_STATE(683)] = 84754, - [SMALL_STATE(684)] = 84886, - [SMALL_STATE(685)] = 85018, - [SMALL_STATE(686)] = 85150, - [SMALL_STATE(687)] = 85282, - [SMALL_STATE(688)] = 85414, - [SMALL_STATE(689)] = 85546, - [SMALL_STATE(690)] = 85678, - [SMALL_STATE(691)] = 85810, - [SMALL_STATE(692)] = 85942, - [SMALL_STATE(693)] = 86074, - [SMALL_STATE(694)] = 86206, - [SMALL_STATE(695)] = 86338, - [SMALL_STATE(696)] = 86470, - [SMALL_STATE(697)] = 86602, - [SMALL_STATE(698)] = 86734, - [SMALL_STATE(699)] = 86866, - [SMALL_STATE(700)] = 86998, - [SMALL_STATE(701)] = 87130, - [SMALL_STATE(702)] = 87262, - [SMALL_STATE(703)] = 87394, - [SMALL_STATE(704)] = 87526, - [SMALL_STATE(705)] = 87658, - [SMALL_STATE(706)] = 87790, - [SMALL_STATE(707)] = 87922, - [SMALL_STATE(708)] = 88054, - [SMALL_STATE(709)] = 88186, - [SMALL_STATE(710)] = 88318, - [SMALL_STATE(711)] = 88450, - [SMALL_STATE(712)] = 88582, - [SMALL_STATE(713)] = 88714, - [SMALL_STATE(714)] = 88846, - [SMALL_STATE(715)] = 88978, - [SMALL_STATE(716)] = 89110, - [SMALL_STATE(717)] = 89242, - [SMALL_STATE(718)] = 89374, - [SMALL_STATE(719)] = 89506, - [SMALL_STATE(720)] = 89638, - [SMALL_STATE(721)] = 89770, - [SMALL_STATE(722)] = 89902, - [SMALL_STATE(723)] = 90034, - [SMALL_STATE(724)] = 90166, - [SMALL_STATE(725)] = 90298, - [SMALL_STATE(726)] = 90430, - [SMALL_STATE(727)] = 90562, - [SMALL_STATE(728)] = 90694, - [SMALL_STATE(729)] = 90826, - [SMALL_STATE(730)] = 90958, - [SMALL_STATE(731)] = 91090, - [SMALL_STATE(732)] = 91222, - [SMALL_STATE(733)] = 91354, - [SMALL_STATE(734)] = 91486, - [SMALL_STATE(735)] = 91618, - [SMALL_STATE(736)] = 91750, - [SMALL_STATE(737)] = 91882, - [SMALL_STATE(738)] = 92014, - [SMALL_STATE(739)] = 92146, - [SMALL_STATE(740)] = 92278, - [SMALL_STATE(741)] = 92410, - [SMALL_STATE(742)] = 92542, - [SMALL_STATE(743)] = 92674, - [SMALL_STATE(744)] = 92806, - [SMALL_STATE(745)] = 92938, - [SMALL_STATE(746)] = 93070, - [SMALL_STATE(747)] = 93202, - [SMALL_STATE(748)] = 93334, - [SMALL_STATE(749)] = 93466, - [SMALL_STATE(750)] = 93598, - [SMALL_STATE(751)] = 93730, - [SMALL_STATE(752)] = 93862, - [SMALL_STATE(753)] = 93994, - [SMALL_STATE(754)] = 94126, - [SMALL_STATE(755)] = 94258, - [SMALL_STATE(756)] = 94390, - [SMALL_STATE(757)] = 94522, - [SMALL_STATE(758)] = 94654, - [SMALL_STATE(759)] = 94786, - [SMALL_STATE(760)] = 94918, - [SMALL_STATE(761)] = 95050, - [SMALL_STATE(762)] = 95182, - [SMALL_STATE(763)] = 95314, - [SMALL_STATE(764)] = 95446, - [SMALL_STATE(765)] = 95578, - [SMALL_STATE(766)] = 95710, - [SMALL_STATE(767)] = 95842, - [SMALL_STATE(768)] = 95974, - [SMALL_STATE(769)] = 96106, - [SMALL_STATE(770)] = 96238, - [SMALL_STATE(771)] = 96370, - [SMALL_STATE(772)] = 96502, - [SMALL_STATE(773)] = 96634, - [SMALL_STATE(774)] = 96766, - [SMALL_STATE(775)] = 96898, - [SMALL_STATE(776)] = 97030, - [SMALL_STATE(777)] = 97162, - [SMALL_STATE(778)] = 97294, - [SMALL_STATE(779)] = 97426, - [SMALL_STATE(780)] = 97558, - [SMALL_STATE(781)] = 97690, - [SMALL_STATE(782)] = 97822, - [SMALL_STATE(783)] = 97954, - [SMALL_STATE(784)] = 98086, - [SMALL_STATE(785)] = 98218, - [SMALL_STATE(786)] = 98350, - [SMALL_STATE(787)] = 98482, - [SMALL_STATE(788)] = 98614, - [SMALL_STATE(789)] = 98746, - [SMALL_STATE(790)] = 98878, - [SMALL_STATE(791)] = 99010, - [SMALL_STATE(792)] = 99142, - [SMALL_STATE(793)] = 99274, - [SMALL_STATE(794)] = 99406, - [SMALL_STATE(795)] = 99538, - [SMALL_STATE(796)] = 99670, - [SMALL_STATE(797)] = 99802, - [SMALL_STATE(798)] = 99934, - [SMALL_STATE(799)] = 100066, - [SMALL_STATE(800)] = 100198, - [SMALL_STATE(801)] = 100330, - [SMALL_STATE(802)] = 100462, - [SMALL_STATE(803)] = 100594, - [SMALL_STATE(804)] = 100726, - [SMALL_STATE(805)] = 100858, - [SMALL_STATE(806)] = 100990, - [SMALL_STATE(807)] = 101122, - [SMALL_STATE(808)] = 101254, - [SMALL_STATE(809)] = 101386, - [SMALL_STATE(810)] = 101518, - [SMALL_STATE(811)] = 101650, - [SMALL_STATE(812)] = 101782, - [SMALL_STATE(813)] = 101914, - [SMALL_STATE(814)] = 101978, - [SMALL_STATE(815)] = 102046, - [SMALL_STATE(816)] = 102114, - [SMALL_STATE(817)] = 102178, - [SMALL_STATE(818)] = 102246, - [SMALL_STATE(819)] = 102308, - [SMALL_STATE(820)] = 102367, - [SMALL_STATE(821)] = 102426, - [SMALL_STATE(822)] = 102485, - [SMALL_STATE(823)] = 102548, - [SMALL_STATE(824)] = 102607, - [SMALL_STATE(825)] = 102666, - [SMALL_STATE(826)] = 102725, - [SMALL_STATE(827)] = 102784, - [SMALL_STATE(828)] = 102843, - [SMALL_STATE(829)] = 102902, - [SMALL_STATE(830)] = 102961, - [SMALL_STATE(831)] = 103020, - [SMALL_STATE(832)] = 103079, - [SMALL_STATE(833)] = 103138, - [SMALL_STATE(834)] = 103197, - [SMALL_STATE(835)] = 103256, - [SMALL_STATE(836)] = 103315, - [SMALL_STATE(837)] = 103374, - [SMALL_STATE(838)] = 103433, - [SMALL_STATE(839)] = 103492, - [SMALL_STATE(840)] = 103551, - [SMALL_STATE(841)] = 103610, - [SMALL_STATE(842)] = 103669, - [SMALL_STATE(843)] = 103728, - [SMALL_STATE(844)] = 103787, - [SMALL_STATE(845)] = 103846, - [SMALL_STATE(846)] = 103905, - [SMALL_STATE(847)] = 103964, - [SMALL_STATE(848)] = 104023, - [SMALL_STATE(849)] = 104082, - [SMALL_STATE(850)] = 104141, - [SMALL_STATE(851)] = 104200, - [SMALL_STATE(852)] = 104259, - [SMALL_STATE(853)] = 104318, - [SMALL_STATE(854)] = 104377, - [SMALL_STATE(855)] = 104436, - [SMALL_STATE(856)] = 104495, - [SMALL_STATE(857)] = 104554, - [SMALL_STATE(858)] = 104613, - [SMALL_STATE(859)] = 104672, - [SMALL_STATE(860)] = 104731, - [SMALL_STATE(861)] = 104790, - [SMALL_STATE(862)] = 104849, - [SMALL_STATE(863)] = 104908, - [SMALL_STATE(864)] = 104967, - [SMALL_STATE(865)] = 105026, - [SMALL_STATE(866)] = 105085, - [SMALL_STATE(867)] = 105144, - [SMALL_STATE(868)] = 105203, - [SMALL_STATE(869)] = 105262, - [SMALL_STATE(870)] = 105321, - [SMALL_STATE(871)] = 105380, - [SMALL_STATE(872)] = 105439, - [SMALL_STATE(873)] = 105498, - [SMALL_STATE(874)] = 105557, - [SMALL_STATE(875)] = 105616, - [SMALL_STATE(876)] = 105675, - [SMALL_STATE(877)] = 105734, - [SMALL_STATE(878)] = 105797, - [SMALL_STATE(879)] = 105856, - [SMALL_STATE(880)] = 105915, - [SMALL_STATE(881)] = 105974, - [SMALL_STATE(882)] = 106033, - [SMALL_STATE(883)] = 106092, - [SMALL_STATE(884)] = 106151, - [SMALL_STATE(885)] = 106210, - [SMALL_STATE(886)] = 106269, - [SMALL_STATE(887)] = 106328, - [SMALL_STATE(888)] = 106387, - [SMALL_STATE(889)] = 106446, - [SMALL_STATE(890)] = 106505, - [SMALL_STATE(891)] = 106564, - [SMALL_STATE(892)] = 106623, - [SMALL_STATE(893)] = 106682, - [SMALL_STATE(894)] = 106741, - [SMALL_STATE(895)] = 106800, - [SMALL_STATE(896)] = 106859, - [SMALL_STATE(897)] = 106918, - [SMALL_STATE(898)] = 106977, - [SMALL_STATE(899)] = 107036, - [SMALL_STATE(900)] = 107095, - [SMALL_STATE(901)] = 107154, - [SMALL_STATE(902)] = 107213, - [SMALL_STATE(903)] = 107272, - [SMALL_STATE(904)] = 107331, - [SMALL_STATE(905)] = 107390, - [SMALL_STATE(906)] = 107449, - [SMALL_STATE(907)] = 107508, - [SMALL_STATE(908)] = 107567, - [SMALL_STATE(909)] = 107626, - [SMALL_STATE(910)] = 107685, - [SMALL_STATE(911)] = 107744, - [SMALL_STATE(912)] = 107803, - [SMALL_STATE(913)] = 107862, - [SMALL_STATE(914)] = 107921, - [SMALL_STATE(915)] = 107980, - [SMALL_STATE(916)] = 108039, - [SMALL_STATE(917)] = 108098, - [SMALL_STATE(918)] = 108157, - [SMALL_STATE(919)] = 108216, - [SMALL_STATE(920)] = 108275, - [SMALL_STATE(921)] = 108334, - [SMALL_STATE(922)] = 108393, - [SMALL_STATE(923)] = 108452, - [SMALL_STATE(924)] = 108511, - [SMALL_STATE(925)] = 108570, - [SMALL_STATE(926)] = 108629, - [SMALL_STATE(927)] = 108688, - [SMALL_STATE(928)] = 108747, - [SMALL_STATE(929)] = 108806, - [SMALL_STATE(930)] = 108865, - [SMALL_STATE(931)] = 108924, - [SMALL_STATE(932)] = 108983, - [SMALL_STATE(933)] = 109042, - [SMALL_STATE(934)] = 109101, - [SMALL_STATE(935)] = 109160, - [SMALL_STATE(936)] = 109219, - [SMALL_STATE(937)] = 109278, - [SMALL_STATE(938)] = 109337, - [SMALL_STATE(939)] = 109396, - [SMALL_STATE(940)] = 109455, - [SMALL_STATE(941)] = 109519, - [SMALL_STATE(942)] = 109594, - [SMALL_STATE(943)] = 109669, - [SMALL_STATE(944)] = 109744, - [SMALL_STATE(945)] = 109819, - [SMALL_STATE(946)] = 109894, - [SMALL_STATE(947)] = 109969, - [SMALL_STATE(948)] = 110044, - [SMALL_STATE(949)] = 110119, - [SMALL_STATE(950)] = 110194, - [SMALL_STATE(951)] = 110269, - [SMALL_STATE(952)] = 110344, - [SMALL_STATE(953)] = 110419, - [SMALL_STATE(954)] = 110494, - [SMALL_STATE(955)] = 110569, - [SMALL_STATE(956)] = 110644, - [SMALL_STATE(957)] = 110719, - [SMALL_STATE(958)] = 110794, - [SMALL_STATE(959)] = 110869, - [SMALL_STATE(960)] = 110944, - [SMALL_STATE(961)] = 111046, - [SMALL_STATE(962)] = 111148, - [SMALL_STATE(963)] = 111250, - [SMALL_STATE(964)] = 111352, - [SMALL_STATE(965)] = 111454, - [SMALL_STATE(966)] = 111556, - [SMALL_STATE(967)] = 111658, - [SMALL_STATE(968)] = 111760, - [SMALL_STATE(969)] = 111862, - [SMALL_STATE(970)] = 111964, - [SMALL_STATE(971)] = 112066, - [SMALL_STATE(972)] = 112168, - [SMALL_STATE(973)] = 112270, - [SMALL_STATE(974)] = 112372, - [SMALL_STATE(975)] = 112474, - [SMALL_STATE(976)] = 112576, - [SMALL_STATE(977)] = 112678, - [SMALL_STATE(978)] = 112780, - [SMALL_STATE(979)] = 112838, - [SMALL_STATE(980)] = 112940, - [SMALL_STATE(981)] = 113042, - [SMALL_STATE(982)] = 113144, - [SMALL_STATE(983)] = 113246, - [SMALL_STATE(984)] = 113348, - [SMALL_STATE(985)] = 113450, - [SMALL_STATE(986)] = 113552, - [SMALL_STATE(987)] = 113654, - [SMALL_STATE(988)] = 113756, - [SMALL_STATE(989)] = 113858, - [SMALL_STATE(990)] = 113960, - [SMALL_STATE(991)] = 114062, - [SMALL_STATE(992)] = 114164, - [SMALL_STATE(993)] = 114266, - [SMALL_STATE(994)] = 114368, - [SMALL_STATE(995)] = 114470, - [SMALL_STATE(996)] = 114572, - [SMALL_STATE(997)] = 114674, - [SMALL_STATE(998)] = 114776, - [SMALL_STATE(999)] = 114878, - [SMALL_STATE(1000)] = 114980, - [SMALL_STATE(1001)] = 115082, - [SMALL_STATE(1002)] = 115184, - [SMALL_STATE(1003)] = 115286, - [SMALL_STATE(1004)] = 115388, - [SMALL_STATE(1005)] = 115490, - [SMALL_STATE(1006)] = 115592, - [SMALL_STATE(1007)] = 115694, - [SMALL_STATE(1008)] = 115796, - [SMALL_STATE(1009)] = 115898, - [SMALL_STATE(1010)] = 116000, - [SMALL_STATE(1011)] = 116102, - [SMALL_STATE(1012)] = 116204, - [SMALL_STATE(1013)] = 116306, - [SMALL_STATE(1014)] = 116408, - [SMALL_STATE(1015)] = 116510, - [SMALL_STATE(1016)] = 116612, - [SMALL_STATE(1017)] = 116714, - [SMALL_STATE(1018)] = 116816, - [SMALL_STATE(1019)] = 116918, - [SMALL_STATE(1020)] = 117020, - [SMALL_STATE(1021)] = 117122, - [SMALL_STATE(1022)] = 117224, - [SMALL_STATE(1023)] = 117326, - [SMALL_STATE(1024)] = 117428, - [SMALL_STATE(1025)] = 117530, - [SMALL_STATE(1026)] = 117632, - [SMALL_STATE(1027)] = 117734, - [SMALL_STATE(1028)] = 117836, - [SMALL_STATE(1029)] = 117938, - [SMALL_STATE(1030)] = 118040, - [SMALL_STATE(1031)] = 118142, - [SMALL_STATE(1032)] = 118244, - [SMALL_STATE(1033)] = 118346, - [SMALL_STATE(1034)] = 118448, - [SMALL_STATE(1035)] = 118550, - [SMALL_STATE(1036)] = 118652, - [SMALL_STATE(1037)] = 118754, - [SMALL_STATE(1038)] = 118856, - [SMALL_STATE(1039)] = 118958, - [SMALL_STATE(1040)] = 119060, - [SMALL_STATE(1041)] = 119162, - [SMALL_STATE(1042)] = 119264, - [SMALL_STATE(1043)] = 119319, - [SMALL_STATE(1044)] = 119374, - [SMALL_STATE(1045)] = 119433, - [SMALL_STATE(1046)] = 119488, - [SMALL_STATE(1047)] = 119543, - [SMALL_STATE(1048)] = 119598, - [SMALL_STATE(1049)] = 119653, - [SMALL_STATE(1050)] = 119708, - [SMALL_STATE(1051)] = 119763, - [SMALL_STATE(1052)] = 119818, - [SMALL_STATE(1053)] = 119873, - [SMALL_STATE(1054)] = 119928, - [SMALL_STATE(1055)] = 119983, - [SMALL_STATE(1056)] = 120038, - [SMALL_STATE(1057)] = 120093, - [SMALL_STATE(1058)] = 120148, - [SMALL_STATE(1059)] = 120203, - [SMALL_STATE(1060)] = 120262, - [SMALL_STATE(1061)] = 120317, - [SMALL_STATE(1062)] = 120372, - [SMALL_STATE(1063)] = 120427, - [SMALL_STATE(1064)] = 120482, - [SMALL_STATE(1065)] = 120537, - [SMALL_STATE(1066)] = 120592, - [SMALL_STATE(1067)] = 120647, - [SMALL_STATE(1068)] = 120702, - [SMALL_STATE(1069)] = 120757, - [SMALL_STATE(1070)] = 120812, - [SMALL_STATE(1071)] = 120867, - [SMALL_STATE(1072)] = 120922, - [SMALL_STATE(1073)] = 120977, - [SMALL_STATE(1074)] = 121032, - [SMALL_STATE(1075)] = 121087, - [SMALL_STATE(1076)] = 121142, - [SMALL_STATE(1077)] = 121197, - [SMALL_STATE(1078)] = 121252, - [SMALL_STATE(1079)] = 121307, - [SMALL_STATE(1080)] = 121362, - [SMALL_STATE(1081)] = 121417, - [SMALL_STATE(1082)] = 121472, - [SMALL_STATE(1083)] = 121527, - [SMALL_STATE(1084)] = 121582, - [SMALL_STATE(1085)] = 121637, - [SMALL_STATE(1086)] = 121692, - [SMALL_STATE(1087)] = 121747, - [SMALL_STATE(1088)] = 121802, - [SMALL_STATE(1089)] = 121857, - [SMALL_STATE(1090)] = 121912, - [SMALL_STATE(1091)] = 121967, - [SMALL_STATE(1092)] = 122022, - [SMALL_STATE(1093)] = 122077, - [SMALL_STATE(1094)] = 122132, - [SMALL_STATE(1095)] = 122187, - [SMALL_STATE(1096)] = 122242, - [SMALL_STATE(1097)] = 122297, - [SMALL_STATE(1098)] = 122352, - [SMALL_STATE(1099)] = 122407, - [SMALL_STATE(1100)] = 122462, - [SMALL_STATE(1101)] = 122517, - [SMALL_STATE(1102)] = 122572, - [SMALL_STATE(1103)] = 122627, - [SMALL_STATE(1104)] = 122682, - [SMALL_STATE(1105)] = 122737, - [SMALL_STATE(1106)] = 122792, - [SMALL_STATE(1107)] = 122847, - [SMALL_STATE(1108)] = 122902, - [SMALL_STATE(1109)] = 122957, - [SMALL_STATE(1110)] = 123012, - [SMALL_STATE(1111)] = 123067, - [SMALL_STATE(1112)] = 123122, - [SMALL_STATE(1113)] = 123177, - [SMALL_STATE(1114)] = 123232, - [SMALL_STATE(1115)] = 123287, - [SMALL_STATE(1116)] = 123342, - [SMALL_STATE(1117)] = 123397, - [SMALL_STATE(1118)] = 123452, - [SMALL_STATE(1119)] = 123507, - [SMALL_STATE(1120)] = 123562, - [SMALL_STATE(1121)] = 123617, - [SMALL_STATE(1122)] = 123672, - [SMALL_STATE(1123)] = 123727, - [SMALL_STATE(1124)] = 123782, - [SMALL_STATE(1125)] = 123837, - [SMALL_STATE(1126)] = 123892, - [SMALL_STATE(1127)] = 123947, - [SMALL_STATE(1128)] = 124002, - [SMALL_STATE(1129)] = 124057, - [SMALL_STATE(1130)] = 124112, - [SMALL_STATE(1131)] = 124167, - [SMALL_STATE(1132)] = 124222, - [SMALL_STATE(1133)] = 124277, - [SMALL_STATE(1134)] = 124332, - [SMALL_STATE(1135)] = 124387, - [SMALL_STATE(1136)] = 124442, - [SMALL_STATE(1137)] = 124497, - [SMALL_STATE(1138)] = 124552, - [SMALL_STATE(1139)] = 124607, - [SMALL_STATE(1140)] = 124662, - [SMALL_STATE(1141)] = 124717, - [SMALL_STATE(1142)] = 124772, - [SMALL_STATE(1143)] = 124827, - [SMALL_STATE(1144)] = 124882, - [SMALL_STATE(1145)] = 124937, - [SMALL_STATE(1146)] = 124992, - [SMALL_STATE(1147)] = 125047, - [SMALL_STATE(1148)] = 125102, - [SMALL_STATE(1149)] = 125157, - [SMALL_STATE(1150)] = 125212, - [SMALL_STATE(1151)] = 125267, - [SMALL_STATE(1152)] = 125322, - [SMALL_STATE(1153)] = 125377, - [SMALL_STATE(1154)] = 125432, - [SMALL_STATE(1155)] = 125487, - [SMALL_STATE(1156)] = 125542, - [SMALL_STATE(1157)] = 125597, - [SMALL_STATE(1158)] = 125652, - [SMALL_STATE(1159)] = 125707, - [SMALL_STATE(1160)] = 125762, - [SMALL_STATE(1161)] = 125817, - [SMALL_STATE(1162)] = 125872, - [SMALL_STATE(1163)] = 125927, - [SMALL_STATE(1164)] = 125984, - [SMALL_STATE(1165)] = 126041, - [SMALL_STATE(1166)] = 126094, - [SMALL_STATE(1167)] = 126148, - [SMALL_STATE(1168)] = 126199, - [SMALL_STATE(1169)] = 126250, - [SMALL_STATE(1170)] = 126301, - [SMALL_STATE(1171)] = 126352, - [SMALL_STATE(1172)] = 126403, - [SMALL_STATE(1173)] = 126454, - [SMALL_STATE(1174)] = 126505, - [SMALL_STATE(1175)] = 126556, - [SMALL_STATE(1176)] = 126607, - [SMALL_STATE(1177)] = 126658, - [SMALL_STATE(1178)] = 126709, - [SMALL_STATE(1179)] = 126760, - [SMALL_STATE(1180)] = 126811, - [SMALL_STATE(1181)] = 126862, - [SMALL_STATE(1182)] = 126913, - [SMALL_STATE(1183)] = 126964, - [SMALL_STATE(1184)] = 127015, - [SMALL_STATE(1185)] = 127066, - [SMALL_STATE(1186)] = 127117, - [SMALL_STATE(1187)] = 127168, - [SMALL_STATE(1188)] = 127219, - [SMALL_STATE(1189)] = 127270, - [SMALL_STATE(1190)] = 127321, - [SMALL_STATE(1191)] = 127372, - [SMALL_STATE(1192)] = 127423, - [SMALL_STATE(1193)] = 127474, - [SMALL_STATE(1194)] = 127525, - [SMALL_STATE(1195)] = 127576, - [SMALL_STATE(1196)] = 127627, - [SMALL_STATE(1197)] = 127678, - [SMALL_STATE(1198)] = 127729, - [SMALL_STATE(1199)] = 127780, - [SMALL_STATE(1200)] = 127831, - [SMALL_STATE(1201)] = 127882, - [SMALL_STATE(1202)] = 127933, - [SMALL_STATE(1203)] = 127984, - [SMALL_STATE(1204)] = 128035, - [SMALL_STATE(1205)] = 128086, - [SMALL_STATE(1206)] = 128137, - [SMALL_STATE(1207)] = 128188, - [SMALL_STATE(1208)] = 128239, - [SMALL_STATE(1209)] = 128290, - [SMALL_STATE(1210)] = 128341, - [SMALL_STATE(1211)] = 128392, - [SMALL_STATE(1212)] = 128443, - [SMALL_STATE(1213)] = 128494, - [SMALL_STATE(1214)] = 128545, - [SMALL_STATE(1215)] = 128596, - [SMALL_STATE(1216)] = 128647, - [SMALL_STATE(1217)] = 128698, - [SMALL_STATE(1218)] = 128749, - [SMALL_STATE(1219)] = 128800, - [SMALL_STATE(1220)] = 128851, - [SMALL_STATE(1221)] = 128902, - [SMALL_STATE(1222)] = 128953, - [SMALL_STATE(1223)] = 129004, - [SMALL_STATE(1224)] = 129055, - [SMALL_STATE(1225)] = 129106, - [SMALL_STATE(1226)] = 129157, - [SMALL_STATE(1227)] = 129208, - [SMALL_STATE(1228)] = 129259, - [SMALL_STATE(1229)] = 129310, - [SMALL_STATE(1230)] = 129361, - [SMALL_STATE(1231)] = 129412, - [SMALL_STATE(1232)] = 129463, - [SMALL_STATE(1233)] = 129514, - [SMALL_STATE(1234)] = 129565, - [SMALL_STATE(1235)] = 129616, - [SMALL_STATE(1236)] = 129667, - [SMALL_STATE(1237)] = 129718, - [SMALL_STATE(1238)] = 129769, - [SMALL_STATE(1239)] = 129820, - [SMALL_STATE(1240)] = 129871, - [SMALL_STATE(1241)] = 129922, - [SMALL_STATE(1242)] = 129973, - [SMALL_STATE(1243)] = 130024, - [SMALL_STATE(1244)] = 130075, - [SMALL_STATE(1245)] = 130126, - [SMALL_STATE(1246)] = 130177, - [SMALL_STATE(1247)] = 130228, - [SMALL_STATE(1248)] = 130279, - [SMALL_STATE(1249)] = 130330, - [SMALL_STATE(1250)] = 130381, - [SMALL_STATE(1251)] = 130432, - [SMALL_STATE(1252)] = 130483, - [SMALL_STATE(1253)] = 130534, - [SMALL_STATE(1254)] = 130585, - [SMALL_STATE(1255)] = 130636, - [SMALL_STATE(1256)] = 130687, - [SMALL_STATE(1257)] = 130738, - [SMALL_STATE(1258)] = 130789, - [SMALL_STATE(1259)] = 130840, - [SMALL_STATE(1260)] = 130891, - [SMALL_STATE(1261)] = 130942, - [SMALL_STATE(1262)] = 130993, - [SMALL_STATE(1263)] = 131044, - [SMALL_STATE(1264)] = 131095, - [SMALL_STATE(1265)] = 131146, - [SMALL_STATE(1266)] = 131197, - [SMALL_STATE(1267)] = 131248, - [SMALL_STATE(1268)] = 131299, - [SMALL_STATE(1269)] = 131350, - [SMALL_STATE(1270)] = 131401, - [SMALL_STATE(1271)] = 131452, - [SMALL_STATE(1272)] = 131503, - [SMALL_STATE(1273)] = 131554, - [SMALL_STATE(1274)] = 131605, - [SMALL_STATE(1275)] = 131656, - [SMALL_STATE(1276)] = 131707, - [SMALL_STATE(1277)] = 131758, - [SMALL_STATE(1278)] = 131809, - [SMALL_STATE(1279)] = 131860, - [SMALL_STATE(1280)] = 131911, - [SMALL_STATE(1281)] = 131962, - [SMALL_STATE(1282)] = 132013, - [SMALL_STATE(1283)] = 132064, - [SMALL_STATE(1284)] = 132115, - [SMALL_STATE(1285)] = 132166, - [SMALL_STATE(1286)] = 132217, - [SMALL_STATE(1287)] = 132268, - [SMALL_STATE(1288)] = 132319, - [SMALL_STATE(1289)] = 132367, - [SMALL_STATE(1290)] = 132415, - [SMALL_STATE(1291)] = 132463, - [SMALL_STATE(1292)] = 132511, - [SMALL_STATE(1293)] = 132559, - [SMALL_STATE(1294)] = 132607, - [SMALL_STATE(1295)] = 132655, - [SMALL_STATE(1296)] = 132703, - [SMALL_STATE(1297)] = 132751, - [SMALL_STATE(1298)] = 132799, - [SMALL_STATE(1299)] = 132847, - [SMALL_STATE(1300)] = 132895, - [SMALL_STATE(1301)] = 132943, - [SMALL_STATE(1302)] = 132991, - [SMALL_STATE(1303)] = 133039, - [SMALL_STATE(1304)] = 133087, - [SMALL_STATE(1305)] = 133135, - [SMALL_STATE(1306)] = 133183, - [SMALL_STATE(1307)] = 133231, - [SMALL_STATE(1308)] = 133279, - [SMALL_STATE(1309)] = 133327, - [SMALL_STATE(1310)] = 133375, - [SMALL_STATE(1311)] = 133423, - [SMALL_STATE(1312)] = 133471, - [SMALL_STATE(1313)] = 133519, - [SMALL_STATE(1314)] = 133567, - [SMALL_STATE(1315)] = 133615, - [SMALL_STATE(1316)] = 133663, - [SMALL_STATE(1317)] = 133711, - [SMALL_STATE(1318)] = 133759, - [SMALL_STATE(1319)] = 133807, - [SMALL_STATE(1320)] = 133855, - [SMALL_STATE(1321)] = 133903, - [SMALL_STATE(1322)] = 133951, - [SMALL_STATE(1323)] = 133999, - [SMALL_STATE(1324)] = 134047, - [SMALL_STATE(1325)] = 134095, - [SMALL_STATE(1326)] = 134143, - [SMALL_STATE(1327)] = 134191, - [SMALL_STATE(1328)] = 134239, - [SMALL_STATE(1329)] = 134287, - [SMALL_STATE(1330)] = 134335, - [SMALL_STATE(1331)] = 134383, - [SMALL_STATE(1332)] = 134431, - [SMALL_STATE(1333)] = 134479, - [SMALL_STATE(1334)] = 134527, - [SMALL_STATE(1335)] = 134575, - [SMALL_STATE(1336)] = 134623, - [SMALL_STATE(1337)] = 134671, - [SMALL_STATE(1338)] = 134719, - [SMALL_STATE(1339)] = 134767, - [SMALL_STATE(1340)] = 134815, - [SMALL_STATE(1341)] = 134863, - [SMALL_STATE(1342)] = 134923, - [SMALL_STATE(1343)] = 134971, - [SMALL_STATE(1344)] = 135019, - [SMALL_STATE(1345)] = 135067, - [SMALL_STATE(1346)] = 135115, - [SMALL_STATE(1347)] = 135163, - [SMALL_STATE(1348)] = 135211, - [SMALL_STATE(1349)] = 135259, - [SMALL_STATE(1350)] = 135307, - [SMALL_STATE(1351)] = 135355, - [SMALL_STATE(1352)] = 135403, - [SMALL_STATE(1353)] = 135451, - [SMALL_STATE(1354)] = 135499, - [SMALL_STATE(1355)] = 135547, - [SMALL_STATE(1356)] = 135595, - [SMALL_STATE(1357)] = 135643, - [SMALL_STATE(1358)] = 135691, - [SMALL_STATE(1359)] = 135739, - [SMALL_STATE(1360)] = 135787, - [SMALL_STATE(1361)] = 135835, - [SMALL_STATE(1362)] = 135883, - [SMALL_STATE(1363)] = 135931, - [SMALL_STATE(1364)] = 135979, - [SMALL_STATE(1365)] = 136027, - [SMALL_STATE(1366)] = 136075, - [SMALL_STATE(1367)] = 136123, - [SMALL_STATE(1368)] = 136183, - [SMALL_STATE(1369)] = 136231, - [SMALL_STATE(1370)] = 136279, - [SMALL_STATE(1371)] = 136327, - [SMALL_STATE(1372)] = 136375, - [SMALL_STATE(1373)] = 136423, - [SMALL_STATE(1374)] = 136471, - [SMALL_STATE(1375)] = 136519, - [SMALL_STATE(1376)] = 136567, - [SMALL_STATE(1377)] = 136615, - [SMALL_STATE(1378)] = 136663, - [SMALL_STATE(1379)] = 136711, - [SMALL_STATE(1380)] = 136771, - [SMALL_STATE(1381)] = 136819, - [SMALL_STATE(1382)] = 136867, - [SMALL_STATE(1383)] = 136915, - [SMALL_STATE(1384)] = 136975, - [SMALL_STATE(1385)] = 137023, - [SMALL_STATE(1386)] = 137083, - [SMALL_STATE(1387)] = 137143, - [SMALL_STATE(1388)] = 137203, - [SMALL_STATE(1389)] = 137263, - [SMALL_STATE(1390)] = 137323, - [SMALL_STATE(1391)] = 137383, - [SMALL_STATE(1392)] = 137432, - [SMALL_STATE(1393)] = 137478, - [SMALL_STATE(1394)] = 137524, - [SMALL_STATE(1395)] = 137570, - [SMALL_STATE(1396)] = 137642, - [SMALL_STATE(1397)] = 137688, - [SMALL_STATE(1398)] = 137760, - [SMALL_STATE(1399)] = 137806, - [SMALL_STATE(1400)] = 137852, - [SMALL_STATE(1401)] = 137924, - [SMALL_STATE(1402)] = 137970, - [SMALL_STATE(1403)] = 138016, - [SMALL_STATE(1404)] = 138088, - [SMALL_STATE(1405)] = 138160, - [SMALL_STATE(1406)] = 138206, - [SMALL_STATE(1407)] = 138252, - [SMALL_STATE(1408)] = 138298, - [SMALL_STATE(1409)] = 138344, - [SMALL_STATE(1410)] = 138390, - [SMALL_STATE(1411)] = 138436, - [SMALL_STATE(1412)] = 138482, - [SMALL_STATE(1413)] = 138554, - [SMALL_STATE(1414)] = 138600, - [SMALL_STATE(1415)] = 138646, - [SMALL_STATE(1416)] = 138692, - [SMALL_STATE(1417)] = 138738, - [SMALL_STATE(1418)] = 138810, - [SMALL_STATE(1419)] = 138856, - [SMALL_STATE(1420)] = 138902, - [SMALL_STATE(1421)] = 138948, - [SMALL_STATE(1422)] = 138994, - [SMALL_STATE(1423)] = 139040, - [SMALL_STATE(1424)] = 139086, - [SMALL_STATE(1425)] = 139132, - [SMALL_STATE(1426)] = 139178, - [SMALL_STATE(1427)] = 139224, - [SMALL_STATE(1428)] = 139270, - [SMALL_STATE(1429)] = 139316, - [SMALL_STATE(1430)] = 139362, - [SMALL_STATE(1431)] = 139408, - [SMALL_STATE(1432)] = 139454, - [SMALL_STATE(1433)] = 139500, - [SMALL_STATE(1434)] = 139546, - [SMALL_STATE(1435)] = 139592, - [SMALL_STATE(1436)] = 139638, - [SMALL_STATE(1437)] = 139684, - [SMALL_STATE(1438)] = 139730, - [SMALL_STATE(1439)] = 139776, - [SMALL_STATE(1440)] = 139822, - [SMALL_STATE(1441)] = 139868, - [SMALL_STATE(1442)] = 139914, - [SMALL_STATE(1443)] = 139960, - [SMALL_STATE(1444)] = 140006, - [SMALL_STATE(1445)] = 140052, - [SMALL_STATE(1446)] = 140098, - [SMALL_STATE(1447)] = 140144, - [SMALL_STATE(1448)] = 140190, - [SMALL_STATE(1449)] = 140236, - [SMALL_STATE(1450)] = 140282, - [SMALL_STATE(1451)] = 140328, - [SMALL_STATE(1452)] = 140374, - [SMALL_STATE(1453)] = 140420, - [SMALL_STATE(1454)] = 140466, - [SMALL_STATE(1455)] = 140512, - [SMALL_STATE(1456)] = 140558, - [SMALL_STATE(1457)] = 140604, - [SMALL_STATE(1458)] = 140650, - [SMALL_STATE(1459)] = 140696, - [SMALL_STATE(1460)] = 140742, - [SMALL_STATE(1461)] = 140788, - [SMALL_STATE(1462)] = 140834, - [SMALL_STATE(1463)] = 140880, - [SMALL_STATE(1464)] = 140926, - [SMALL_STATE(1465)] = 140972, - [SMALL_STATE(1466)] = 141018, - [SMALL_STATE(1467)] = 141064, - [SMALL_STATE(1468)] = 141110, - [SMALL_STATE(1469)] = 141156, - [SMALL_STATE(1470)] = 141202, - [SMALL_STATE(1471)] = 141248, - [SMALL_STATE(1472)] = 141294, - [SMALL_STATE(1473)] = 141340, - [SMALL_STATE(1474)] = 141386, - [SMALL_STATE(1475)] = 141432, - [SMALL_STATE(1476)] = 141478, - [SMALL_STATE(1477)] = 141524, - [SMALL_STATE(1478)] = 141570, - [SMALL_STATE(1479)] = 141616, - [SMALL_STATE(1480)] = 141662, - [SMALL_STATE(1481)] = 141708, - [SMALL_STATE(1482)] = 141754, - [SMALL_STATE(1483)] = 141800, - [SMALL_STATE(1484)] = 141846, - [SMALL_STATE(1485)] = 141918, - [SMALL_STATE(1486)] = 141964, - [SMALL_STATE(1487)] = 142036, - [SMALL_STATE(1488)] = 142082, - [SMALL_STATE(1489)] = 142128, - [SMALL_STATE(1490)] = 142174, - [SMALL_STATE(1491)] = 142220, - [SMALL_STATE(1492)] = 142292, - [SMALL_STATE(1493)] = 142338, - [SMALL_STATE(1494)] = 142384, - [SMALL_STATE(1495)] = 142430, - [SMALL_STATE(1496)] = 142476, - [SMALL_STATE(1497)] = 142522, - [SMALL_STATE(1498)] = 142568, - [SMALL_STATE(1499)] = 142614, - [SMALL_STATE(1500)] = 142686, - [SMALL_STATE(1501)] = 142732, - [SMALL_STATE(1502)] = 142778, - [SMALL_STATE(1503)] = 142850, - [SMALL_STATE(1504)] = 142922, - [SMALL_STATE(1505)] = 142968, - [SMALL_STATE(1506)] = 143040, - [SMALL_STATE(1507)] = 143086, - [SMALL_STATE(1508)] = 143132, - [SMALL_STATE(1509)] = 143178, - [SMALL_STATE(1510)] = 143224, - [SMALL_STATE(1511)] = 143270, - [SMALL_STATE(1512)] = 143316, - [SMALL_STATE(1513)] = 143362, - [SMALL_STATE(1514)] = 143408, - [SMALL_STATE(1515)] = 143454, - [SMALL_STATE(1516)] = 143504, - [SMALL_STATE(1517)] = 143550, - [SMALL_STATE(1518)] = 143596, - [SMALL_STATE(1519)] = 143642, - [SMALL_STATE(1520)] = 143688, - [SMALL_STATE(1521)] = 143734, - [SMALL_STATE(1522)] = 143780, - [SMALL_STATE(1523)] = 143826, - [SMALL_STATE(1524)] = 143898, - [SMALL_STATE(1525)] = 143944, - [SMALL_STATE(1526)] = 143994, - [SMALL_STATE(1527)] = 144066, - [SMALL_STATE(1528)] = 144138, - [SMALL_STATE(1529)] = 144210, - [SMALL_STATE(1530)] = 144256, - [SMALL_STATE(1531)] = 144328, - [SMALL_STATE(1532)] = 144374, - [SMALL_STATE(1533)] = 144446, - [SMALL_STATE(1534)] = 144515, - [SMALL_STATE(1535)] = 144558, - [SMALL_STATE(1536)] = 144601, - [SMALL_STATE(1537)] = 144644, - [SMALL_STATE(1538)] = 144687, - [SMALL_STATE(1539)] = 144730, - [SMALL_STATE(1540)] = 144773, - [SMALL_STATE(1541)] = 144816, - [SMALL_STATE(1542)] = 144859, - [SMALL_STATE(1543)] = 144902, - [SMALL_STATE(1544)] = 144945, - [SMALL_STATE(1545)] = 144988, - [SMALL_STATE(1546)] = 145031, - [SMALL_STATE(1547)] = 145074, - [SMALL_STATE(1548)] = 145117, - [SMALL_STATE(1549)] = 145160, - [SMALL_STATE(1550)] = 145203, - [SMALL_STATE(1551)] = 145246, - [SMALL_STATE(1552)] = 145289, - [SMALL_STATE(1553)] = 145332, - [SMALL_STATE(1554)] = 145375, - [SMALL_STATE(1555)] = 145418, - [SMALL_STATE(1556)] = 145461, - [SMALL_STATE(1557)] = 145504, - [SMALL_STATE(1558)] = 145547, - [SMALL_STATE(1559)] = 145590, - [SMALL_STATE(1560)] = 145633, - [SMALL_STATE(1561)] = 145676, - [SMALL_STATE(1562)] = 145719, - [SMALL_STATE(1563)] = 145764, - [SMALL_STATE(1564)] = 145807, - [SMALL_STATE(1565)] = 145850, - [SMALL_STATE(1566)] = 145893, - [SMALL_STATE(1567)] = 145936, - [SMALL_STATE(1568)] = 145979, - [SMALL_STATE(1569)] = 146022, - [SMALL_STATE(1570)] = 146065, - [SMALL_STATE(1571)] = 146108, - [SMALL_STATE(1572)] = 146151, - [SMALL_STATE(1573)] = 146194, - [SMALL_STATE(1574)] = 146237, - [SMALL_STATE(1575)] = 146280, - [SMALL_STATE(1576)] = 146323, - [SMALL_STATE(1577)] = 146366, - [SMALL_STATE(1578)] = 146409, - [SMALL_STATE(1579)] = 146452, - [SMALL_STATE(1580)] = 146495, - [SMALL_STATE(1581)] = 146538, - [SMALL_STATE(1582)] = 146581, - [SMALL_STATE(1583)] = 146624, - [SMALL_STATE(1584)] = 146667, - [SMALL_STATE(1585)] = 146710, - [SMALL_STATE(1586)] = 146753, - [SMALL_STATE(1587)] = 146796, - [SMALL_STATE(1588)] = 146839, - [SMALL_STATE(1589)] = 146882, - [SMALL_STATE(1590)] = 146925, - [SMALL_STATE(1591)] = 146972, - [SMALL_STATE(1592)] = 147015, - [SMALL_STATE(1593)] = 147058, - [SMALL_STATE(1594)] = 147101, - [SMALL_STATE(1595)] = 147144, - [SMALL_STATE(1596)] = 147187, - [SMALL_STATE(1597)] = 147230, - [SMALL_STATE(1598)] = 147273, - [SMALL_STATE(1599)] = 147316, - [SMALL_STATE(1600)] = 147359, - [SMALL_STATE(1601)] = 147402, - [SMALL_STATE(1602)] = 147445, - [SMALL_STATE(1603)] = 147488, - [SMALL_STATE(1604)] = 147531, - [SMALL_STATE(1605)] = 147574, - [SMALL_STATE(1606)] = 147617, - [SMALL_STATE(1607)] = 147660, - [SMALL_STATE(1608)] = 147703, - [SMALL_STATE(1609)] = 147746, - [SMALL_STATE(1610)] = 147789, - [SMALL_STATE(1611)] = 147836, - [SMALL_STATE(1612)] = 147879, - [SMALL_STATE(1613)] = 147922, - [SMALL_STATE(1614)] = 147965, - [SMALL_STATE(1615)] = 148008, - [SMALL_STATE(1616)] = 148051, - [SMALL_STATE(1617)] = 148094, - [SMALL_STATE(1618)] = 148137, - [SMALL_STATE(1619)] = 148180, - [SMALL_STATE(1620)] = 148223, - [SMALL_STATE(1621)] = 148266, - [SMALL_STATE(1622)] = 148309, - [SMALL_STATE(1623)] = 148352, - [SMALL_STATE(1624)] = 148395, - [SMALL_STATE(1625)] = 148438, - [SMALL_STATE(1626)] = 148481, - [SMALL_STATE(1627)] = 148524, - [SMALL_STATE(1628)] = 148567, - [SMALL_STATE(1629)] = 148610, - [SMALL_STATE(1630)] = 148653, - [SMALL_STATE(1631)] = 148696, - [SMALL_STATE(1632)] = 148739, - [SMALL_STATE(1633)] = 148782, - [SMALL_STATE(1634)] = 148825, - [SMALL_STATE(1635)] = 148868, - [SMALL_STATE(1636)] = 148911, - [SMALL_STATE(1637)] = 148954, - [SMALL_STATE(1638)] = 148997, - [SMALL_STATE(1639)] = 149040, - [SMALL_STATE(1640)] = 149083, - [SMALL_STATE(1641)] = 149126, - [SMALL_STATE(1642)] = 149169, - [SMALL_STATE(1643)] = 149212, - [SMALL_STATE(1644)] = 149255, - [SMALL_STATE(1645)] = 149298, - [SMALL_STATE(1646)] = 149341, - [SMALL_STATE(1647)] = 149384, - [SMALL_STATE(1648)] = 149427, - [SMALL_STATE(1649)] = 149470, - [SMALL_STATE(1650)] = 149513, - [SMALL_STATE(1651)] = 149556, - [SMALL_STATE(1652)] = 149599, - [SMALL_STATE(1653)] = 149642, - [SMALL_STATE(1654)] = 149685, - [SMALL_STATE(1655)] = 149728, - [SMALL_STATE(1656)] = 149771, - [SMALL_STATE(1657)] = 149820, - [SMALL_STATE(1658)] = 149868, - [SMALL_STATE(1659)] = 149909, - [SMALL_STATE(1660)] = 149952, - [SMALL_STATE(1661)] = 150011, - [SMALL_STATE(1662)] = 150051, - [SMALL_STATE(1663)] = 150091, - [SMALL_STATE(1664)] = 150131, - [SMALL_STATE(1665)] = 150171, - [SMALL_STATE(1666)] = 150211, - [SMALL_STATE(1667)] = 150251, - [SMALL_STATE(1668)] = 150291, - [SMALL_STATE(1669)] = 150331, - [SMALL_STATE(1670)] = 150371, - [SMALL_STATE(1671)] = 150411, - [SMALL_STATE(1672)] = 150451, - [SMALL_STATE(1673)] = 150491, - [SMALL_STATE(1674)] = 150531, - [SMALL_STATE(1675)] = 150571, - [SMALL_STATE(1676)] = 150611, - [SMALL_STATE(1677)] = 150651, - [SMALL_STATE(1678)] = 150691, - [SMALL_STATE(1679)] = 150731, - [SMALL_STATE(1680)] = 150771, - [SMALL_STATE(1681)] = 150811, - [SMALL_STATE(1682)] = 150851, - [SMALL_STATE(1683)] = 150891, - [SMALL_STATE(1684)] = 150931, - [SMALL_STATE(1685)] = 150971, - [SMALL_STATE(1686)] = 151011, - [SMALL_STATE(1687)] = 151051, - [SMALL_STATE(1688)] = 151091, - [SMALL_STATE(1689)] = 151131, - [SMALL_STATE(1690)] = 151171, - [SMALL_STATE(1691)] = 151211, - [SMALL_STATE(1692)] = 151251, - [SMALL_STATE(1693)] = 151291, - [SMALL_STATE(1694)] = 151331, - [SMALL_STATE(1695)] = 151371, - [SMALL_STATE(1696)] = 151411, - [SMALL_STATE(1697)] = 151451, - [SMALL_STATE(1698)] = 151491, - [SMALL_STATE(1699)] = 151531, - [SMALL_STATE(1700)] = 151571, - [SMALL_STATE(1701)] = 151611, - [SMALL_STATE(1702)] = 151651, - [SMALL_STATE(1703)] = 151691, - [SMALL_STATE(1704)] = 151731, - [SMALL_STATE(1705)] = 151771, - [SMALL_STATE(1706)] = 151811, - [SMALL_STATE(1707)] = 151851, - [SMALL_STATE(1708)] = 151891, - [SMALL_STATE(1709)] = 151931, - [SMALL_STATE(1710)] = 151971, - [SMALL_STATE(1711)] = 152011, - [SMALL_STATE(1712)] = 152051, - [SMALL_STATE(1713)] = 152091, - [SMALL_STATE(1714)] = 152131, - [SMALL_STATE(1715)] = 152171, - [SMALL_STATE(1716)] = 152211, - [SMALL_STATE(1717)] = 152251, - [SMALL_STATE(1718)] = 152291, - [SMALL_STATE(1719)] = 152331, - [SMALL_STATE(1720)] = 152371, - [SMALL_STATE(1721)] = 152411, - [SMALL_STATE(1722)] = 152451, - [SMALL_STATE(1723)] = 152491, - [SMALL_STATE(1724)] = 152531, - [SMALL_STATE(1725)] = 152571, - [SMALL_STATE(1726)] = 152611, - [SMALL_STATE(1727)] = 152651, - [SMALL_STATE(1728)] = 152691, - [SMALL_STATE(1729)] = 152731, - [SMALL_STATE(1730)] = 152771, - [SMALL_STATE(1731)] = 152811, - [SMALL_STATE(1732)] = 152851, - [SMALL_STATE(1733)] = 152891, - [SMALL_STATE(1734)] = 152931, - [SMALL_STATE(1735)] = 152971, - [SMALL_STATE(1736)] = 153011, - [SMALL_STATE(1737)] = 153051, - [SMALL_STATE(1738)] = 153091, - [SMALL_STATE(1739)] = 153131, - [SMALL_STATE(1740)] = 153171, - [SMALL_STATE(1741)] = 153211, - [SMALL_STATE(1742)] = 153251, - [SMALL_STATE(1743)] = 153291, - [SMALL_STATE(1744)] = 153331, - [SMALL_STATE(1745)] = 153371, - [SMALL_STATE(1746)] = 153411, - [SMALL_STATE(1747)] = 153451, - [SMALL_STATE(1748)] = 153491, - [SMALL_STATE(1749)] = 153531, - [SMALL_STATE(1750)] = 153571, - [SMALL_STATE(1751)] = 153611, - [SMALL_STATE(1752)] = 153651, - [SMALL_STATE(1753)] = 153691, - [SMALL_STATE(1754)] = 153731, - [SMALL_STATE(1755)] = 153771, - [SMALL_STATE(1756)] = 153811, - [SMALL_STATE(1757)] = 153851, - [SMALL_STATE(1758)] = 153891, - [SMALL_STATE(1759)] = 153931, - [SMALL_STATE(1760)] = 153971, - [SMALL_STATE(1761)] = 154011, - [SMALL_STATE(1762)] = 154051, - [SMALL_STATE(1763)] = 154091, - [SMALL_STATE(1764)] = 154131, - [SMALL_STATE(1765)] = 154171, - [SMALL_STATE(1766)] = 154211, - [SMALL_STATE(1767)] = 154251, - [SMALL_STATE(1768)] = 154291, - [SMALL_STATE(1769)] = 154331, - [SMALL_STATE(1770)] = 154371, - [SMALL_STATE(1771)] = 154411, - [SMALL_STATE(1772)] = 154451, - [SMALL_STATE(1773)] = 154491, - [SMALL_STATE(1774)] = 154531, - [SMALL_STATE(1775)] = 154571, - [SMALL_STATE(1776)] = 154611, - [SMALL_STATE(1777)] = 154651, - [SMALL_STATE(1778)] = 154691, - [SMALL_STATE(1779)] = 154731, - [SMALL_STATE(1780)] = 154771, - [SMALL_STATE(1781)] = 154811, - [SMALL_STATE(1782)] = 154851, - [SMALL_STATE(1783)] = 154891, - [SMALL_STATE(1784)] = 154931, - [SMALL_STATE(1785)] = 154971, - [SMALL_STATE(1786)] = 155011, - [SMALL_STATE(1787)] = 155051, - [SMALL_STATE(1788)] = 155091, - [SMALL_STATE(1789)] = 155131, - [SMALL_STATE(1790)] = 155171, - [SMALL_STATE(1791)] = 155211, - [SMALL_STATE(1792)] = 155251, - [SMALL_STATE(1793)] = 155291, - [SMALL_STATE(1794)] = 155331, - [SMALL_STATE(1795)] = 155371, - [SMALL_STATE(1796)] = 155411, - [SMALL_STATE(1797)] = 155451, - [SMALL_STATE(1798)] = 155491, - [SMALL_STATE(1799)] = 155531, - [SMALL_STATE(1800)] = 155571, - [SMALL_STATE(1801)] = 155611, - [SMALL_STATE(1802)] = 155651, - [SMALL_STATE(1803)] = 155691, - [SMALL_STATE(1804)] = 155731, - [SMALL_STATE(1805)] = 155771, - [SMALL_STATE(1806)] = 155811, - [SMALL_STATE(1807)] = 155851, - [SMALL_STATE(1808)] = 155895, - [SMALL_STATE(1809)] = 155935, - [SMALL_STATE(1810)] = 155975, - [SMALL_STATE(1811)] = 156015, - [SMALL_STATE(1812)] = 156055, - [SMALL_STATE(1813)] = 156095, - [SMALL_STATE(1814)] = 156139, - [SMALL_STATE(1815)] = 156179, - [SMALL_STATE(1816)] = 156219, - [SMALL_STATE(1817)] = 156259, - [SMALL_STATE(1818)] = 156301, - [SMALL_STATE(1819)] = 156343, - [SMALL_STATE(1820)] = 156383, - [SMALL_STATE(1821)] = 156423, - [SMALL_STATE(1822)] = 156463, - [SMALL_STATE(1823)] = 156503, - [SMALL_STATE(1824)] = 156543, - [SMALL_STATE(1825)] = 156583, - [SMALL_STATE(1826)] = 156623, - [SMALL_STATE(1827)] = 156663, - [SMALL_STATE(1828)] = 156703, - [SMALL_STATE(1829)] = 156740, - [SMALL_STATE(1830)] = 156777, - [SMALL_STATE(1831)] = 156816, - [SMALL_STATE(1832)] = 156863, - [SMALL_STATE(1833)] = 156902, - [SMALL_STATE(1834)] = 156941, - [SMALL_STATE(1835)] = 156980, - [SMALL_STATE(1836)] = 157019, - [SMALL_STATE(1837)] = 157056, - [SMALL_STATE(1838)] = 157093, - [SMALL_STATE(1839)] = 157130, - [SMALL_STATE(1840)] = 157169, - [SMALL_STATE(1841)] = 157216, - [SMALL_STATE(1842)] = 157253, - [SMALL_STATE(1843)] = 157290, - [SMALL_STATE(1844)] = 157327, - [SMALL_STATE(1845)] = 157364, - [SMALL_STATE(1846)] = 157401, - [SMALL_STATE(1847)] = 157438, - [SMALL_STATE(1848)] = 157475, - [SMALL_STATE(1849)] = 157512, - [SMALL_STATE(1850)] = 157549, - [SMALL_STATE(1851)] = 157586, - [SMALL_STATE(1852)] = 157623, - [SMALL_STATE(1853)] = 157659, - [SMALL_STATE(1854)] = 157695, - [SMALL_STATE(1855)] = 157731, - [SMALL_STATE(1856)] = 157767, - [SMALL_STATE(1857)] = 157803, - [SMALL_STATE(1858)] = 157839, - [SMALL_STATE(1859)] = 157875, - [SMALL_STATE(1860)] = 157911, - [SMALL_STATE(1861)] = 157947, - [SMALL_STATE(1862)] = 157984, - [SMALL_STATE(1863)] = 158021, - [SMALL_STATE(1864)] = 158069, - [SMALL_STATE(1865)] = 158117, - [SMALL_STATE(1866)] = 158150, - [SMALL_STATE(1867)] = 158183, - [SMALL_STATE(1868)] = 158216, - [SMALL_STATE(1869)] = 158249, - [SMALL_STATE(1870)] = 158282, - [SMALL_STATE(1871)] = 158315, - [SMALL_STATE(1872)] = 158348, - [SMALL_STATE(1873)] = 158381, - [SMALL_STATE(1874)] = 158414, - [SMALL_STATE(1875)] = 158447, - [SMALL_STATE(1876)] = 158480, - [SMALL_STATE(1877)] = 158513, - [SMALL_STATE(1878)] = 158546, - [SMALL_STATE(1879)] = 158579, - [SMALL_STATE(1880)] = 158612, - [SMALL_STATE(1881)] = 158645, - [SMALL_STATE(1882)] = 158678, - [SMALL_STATE(1883)] = 158711, - [SMALL_STATE(1884)] = 158744, - [SMALL_STATE(1885)] = 158777, - [SMALL_STATE(1886)] = 158810, - [SMALL_STATE(1887)] = 158843, - [SMALL_STATE(1888)] = 158876, - [SMALL_STATE(1889)] = 158909, - [SMALL_STATE(1890)] = 158942, - [SMALL_STATE(1891)] = 158975, - [SMALL_STATE(1892)] = 159008, - [SMALL_STATE(1893)] = 159041, - [SMALL_STATE(1894)] = 159074, - [SMALL_STATE(1895)] = 159107, - [SMALL_STATE(1896)] = 159140, - [SMALL_STATE(1897)] = 159173, - [SMALL_STATE(1898)] = 159206, - [SMALL_STATE(1899)] = 159239, - [SMALL_STATE(1900)] = 159272, - [SMALL_STATE(1901)] = 159305, - [SMALL_STATE(1902)] = 159338, - [SMALL_STATE(1903)] = 159371, - [SMALL_STATE(1904)] = 159404, - [SMALL_STATE(1905)] = 159437, - [SMALL_STATE(1906)] = 159470, - [SMALL_STATE(1907)] = 159503, - [SMALL_STATE(1908)] = 159536, - [SMALL_STATE(1909)] = 159569, - [SMALL_STATE(1910)] = 159602, - [SMALL_STATE(1911)] = 159635, - [SMALL_STATE(1912)] = 159668, - [SMALL_STATE(1913)] = 159701, - [SMALL_STATE(1914)] = 159734, - [SMALL_STATE(1915)] = 159767, - [SMALL_STATE(1916)] = 159800, - [SMALL_STATE(1917)] = 159833, - [SMALL_STATE(1918)] = 159866, - [SMALL_STATE(1919)] = 159899, - [SMALL_STATE(1920)] = 159932, - [SMALL_STATE(1921)] = 159965, - [SMALL_STATE(1922)] = 159998, - [SMALL_STATE(1923)] = 160031, - [SMALL_STATE(1924)] = 160064, - [SMALL_STATE(1925)] = 160097, - [SMALL_STATE(1926)] = 160130, - [SMALL_STATE(1927)] = 160163, - [SMALL_STATE(1928)] = 160196, - [SMALL_STATE(1929)] = 160229, - [SMALL_STATE(1930)] = 160262, - [SMALL_STATE(1931)] = 160295, - [SMALL_STATE(1932)] = 160328, - [SMALL_STATE(1933)] = 160361, - [SMALL_STATE(1934)] = 160394, - [SMALL_STATE(1935)] = 160427, - [SMALL_STATE(1936)] = 160460, - [SMALL_STATE(1937)] = 160493, - [SMALL_STATE(1938)] = 160526, - [SMALL_STATE(1939)] = 160559, - [SMALL_STATE(1940)] = 160592, - [SMALL_STATE(1941)] = 160625, - [SMALL_STATE(1942)] = 160658, - [SMALL_STATE(1943)] = 160691, - [SMALL_STATE(1944)] = 160724, - [SMALL_STATE(1945)] = 160757, - [SMALL_STATE(1946)] = 160790, - [SMALL_STATE(1947)] = 160823, - [SMALL_STATE(1948)] = 160856, - [SMALL_STATE(1949)] = 160889, - [SMALL_STATE(1950)] = 160922, - [SMALL_STATE(1951)] = 160955, - [SMALL_STATE(1952)] = 160988, - [SMALL_STATE(1953)] = 161021, - [SMALL_STATE(1954)] = 161054, - [SMALL_STATE(1955)] = 161087, - [SMALL_STATE(1956)] = 161120, - [SMALL_STATE(1957)] = 161153, - [SMALL_STATE(1958)] = 161186, - [SMALL_STATE(1959)] = 161219, - [SMALL_STATE(1960)] = 161252, - [SMALL_STATE(1961)] = 161285, - [SMALL_STATE(1962)] = 161318, - [SMALL_STATE(1963)] = 161351, - [SMALL_STATE(1964)] = 161384, - [SMALL_STATE(1965)] = 161417, - [SMALL_STATE(1966)] = 161450, - [SMALL_STATE(1967)] = 161483, - [SMALL_STATE(1968)] = 161516, - [SMALL_STATE(1969)] = 161549, - [SMALL_STATE(1970)] = 161582, - [SMALL_STATE(1971)] = 161615, - [SMALL_STATE(1972)] = 161648, - [SMALL_STATE(1973)] = 161681, - [SMALL_STATE(1974)] = 161714, - [SMALL_STATE(1975)] = 161747, - [SMALL_STATE(1976)] = 161780, - [SMALL_STATE(1977)] = 161813, - [SMALL_STATE(1978)] = 161846, - [SMALL_STATE(1979)] = 161879, - [SMALL_STATE(1980)] = 161912, - [SMALL_STATE(1981)] = 161945, - [SMALL_STATE(1982)] = 161978, - [SMALL_STATE(1983)] = 162011, - [SMALL_STATE(1984)] = 162044, - [SMALL_STATE(1985)] = 162077, - [SMALL_STATE(1986)] = 162110, - [SMALL_STATE(1987)] = 162143, - [SMALL_STATE(1988)] = 162176, - [SMALL_STATE(1989)] = 162209, - [SMALL_STATE(1990)] = 162242, - [SMALL_STATE(1991)] = 162275, - [SMALL_STATE(1992)] = 162308, - [SMALL_STATE(1993)] = 162341, - [SMALL_STATE(1994)] = 162374, - [SMALL_STATE(1995)] = 162407, - [SMALL_STATE(1996)] = 162440, - [SMALL_STATE(1997)] = 162488, - [SMALL_STATE(1998)] = 162536, - [SMALL_STATE(1999)] = 162584, - [SMALL_STATE(2000)] = 162632, - [SMALL_STATE(2001)] = 162680, - [SMALL_STATE(2002)] = 162728, - [SMALL_STATE(2003)] = 162776, - [SMALL_STATE(2004)] = 162824, - [SMALL_STATE(2005)] = 162872, - [SMALL_STATE(2006)] = 162920, - [SMALL_STATE(2007)] = 162968, - [SMALL_STATE(2008)] = 163016, - [SMALL_STATE(2009)] = 163047, - [SMALL_STATE(2010)] = 163078, - [SMALL_STATE(2011)] = 163140, - [SMALL_STATE(2012)] = 163202, - [SMALL_STATE(2013)] = 163268, - [SMALL_STATE(2014)] = 163310, - [SMALL_STATE(2015)] = 163372, - [SMALL_STATE(2016)] = 163438, - [SMALL_STATE(2017)] = 163504, - [SMALL_STATE(2018)] = 163566, - [SMALL_STATE(2019)] = 163628, - [SMALL_STATE(2020)] = 163690, - [SMALL_STATE(2021)] = 163756, - [SMALL_STATE(2022)] = 163818, - [SMALL_STATE(2023)] = 163880, - [SMALL_STATE(2024)] = 163917, - [SMALL_STATE(2025)] = 163951, - [SMALL_STATE(2026)] = 163981, - [SMALL_STATE(2027)] = 164015, - [SMALL_STATE(2028)] = 164078, - [SMALL_STATE(2029)] = 164107, - [SMALL_STATE(2030)] = 164170, - [SMALL_STATE(2031)] = 164199, - [SMALL_STATE(2032)] = 164228, - [SMALL_STATE(2033)] = 164291, - [SMALL_STATE(2034)] = 164320, - [SMALL_STATE(2035)] = 164349, - [SMALL_STATE(2036)] = 164378, - [SMALL_STATE(2037)] = 164441, - [SMALL_STATE(2038)] = 164504, - [SMALL_STATE(2039)] = 164533, - [SMALL_STATE(2040)] = 164562, - [SMALL_STATE(2041)] = 164593, - [SMALL_STATE(2042)] = 164622, - [SMALL_STATE(2043)] = 164685, - [SMALL_STATE(2044)] = 164714, - [SMALL_STATE(2045)] = 164743, - [SMALL_STATE(2046)] = 164772, - [SMALL_STATE(2047)] = 164801, - [SMALL_STATE(2048)] = 164830, - [SMALL_STATE(2049)] = 164893, - [SMALL_STATE(2050)] = 164922, - [SMALL_STATE(2051)] = 164985, - [SMALL_STATE(2052)] = 165048, - [SMALL_STATE(2053)] = 165111, - [SMALL_STATE(2054)] = 165140, - [SMALL_STATE(2055)] = 165171, - [SMALL_STATE(2056)] = 165200, - [SMALL_STATE(2057)] = 165263, - [SMALL_STATE(2058)] = 165292, - [SMALL_STATE(2059)] = 165321, - [SMALL_STATE(2060)] = 165350, - [SMALL_STATE(2061)] = 165379, - [SMALL_STATE(2062)] = 165408, - [SMALL_STATE(2063)] = 165471, - [SMALL_STATE(2064)] = 165500, - [SMALL_STATE(2065)] = 165563, - [SMALL_STATE(2066)] = 165626, - [SMALL_STATE(2067)] = 165655, - [SMALL_STATE(2068)] = 165684, - [SMALL_STATE(2069)] = 165713, - [SMALL_STATE(2070)] = 165741, - [SMALL_STATE(2071)] = 165769, - [SMALL_STATE(2072)] = 165797, - [SMALL_STATE(2073)] = 165825, - [SMALL_STATE(2074)] = 165853, - [SMALL_STATE(2075)] = 165881, - [SMALL_STATE(2076)] = 165933, - [SMALL_STATE(2077)] = 165961, - [SMALL_STATE(2078)] = 165989, - [SMALL_STATE(2079)] = 166017, - [SMALL_STATE(2080)] = 166045, - [SMALL_STATE(2081)] = 166073, - [SMALL_STATE(2082)] = 166125, - [SMALL_STATE(2083)] = 166153, - [SMALL_STATE(2084)] = 166181, - [SMALL_STATE(2085)] = 166209, - [SMALL_STATE(2086)] = 166237, - [SMALL_STATE(2087)] = 166265, - [SMALL_STATE(2088)] = 166317, - [SMALL_STATE(2089)] = 166345, - [SMALL_STATE(2090)] = 166397, - [SMALL_STATE(2091)] = 166425, - [SMALL_STATE(2092)] = 166453, - [SMALL_STATE(2093)] = 166481, - [SMALL_STATE(2094)] = 166509, - [SMALL_STATE(2095)] = 166537, - [SMALL_STATE(2096)] = 166589, - [SMALL_STATE(2097)] = 166617, - [SMALL_STATE(2098)] = 166669, - [SMALL_STATE(2099)] = 166697, - [SMALL_STATE(2100)] = 166725, - [SMALL_STATE(2101)] = 166753, - [SMALL_STATE(2102)] = 166781, - [SMALL_STATE(2103)] = 166809, - [SMALL_STATE(2104)] = 166837, - [SMALL_STATE(2105)] = 166865, - [SMALL_STATE(2106)] = 166893, - [SMALL_STATE(2107)] = 166921, - [SMALL_STATE(2108)] = 166973, - [SMALL_STATE(2109)] = 167001, - [SMALL_STATE(2110)] = 167053, - [SMALL_STATE(2111)] = 167081, - [SMALL_STATE(2112)] = 167109, - [SMALL_STATE(2113)] = 167137, - [SMALL_STATE(2114)] = 167165, - [SMALL_STATE(2115)] = 167193, - [SMALL_STATE(2116)] = 167221, - [SMALL_STATE(2117)] = 167249, - [SMALL_STATE(2118)] = 167277, - [SMALL_STATE(2119)] = 167305, - [SMALL_STATE(2120)] = 167333, - [SMALL_STATE(2121)] = 167361, - [SMALL_STATE(2122)] = 167389, - [SMALL_STATE(2123)] = 167417, - [SMALL_STATE(2124)] = 167445, - [SMALL_STATE(2125)] = 167473, - [SMALL_STATE(2126)] = 167501, - [SMALL_STATE(2127)] = 167529, - [SMALL_STATE(2128)] = 167557, - [SMALL_STATE(2129)] = 167585, - [SMALL_STATE(2130)] = 167613, - [SMALL_STATE(2131)] = 167641, - [SMALL_STATE(2132)] = 167669, - [SMALL_STATE(2133)] = 167697, - [SMALL_STATE(2134)] = 167725, - [SMALL_STATE(2135)] = 167753, - [SMALL_STATE(2136)] = 167781, - [SMALL_STATE(2137)] = 167809, - [SMALL_STATE(2138)] = 167861, - [SMALL_STATE(2139)] = 167889, - [SMALL_STATE(2140)] = 167917, - [SMALL_STATE(2141)] = 167945, - [SMALL_STATE(2142)] = 167973, - [SMALL_STATE(2143)] = 168001, - [SMALL_STATE(2144)] = 168029, - [SMALL_STATE(2145)] = 168057, - [SMALL_STATE(2146)] = 168085, - [SMALL_STATE(2147)] = 168113, - [SMALL_STATE(2148)] = 168141, - [SMALL_STATE(2149)] = 168169, - [SMALL_STATE(2150)] = 168197, - [SMALL_STATE(2151)] = 168225, - [SMALL_STATE(2152)] = 168253, - [SMALL_STATE(2153)] = 168281, - [SMALL_STATE(2154)] = 168309, - [SMALL_STATE(2155)] = 168337, - [SMALL_STATE(2156)] = 168365, - [SMALL_STATE(2157)] = 168393, - [SMALL_STATE(2158)] = 168421, - [SMALL_STATE(2159)] = 168449, - [SMALL_STATE(2160)] = 168477, - [SMALL_STATE(2161)] = 168505, - [SMALL_STATE(2162)] = 168533, - [SMALL_STATE(2163)] = 168561, - [SMALL_STATE(2164)] = 168589, - [SMALL_STATE(2165)] = 168641, - [SMALL_STATE(2166)] = 168669, - [SMALL_STATE(2167)] = 168697, - [SMALL_STATE(2168)] = 168749, - [SMALL_STATE(2169)] = 168777, - [SMALL_STATE(2170)] = 168805, - [SMALL_STATE(2171)] = 168833, - [SMALL_STATE(2172)] = 168861, - [SMALL_STATE(2173)] = 168889, - [SMALL_STATE(2174)] = 168917, - [SMALL_STATE(2175)] = 168945, - [SMALL_STATE(2176)] = 168973, - [SMALL_STATE(2177)] = 169001, - [SMALL_STATE(2178)] = 169029, - [SMALL_STATE(2179)] = 169057, - [SMALL_STATE(2180)] = 169085, - [SMALL_STATE(2181)] = 169113, - [SMALL_STATE(2182)] = 169141, - [SMALL_STATE(2183)] = 169169, - [SMALL_STATE(2184)] = 169197, - [SMALL_STATE(2185)] = 169225, - [SMALL_STATE(2186)] = 169253, - [SMALL_STATE(2187)] = 169281, - [SMALL_STATE(2188)] = 169309, - [SMALL_STATE(2189)] = 169337, - [SMALL_STATE(2190)] = 169365, - [SMALL_STATE(2191)] = 169393, - [SMALL_STATE(2192)] = 169445, - [SMALL_STATE(2193)] = 169473, - [SMALL_STATE(2194)] = 169501, - [SMALL_STATE(2195)] = 169529, - [SMALL_STATE(2196)] = 169557, - [SMALL_STATE(2197)] = 169585, - [SMALL_STATE(2198)] = 169613, - [SMALL_STATE(2199)] = 169641, - [SMALL_STATE(2200)] = 169690, - [SMALL_STATE(2201)] = 169741, - [SMALL_STATE(2202)] = 169774, - [SMALL_STATE(2203)] = 169825, - [SMALL_STATE(2204)] = 169876, - [SMALL_STATE(2205)] = 169927, - [SMALL_STATE(2206)] = 169978, - [SMALL_STATE(2207)] = 170029, - [SMALL_STATE(2208)] = 170080, - [SMALL_STATE(2209)] = 170129, - [SMALL_STATE(2210)] = 170180, - [SMALL_STATE(2211)] = 170213, - [SMALL_STATE(2212)] = 170264, - [SMALL_STATE(2213)] = 170315, - [SMALL_STATE(2214)] = 170348, - [SMALL_STATE(2215)] = 170399, - [SMALL_STATE(2216)] = 170442, - [SMALL_STATE(2217)] = 170493, - [SMALL_STATE(2218)] = 170544, - [SMALL_STATE(2219)] = 170595, - [SMALL_STATE(2220)] = 170646, - [SMALL_STATE(2221)] = 170697, - [SMALL_STATE(2222)] = 170730, - [SMALL_STATE(2223)] = 170763, - [SMALL_STATE(2224)] = 170793, - [SMALL_STATE(2225)] = 170823, - [SMALL_STATE(2226)] = 170853, - [SMALL_STATE(2227)] = 170878, - [SMALL_STATE(2228)] = 170903, - [SMALL_STATE(2229)] = 170928, - [SMALL_STATE(2230)] = 170953, - [SMALL_STATE(2231)] = 170978, - [SMALL_STATE(2232)] = 171003, - [SMALL_STATE(2233)] = 171028, - [SMALL_STATE(2234)] = 171065, - [SMALL_STATE(2235)] = 171090, - [SMALL_STATE(2236)] = 171114, - [SMALL_STATE(2237)] = 171136, - [SMALL_STATE(2238)] = 171160, - [SMALL_STATE(2239)] = 171188, - [SMALL_STATE(2240)] = 171209, - [SMALL_STATE(2241)] = 171230, - [SMALL_STATE(2242)] = 171251, - [SMALL_STATE(2243)] = 171272, - [SMALL_STATE(2244)] = 171293, - [SMALL_STATE(2245)] = 171314, - [SMALL_STATE(2246)] = 171335, - [SMALL_STATE(2247)] = 171356, - [SMALL_STATE(2248)] = 171377, - [SMALL_STATE(2249)] = 171398, - [SMALL_STATE(2250)] = 171419, - [SMALL_STATE(2251)] = 171440, - [SMALL_STATE(2252)] = 171461, - [SMALL_STATE(2253)] = 171482, - [SMALL_STATE(2254)] = 171503, - [SMALL_STATE(2255)] = 171524, - [SMALL_STATE(2256)] = 171545, - [SMALL_STATE(2257)] = 171566, - [SMALL_STATE(2258)] = 171587, - [SMALL_STATE(2259)] = 171608, - [SMALL_STATE(2260)] = 171629, - [SMALL_STATE(2261)] = 171650, - [SMALL_STATE(2262)] = 171677, - [SMALL_STATE(2263)] = 171698, - [SMALL_STATE(2264)] = 171719, - [SMALL_STATE(2265)] = 171740, - [SMALL_STATE(2266)] = 171761, - [SMALL_STATE(2267)] = 171782, - [SMALL_STATE(2268)] = 171803, - [SMALL_STATE(2269)] = 171828, - [SMALL_STATE(2270)] = 171849, - [SMALL_STATE(2271)] = 171870, - [SMALL_STATE(2272)] = 171891, - [SMALL_STATE(2273)] = 171912, - [SMALL_STATE(2274)] = 171933, - [SMALL_STATE(2275)] = 171954, - [SMALL_STATE(2276)] = 171975, - [SMALL_STATE(2277)] = 171996, - [SMALL_STATE(2278)] = 172017, - [SMALL_STATE(2279)] = 172038, - [SMALL_STATE(2280)] = 172059, - [SMALL_STATE(2281)] = 172080, - [SMALL_STATE(2282)] = 172101, - [SMALL_STATE(2283)] = 172122, - [SMALL_STATE(2284)] = 172143, - [SMALL_STATE(2285)] = 172164, - [SMALL_STATE(2286)] = 172185, - [SMALL_STATE(2287)] = 172206, - [SMALL_STATE(2288)] = 172227, - [SMALL_STATE(2289)] = 172248, - [SMALL_STATE(2290)] = 172269, - [SMALL_STATE(2291)] = 172290, - [SMALL_STATE(2292)] = 172311, - [SMALL_STATE(2293)] = 172332, - [SMALL_STATE(2294)] = 172353, - [SMALL_STATE(2295)] = 172374, - [SMALL_STATE(2296)] = 172395, - [SMALL_STATE(2297)] = 172416, - [SMALL_STATE(2298)] = 172437, - [SMALL_STATE(2299)] = 172458, - [SMALL_STATE(2300)] = 172479, - [SMALL_STATE(2301)] = 172500, - [SMALL_STATE(2302)] = 172521, - [SMALL_STATE(2303)] = 172542, - [SMALL_STATE(2304)] = 172563, - [SMALL_STATE(2305)] = 172584, - [SMALL_STATE(2306)] = 172605, - [SMALL_STATE(2307)] = 172626, - [SMALL_STATE(2308)] = 172647, - [SMALL_STATE(2309)] = 172668, - [SMALL_STATE(2310)] = 172689, - [SMALL_STATE(2311)] = 172710, - [SMALL_STATE(2312)] = 172731, - [SMALL_STATE(2313)] = 172752, - [SMALL_STATE(2314)] = 172773, - [SMALL_STATE(2315)] = 172794, - [SMALL_STATE(2316)] = 172815, - [SMALL_STATE(2317)] = 172836, - [SMALL_STATE(2318)] = 172857, - [SMALL_STATE(2319)] = 172878, - [SMALL_STATE(2320)] = 172899, - [SMALL_STATE(2321)] = 172920, - [SMALL_STATE(2322)] = 172941, - [SMALL_STATE(2323)] = 172962, - [SMALL_STATE(2324)] = 172983, - [SMALL_STATE(2325)] = 173004, - [SMALL_STATE(2326)] = 173025, - [SMALL_STATE(2327)] = 173046, - [SMALL_STATE(2328)] = 173067, - [SMALL_STATE(2329)] = 173088, - [SMALL_STATE(2330)] = 173109, - [SMALL_STATE(2331)] = 173130, - [SMALL_STATE(2332)] = 173151, - [SMALL_STATE(2333)] = 173172, - [SMALL_STATE(2334)] = 173193, - [SMALL_STATE(2335)] = 173214, - [SMALL_STATE(2336)] = 173235, - [SMALL_STATE(2337)] = 173259, - [SMALL_STATE(2338)] = 173288, - [SMALL_STATE(2339)] = 173321, - [SMALL_STATE(2340)] = 173350, - [SMALL_STATE(2341)] = 173371, - [SMALL_STATE(2342)] = 173400, - [SMALL_STATE(2343)] = 173423, - [SMALL_STATE(2344)] = 173446, - [SMALL_STATE(2345)] = 173467, - [SMALL_STATE(2346)] = 173496, - [SMALL_STATE(2347)] = 173529, - [SMALL_STATE(2348)] = 173562, - [SMALL_STATE(2349)] = 173591, - [SMALL_STATE(2350)] = 173614, - [SMALL_STATE(2351)] = 173637, - [SMALL_STATE(2352)] = 173666, - [SMALL_STATE(2353)] = 173699, - [SMALL_STATE(2354)] = 173728, - [SMALL_STATE(2355)] = 173757, - [SMALL_STATE(2356)] = 173790, - [SMALL_STATE(2357)] = 173819, - [SMALL_STATE(2358)] = 173852, - [SMALL_STATE(2359)] = 173881, - [SMALL_STATE(2360)] = 173914, - [SMALL_STATE(2361)] = 173943, - [SMALL_STATE(2362)] = 173972, - [SMALL_STATE(2363)] = 174001, - [SMALL_STATE(2364)] = 174034, - [SMALL_STATE(2365)] = 174063, - [SMALL_STATE(2366)] = 174096, - [SMALL_STATE(2367)] = 174125, - [SMALL_STATE(2368)] = 174154, - [SMALL_STATE(2369)] = 174183, - [SMALL_STATE(2370)] = 174212, - [SMALL_STATE(2371)] = 174241, - [SMALL_STATE(2372)] = 174270, - [SMALL_STATE(2373)] = 174299, - [SMALL_STATE(2374)] = 174328, - [SMALL_STATE(2375)] = 174361, - [SMALL_STATE(2376)] = 174390, - [SMALL_STATE(2377)] = 174423, - [SMALL_STATE(2378)] = 174452, - [SMALL_STATE(2379)] = 174485, - [SMALL_STATE(2380)] = 174515, - [SMALL_STATE(2381)] = 174545, - [SMALL_STATE(2382)] = 174571, - [SMALL_STATE(2383)] = 174589, - [SMALL_STATE(2384)] = 174619, - [SMALL_STATE(2385)] = 174637, - [SMALL_STATE(2386)] = 174667, - [SMALL_STATE(2387)] = 174685, - [SMALL_STATE(2388)] = 174703, - [SMALL_STATE(2389)] = 174733, - [SMALL_STATE(2390)] = 174763, - [SMALL_STATE(2391)] = 174781, - [SMALL_STATE(2392)] = 174799, - [SMALL_STATE(2393)] = 174817, - [SMALL_STATE(2394)] = 174847, - [SMALL_STATE(2395)] = 174865, - [SMALL_STATE(2396)] = 174895, - [SMALL_STATE(2397)] = 174925, - [SMALL_STATE(2398)] = 174947, - [SMALL_STATE(2399)] = 174977, - [SMALL_STATE(2400)] = 174995, - [SMALL_STATE(2401)] = 175023, - [SMALL_STATE(2402)] = 175041, - [SMALL_STATE(2403)] = 175059, - [SMALL_STATE(2404)] = 175077, - [SMALL_STATE(2405)] = 175097, - [SMALL_STATE(2406)] = 175119, - [SMALL_STATE(2407)] = 175137, - [SMALL_STATE(2408)] = 175155, - [SMALL_STATE(2409)] = 175173, - [SMALL_STATE(2410)] = 175203, - [SMALL_STATE(2411)] = 175221, - [SMALL_STATE(2412)] = 175239, - [SMALL_STATE(2413)] = 175257, - [SMALL_STATE(2414)] = 175275, - [SMALL_STATE(2415)] = 175293, - [SMALL_STATE(2416)] = 175311, - [SMALL_STATE(2417)] = 175329, - [SMALL_STATE(2418)] = 175347, - [SMALL_STATE(2419)] = 175365, - [SMALL_STATE(2420)] = 175383, - [SMALL_STATE(2421)] = 175413, - [SMALL_STATE(2422)] = 175433, - [SMALL_STATE(2423)] = 175451, - [SMALL_STATE(2424)] = 175469, - [SMALL_STATE(2425)] = 175496, - [SMALL_STATE(2426)] = 175527, - [SMALL_STATE(2427)] = 175558, - [SMALL_STATE(2428)] = 175580, - [SMALL_STATE(2429)] = 175602, - [SMALL_STATE(2430)] = 175624, - [SMALL_STATE(2431)] = 175646, - [SMALL_STATE(2432)] = 175668, - [SMALL_STATE(2433)] = 175690, - [SMALL_STATE(2434)] = 175712, - [SMALL_STATE(2435)] = 175734, - [SMALL_STATE(2436)] = 175756, - [SMALL_STATE(2437)] = 175778, - [SMALL_STATE(2438)] = 175800, - [SMALL_STATE(2439)] = 175822, - [SMALL_STATE(2440)] = 175844, - [SMALL_STATE(2441)] = 175866, - [SMALL_STATE(2442)] = 175888, - [SMALL_STATE(2443)] = 175910, - [SMALL_STATE(2444)] = 175932, - [SMALL_STATE(2445)] = 175954, - [SMALL_STATE(2446)] = 175976, - [SMALL_STATE(2447)] = 175998, - [SMALL_STATE(2448)] = 176020, - [SMALL_STATE(2449)] = 176042, - [SMALL_STATE(2450)] = 176064, - [SMALL_STATE(2451)] = 176086, - [SMALL_STATE(2452)] = 176108, - [SMALL_STATE(2453)] = 176130, - [SMALL_STATE(2454)] = 176152, - [SMALL_STATE(2455)] = 176174, - [SMALL_STATE(2456)] = 176196, - [SMALL_STATE(2457)] = 176218, - [SMALL_STATE(2458)] = 176240, - [SMALL_STATE(2459)] = 176262, - [SMALL_STATE(2460)] = 176284, - [SMALL_STATE(2461)] = 176306, - [SMALL_STATE(2462)] = 176328, - [SMALL_STATE(2463)] = 176350, - [SMALL_STATE(2464)] = 176372, - [SMALL_STATE(2465)] = 176394, - [SMALL_STATE(2466)] = 176416, - [SMALL_STATE(2467)] = 176438, - [SMALL_STATE(2468)] = 176460, - [SMALL_STATE(2469)] = 176482, - [SMALL_STATE(2470)] = 176504, - [SMALL_STATE(2471)] = 176526, - [SMALL_STATE(2472)] = 176548, - [SMALL_STATE(2473)] = 176570, - [SMALL_STATE(2474)] = 176592, - [SMALL_STATE(2475)] = 176614, - [SMALL_STATE(2476)] = 176636, - [SMALL_STATE(2477)] = 176658, - [SMALL_STATE(2478)] = 176680, - [SMALL_STATE(2479)] = 176702, - [SMALL_STATE(2480)] = 176724, - [SMALL_STATE(2481)] = 176746, - [SMALL_STATE(2482)] = 176768, - [SMALL_STATE(2483)] = 176790, - [SMALL_STATE(2484)] = 176812, - [SMALL_STATE(2485)] = 176834, - [SMALL_STATE(2486)] = 176856, - [SMALL_STATE(2487)] = 176878, - [SMALL_STATE(2488)] = 176900, - [SMALL_STATE(2489)] = 176922, - [SMALL_STATE(2490)] = 176944, - [SMALL_STATE(2491)] = 176966, - [SMALL_STATE(2492)] = 176988, - [SMALL_STATE(2493)] = 177010, - [SMALL_STATE(2494)] = 177032, - [SMALL_STATE(2495)] = 177054, - [SMALL_STATE(2496)] = 177076, - [SMALL_STATE(2497)] = 177098, - [SMALL_STATE(2498)] = 177120, - [SMALL_STATE(2499)] = 177142, - [SMALL_STATE(2500)] = 177164, - [SMALL_STATE(2501)] = 177186, - [SMALL_STATE(2502)] = 177208, - [SMALL_STATE(2503)] = 177230, - [SMALL_STATE(2504)] = 177252, - [SMALL_STATE(2505)] = 177274, - [SMALL_STATE(2506)] = 177296, - [SMALL_STATE(2507)] = 177318, - [SMALL_STATE(2508)] = 177340, - [SMALL_STATE(2509)] = 177362, - [SMALL_STATE(2510)] = 177384, - [SMALL_STATE(2511)] = 177406, - [SMALL_STATE(2512)] = 177428, - [SMALL_STATE(2513)] = 177450, - [SMALL_STATE(2514)] = 177472, - [SMALL_STATE(2515)] = 177494, - [SMALL_STATE(2516)] = 177516, - [SMALL_STATE(2517)] = 177538, - [SMALL_STATE(2518)] = 177560, - [SMALL_STATE(2519)] = 177582, - [SMALL_STATE(2520)] = 177604, - [SMALL_STATE(2521)] = 177626, - [SMALL_STATE(2522)] = 177648, - [SMALL_STATE(2523)] = 177670, - [SMALL_STATE(2524)] = 177692, - [SMALL_STATE(2525)] = 177714, - [SMALL_STATE(2526)] = 177736, - [SMALL_STATE(2527)] = 177758, - [SMALL_STATE(2528)] = 177780, - [SMALL_STATE(2529)] = 177802, - [SMALL_STATE(2530)] = 177824, - [SMALL_STATE(2531)] = 177846, - [SMALL_STATE(2532)] = 177868, - [SMALL_STATE(2533)] = 177890, - [SMALL_STATE(2534)] = 177912, - [SMALL_STATE(2535)] = 177934, - [SMALL_STATE(2536)] = 177956, - [SMALL_STATE(2537)] = 177978, - [SMALL_STATE(2538)] = 178000, - [SMALL_STATE(2539)] = 178022, - [SMALL_STATE(2540)] = 178044, - [SMALL_STATE(2541)] = 178066, - [SMALL_STATE(2542)] = 178088, - [SMALL_STATE(2543)] = 178110, - [SMALL_STATE(2544)] = 178132, - [SMALL_STATE(2545)] = 178154, - [SMALL_STATE(2546)] = 178176, - [SMALL_STATE(2547)] = 178198, - [SMALL_STATE(2548)] = 178220, - [SMALL_STATE(2549)] = 178242, - [SMALL_STATE(2550)] = 178264, - [SMALL_STATE(2551)] = 178286, - [SMALL_STATE(2552)] = 178308, - [SMALL_STATE(2553)] = 178330, - [SMALL_STATE(2554)] = 178352, - [SMALL_STATE(2555)] = 178374, - [SMALL_STATE(2556)] = 178396, - [SMALL_STATE(2557)] = 178418, - [SMALL_STATE(2558)] = 178440, - [SMALL_STATE(2559)] = 178462, - [SMALL_STATE(2560)] = 178484, - [SMALL_STATE(2561)] = 178506, - [SMALL_STATE(2562)] = 178528, - [SMALL_STATE(2563)] = 178550, - [SMALL_STATE(2564)] = 178572, - [SMALL_STATE(2565)] = 178594, - [SMALL_STATE(2566)] = 178616, - [SMALL_STATE(2567)] = 178638, - [SMALL_STATE(2568)] = 178660, - [SMALL_STATE(2569)] = 178682, - [SMALL_STATE(2570)] = 178704, - [SMALL_STATE(2571)] = 178726, - [SMALL_STATE(2572)] = 178748, - [SMALL_STATE(2573)] = 178770, - [SMALL_STATE(2574)] = 178792, - [SMALL_STATE(2575)] = 178814, - [SMALL_STATE(2576)] = 178836, - [SMALL_STATE(2577)] = 178858, - [SMALL_STATE(2578)] = 178880, - [SMALL_STATE(2579)] = 178902, - [SMALL_STATE(2580)] = 178924, - [SMALL_STATE(2581)] = 178946, - [SMALL_STATE(2582)] = 178968, - [SMALL_STATE(2583)] = 178990, - [SMALL_STATE(2584)] = 179012, - [SMALL_STATE(2585)] = 179034, - [SMALL_STATE(2586)] = 179056, - [SMALL_STATE(2587)] = 179078, - [SMALL_STATE(2588)] = 179100, - [SMALL_STATE(2589)] = 179122, - [SMALL_STATE(2590)] = 179144, - [SMALL_STATE(2591)] = 179166, - [SMALL_STATE(2592)] = 179188, - [SMALL_STATE(2593)] = 179210, - [SMALL_STATE(2594)] = 179232, - [SMALL_STATE(2595)] = 179254, - [SMALL_STATE(2596)] = 179276, - [SMALL_STATE(2597)] = 179298, - [SMALL_STATE(2598)] = 179320, - [SMALL_STATE(2599)] = 179342, - [SMALL_STATE(2600)] = 179364, - [SMALL_STATE(2601)] = 179386, - [SMALL_STATE(2602)] = 179408, - [SMALL_STATE(2603)] = 179430, - [SMALL_STATE(2604)] = 179452, - [SMALL_STATE(2605)] = 179474, - [SMALL_STATE(2606)] = 179496, - [SMALL_STATE(2607)] = 179518, - [SMALL_STATE(2608)] = 179540, - [SMALL_STATE(2609)] = 179562, - [SMALL_STATE(2610)] = 179584, - [SMALL_STATE(2611)] = 179606, - [SMALL_STATE(2612)] = 179628, - [SMALL_STATE(2613)] = 179650, - [SMALL_STATE(2614)] = 179672, - [SMALL_STATE(2615)] = 179694, - [SMALL_STATE(2616)] = 179716, - [SMALL_STATE(2617)] = 179738, - [SMALL_STATE(2618)] = 179760, - [SMALL_STATE(2619)] = 179782, - [SMALL_STATE(2620)] = 179804, - [SMALL_STATE(2621)] = 179826, - [SMALL_STATE(2622)] = 179848, - [SMALL_STATE(2623)] = 179870, - [SMALL_STATE(2624)] = 179892, - [SMALL_STATE(2625)] = 179914, - [SMALL_STATE(2626)] = 179936, - [SMALL_STATE(2627)] = 179958, - [SMALL_STATE(2628)] = 179980, - [SMALL_STATE(2629)] = 180002, - [SMALL_STATE(2630)] = 180024, - [SMALL_STATE(2631)] = 180046, - [SMALL_STATE(2632)] = 180068, - [SMALL_STATE(2633)] = 180090, - [SMALL_STATE(2634)] = 180112, - [SMALL_STATE(2635)] = 180134, - [SMALL_STATE(2636)] = 180156, - [SMALL_STATE(2637)] = 180178, - [SMALL_STATE(2638)] = 180200, - [SMALL_STATE(2639)] = 180222, - [SMALL_STATE(2640)] = 180244, - [SMALL_STATE(2641)] = 180266, - [SMALL_STATE(2642)] = 180288, - [SMALL_STATE(2643)] = 180310, - [SMALL_STATE(2644)] = 180332, - [SMALL_STATE(2645)] = 180354, - [SMALL_STATE(2646)] = 180376, - [SMALL_STATE(2647)] = 180398, - [SMALL_STATE(2648)] = 180420, - [SMALL_STATE(2649)] = 180442, - [SMALL_STATE(2650)] = 180464, - [SMALL_STATE(2651)] = 180486, - [SMALL_STATE(2652)] = 180508, - [SMALL_STATE(2653)] = 180530, - [SMALL_STATE(2654)] = 180552, - [SMALL_STATE(2655)] = 180574, - [SMALL_STATE(2656)] = 180596, - [SMALL_STATE(2657)] = 180618, - [SMALL_STATE(2658)] = 180640, - [SMALL_STATE(2659)] = 180656, - [SMALL_STATE(2660)] = 180678, - [SMALL_STATE(2661)] = 180700, - [SMALL_STATE(2662)] = 180722, - [SMALL_STATE(2663)] = 180744, - [SMALL_STATE(2664)] = 180766, - [SMALL_STATE(2665)] = 180788, - [SMALL_STATE(2666)] = 180810, - [SMALL_STATE(2667)] = 180832, - [SMALL_STATE(2668)] = 180854, - [SMALL_STATE(2669)] = 180876, - [SMALL_STATE(2670)] = 180898, - [SMALL_STATE(2671)] = 180920, - [SMALL_STATE(2672)] = 180942, - [SMALL_STATE(2673)] = 180964, - [SMALL_STATE(2674)] = 180986, - [SMALL_STATE(2675)] = 181008, - [SMALL_STATE(2676)] = 181030, - [SMALL_STATE(2677)] = 181052, - [SMALL_STATE(2678)] = 181074, - [SMALL_STATE(2679)] = 181096, - [SMALL_STATE(2680)] = 181118, - [SMALL_STATE(2681)] = 181140, - [SMALL_STATE(2682)] = 181162, - [SMALL_STATE(2683)] = 181184, - [SMALL_STATE(2684)] = 181206, - [SMALL_STATE(2685)] = 181228, - [SMALL_STATE(2686)] = 181250, - [SMALL_STATE(2687)] = 181272, - [SMALL_STATE(2688)] = 181294, - [SMALL_STATE(2689)] = 181316, - [SMALL_STATE(2690)] = 181338, - [SMALL_STATE(2691)] = 181360, - [SMALL_STATE(2692)] = 181382, - [SMALL_STATE(2693)] = 181404, - [SMALL_STATE(2694)] = 181426, - [SMALL_STATE(2695)] = 181448, - [SMALL_STATE(2696)] = 181470, - [SMALL_STATE(2697)] = 181492, - [SMALL_STATE(2698)] = 181514, - [SMALL_STATE(2699)] = 181536, - [SMALL_STATE(2700)] = 181558, - [SMALL_STATE(2701)] = 181580, - [SMALL_STATE(2702)] = 181602, - [SMALL_STATE(2703)] = 181624, - [SMALL_STATE(2704)] = 181646, - [SMALL_STATE(2705)] = 181668, - [SMALL_STATE(2706)] = 181690, - [SMALL_STATE(2707)] = 181712, - [SMALL_STATE(2708)] = 181734, - [SMALL_STATE(2709)] = 181756, - [SMALL_STATE(2710)] = 181778, - [SMALL_STATE(2711)] = 181800, - [SMALL_STATE(2712)] = 181822, - [SMALL_STATE(2713)] = 181844, - [SMALL_STATE(2714)] = 181866, - [SMALL_STATE(2715)] = 181888, - [SMALL_STATE(2716)] = 181910, - [SMALL_STATE(2717)] = 181932, - [SMALL_STATE(2718)] = 181954, - [SMALL_STATE(2719)] = 181976, - [SMALL_STATE(2720)] = 181998, - [SMALL_STATE(2721)] = 182020, - [SMALL_STATE(2722)] = 182042, - [SMALL_STATE(2723)] = 182064, - [SMALL_STATE(2724)] = 182086, - [SMALL_STATE(2725)] = 182108, - [SMALL_STATE(2726)] = 182130, - [SMALL_STATE(2727)] = 182152, - [SMALL_STATE(2728)] = 182174, - [SMALL_STATE(2729)] = 182196, - [SMALL_STATE(2730)] = 182218, - [SMALL_STATE(2731)] = 182240, - [SMALL_STATE(2732)] = 182262, - [SMALL_STATE(2733)] = 182284, - [SMALL_STATE(2734)] = 182306, - [SMALL_STATE(2735)] = 182328, - [SMALL_STATE(2736)] = 182350, - [SMALL_STATE(2737)] = 182372, - [SMALL_STATE(2738)] = 182394, - [SMALL_STATE(2739)] = 182416, - [SMALL_STATE(2740)] = 182438, - [SMALL_STATE(2741)] = 182460, - [SMALL_STATE(2742)] = 182482, - [SMALL_STATE(2743)] = 182504, - [SMALL_STATE(2744)] = 182526, - [SMALL_STATE(2745)] = 182548, - [SMALL_STATE(2746)] = 182570, - [SMALL_STATE(2747)] = 182592, - [SMALL_STATE(2748)] = 182614, - [SMALL_STATE(2749)] = 182636, - [SMALL_STATE(2750)] = 182658, - [SMALL_STATE(2751)] = 182680, - [SMALL_STATE(2752)] = 182702, - [SMALL_STATE(2753)] = 182721, - [SMALL_STATE(2754)] = 182740, - [SMALL_STATE(2755)] = 182759, - [SMALL_STATE(2756)] = 182778, - [SMALL_STATE(2757)] = 182797, - [SMALL_STATE(2758)] = 182816, - [SMALL_STATE(2759)] = 182835, - [SMALL_STATE(2760)] = 182854, - [SMALL_STATE(2761)] = 182873, - [SMALL_STATE(2762)] = 182892, - [SMALL_STATE(2763)] = 182911, - [SMALL_STATE(2764)] = 182930, - [SMALL_STATE(2765)] = 182949, - [SMALL_STATE(2766)] = 182968, - [SMALL_STATE(2767)] = 182987, - [SMALL_STATE(2768)] = 183006, - [SMALL_STATE(2769)] = 183025, - [SMALL_STATE(2770)] = 183044, - [SMALL_STATE(2771)] = 183063, - [SMALL_STATE(2772)] = 183082, - [SMALL_STATE(2773)] = 183101, - [SMALL_STATE(2774)] = 183120, - [SMALL_STATE(2775)] = 183139, - [SMALL_STATE(2776)] = 183158, - [SMALL_STATE(2777)] = 183177, - [SMALL_STATE(2778)] = 183196, - [SMALL_STATE(2779)] = 183215, - [SMALL_STATE(2780)] = 183234, - [SMALL_STATE(2781)] = 183253, - [SMALL_STATE(2782)] = 183272, - [SMALL_STATE(2783)] = 183291, - [SMALL_STATE(2784)] = 183310, - [SMALL_STATE(2785)] = 183329, - [SMALL_STATE(2786)] = 183348, - [SMALL_STATE(2787)] = 183367, - [SMALL_STATE(2788)] = 183386, - [SMALL_STATE(2789)] = 183405, - [SMALL_STATE(2790)] = 183424, - [SMALL_STATE(2791)] = 183443, - [SMALL_STATE(2792)] = 183462, - [SMALL_STATE(2793)] = 183481, - [SMALL_STATE(2794)] = 183500, - [SMALL_STATE(2795)] = 183519, - [SMALL_STATE(2796)] = 183538, - [SMALL_STATE(2797)] = 183557, - [SMALL_STATE(2798)] = 183576, - [SMALL_STATE(2799)] = 183595, - [SMALL_STATE(2800)] = 183614, - [SMALL_STATE(2801)] = 183633, - [SMALL_STATE(2802)] = 183652, - [SMALL_STATE(2803)] = 183671, - [SMALL_STATE(2804)] = 183690, - [SMALL_STATE(2805)] = 183709, - [SMALL_STATE(2806)] = 183728, - [SMALL_STATE(2807)] = 183747, - [SMALL_STATE(2808)] = 183766, - [SMALL_STATE(2809)] = 183785, - [SMALL_STATE(2810)] = 183804, - [SMALL_STATE(2811)] = 183823, - [SMALL_STATE(2812)] = 183842, - [SMALL_STATE(2813)] = 183861, - [SMALL_STATE(2814)] = 183880, - [SMALL_STATE(2815)] = 183899, - [SMALL_STATE(2816)] = 183918, - [SMALL_STATE(2817)] = 183937, - [SMALL_STATE(2818)] = 183956, - [SMALL_STATE(2819)] = 183975, - [SMALL_STATE(2820)] = 183994, - [SMALL_STATE(2821)] = 184013, - [SMALL_STATE(2822)] = 184032, - [SMALL_STATE(2823)] = 184051, - [SMALL_STATE(2824)] = 184070, - [SMALL_STATE(2825)] = 184089, - [SMALL_STATE(2826)] = 184108, - [SMALL_STATE(2827)] = 184127, - [SMALL_STATE(2828)] = 184146, - [SMALL_STATE(2829)] = 184165, - [SMALL_STATE(2830)] = 184184, - [SMALL_STATE(2831)] = 184203, - [SMALL_STATE(2832)] = 184222, - [SMALL_STATE(2833)] = 184241, - [SMALL_STATE(2834)] = 184260, - [SMALL_STATE(2835)] = 184279, - [SMALL_STATE(2836)] = 184298, - [SMALL_STATE(2837)] = 184317, - [SMALL_STATE(2838)] = 184336, - [SMALL_STATE(2839)] = 184355, - [SMALL_STATE(2840)] = 184374, - [SMALL_STATE(2841)] = 184393, - [SMALL_STATE(2842)] = 184412, - [SMALL_STATE(2843)] = 184431, - [SMALL_STATE(2844)] = 184450, - [SMALL_STATE(2845)] = 184469, - [SMALL_STATE(2846)] = 184488, - [SMALL_STATE(2847)] = 184507, - [SMALL_STATE(2848)] = 184526, - [SMALL_STATE(2849)] = 184545, - [SMALL_STATE(2850)] = 184564, - [SMALL_STATE(2851)] = 184583, - [SMALL_STATE(2852)] = 184602, - [SMALL_STATE(2853)] = 184621, - [SMALL_STATE(2854)] = 184640, - [SMALL_STATE(2855)] = 184659, - [SMALL_STATE(2856)] = 184678, - [SMALL_STATE(2857)] = 184697, - [SMALL_STATE(2858)] = 184716, - [SMALL_STATE(2859)] = 184735, - [SMALL_STATE(2860)] = 184754, - [SMALL_STATE(2861)] = 184773, - [SMALL_STATE(2862)] = 184792, - [SMALL_STATE(2863)] = 184811, - [SMALL_STATE(2864)] = 184830, - [SMALL_STATE(2865)] = 184849, - [SMALL_STATE(2866)] = 184868, - [SMALL_STATE(2867)] = 184887, - [SMALL_STATE(2868)] = 184906, - [SMALL_STATE(2869)] = 184925, - [SMALL_STATE(2870)] = 184944, - [SMALL_STATE(2871)] = 184963, - [SMALL_STATE(2872)] = 184982, - [SMALL_STATE(2873)] = 185001, - [SMALL_STATE(2874)] = 185020, - [SMALL_STATE(2875)] = 185039, - [SMALL_STATE(2876)] = 185058, - [SMALL_STATE(2877)] = 185077, - [SMALL_STATE(2878)] = 185096, - [SMALL_STATE(2879)] = 185115, - [SMALL_STATE(2880)] = 185134, - [SMALL_STATE(2881)] = 185153, - [SMALL_STATE(2882)] = 185172, - [SMALL_STATE(2883)] = 185191, - [SMALL_STATE(2884)] = 185210, - [SMALL_STATE(2885)] = 185229, - [SMALL_STATE(2886)] = 185248, - [SMALL_STATE(2887)] = 185267, - [SMALL_STATE(2888)] = 185286, - [SMALL_STATE(2889)] = 185305, - [SMALL_STATE(2890)] = 185324, - [SMALL_STATE(2891)] = 185343, - [SMALL_STATE(2892)] = 185362, - [SMALL_STATE(2893)] = 185381, - [SMALL_STATE(2894)] = 185400, - [SMALL_STATE(2895)] = 185419, - [SMALL_STATE(2896)] = 185438, - [SMALL_STATE(2897)] = 185457, - [SMALL_STATE(2898)] = 185476, - [SMALL_STATE(2899)] = 185495, - [SMALL_STATE(2900)] = 185514, - [SMALL_STATE(2901)] = 185533, - [SMALL_STATE(2902)] = 185552, - [SMALL_STATE(2903)] = 185571, - [SMALL_STATE(2904)] = 185590, - [SMALL_STATE(2905)] = 185609, - [SMALL_STATE(2906)] = 185628, - [SMALL_STATE(2907)] = 185647, - [SMALL_STATE(2908)] = 185666, - [SMALL_STATE(2909)] = 185685, - [SMALL_STATE(2910)] = 185704, - [SMALL_STATE(2911)] = 185723, - [SMALL_STATE(2912)] = 185742, - [SMALL_STATE(2913)] = 185761, - [SMALL_STATE(2914)] = 185780, - [SMALL_STATE(2915)] = 185799, - [SMALL_STATE(2916)] = 185818, - [SMALL_STATE(2917)] = 185837, - [SMALL_STATE(2918)] = 185856, - [SMALL_STATE(2919)] = 185875, - [SMALL_STATE(2920)] = 185894, - [SMALL_STATE(2921)] = 185913, - [SMALL_STATE(2922)] = 185932, - [SMALL_STATE(2923)] = 185951, - [SMALL_STATE(2924)] = 185970, - [SMALL_STATE(2925)] = 185989, - [SMALL_STATE(2926)] = 186008, - [SMALL_STATE(2927)] = 186027, - [SMALL_STATE(2928)] = 186046, - [SMALL_STATE(2929)] = 186065, - [SMALL_STATE(2930)] = 186084, - [SMALL_STATE(2931)] = 186103, - [SMALL_STATE(2932)] = 186122, - [SMALL_STATE(2933)] = 186141, - [SMALL_STATE(2934)] = 186160, - [SMALL_STATE(2935)] = 186179, - [SMALL_STATE(2936)] = 186198, - [SMALL_STATE(2937)] = 186217, - [SMALL_STATE(2938)] = 186236, - [SMALL_STATE(2939)] = 186255, - [SMALL_STATE(2940)] = 186274, - [SMALL_STATE(2941)] = 186293, - [SMALL_STATE(2942)] = 186312, - [SMALL_STATE(2943)] = 186331, - [SMALL_STATE(2944)] = 186350, - [SMALL_STATE(2945)] = 186369, - [SMALL_STATE(2946)] = 186388, - [SMALL_STATE(2947)] = 186407, - [SMALL_STATE(2948)] = 186426, - [SMALL_STATE(2949)] = 186445, - [SMALL_STATE(2950)] = 186464, - [SMALL_STATE(2951)] = 186483, - [SMALL_STATE(2952)] = 186502, - [SMALL_STATE(2953)] = 186521, - [SMALL_STATE(2954)] = 186540, - [SMALL_STATE(2955)] = 186559, - [SMALL_STATE(2956)] = 186578, - [SMALL_STATE(2957)] = 186597, - [SMALL_STATE(2958)] = 186616, - [SMALL_STATE(2959)] = 186635, - [SMALL_STATE(2960)] = 186654, - [SMALL_STATE(2961)] = 186673, - [SMALL_STATE(2962)] = 186692, - [SMALL_STATE(2963)] = 186711, - [SMALL_STATE(2964)] = 186730, - [SMALL_STATE(2965)] = 186749, - [SMALL_STATE(2966)] = 186768, - [SMALL_STATE(2967)] = 186787, - [SMALL_STATE(2968)] = 186806, - [SMALL_STATE(2969)] = 186825, - [SMALL_STATE(2970)] = 186844, - [SMALL_STATE(2971)] = 186863, - [SMALL_STATE(2972)] = 186882, - [SMALL_STATE(2973)] = 186901, - [SMALL_STATE(2974)] = 186920, - [SMALL_STATE(2975)] = 186939, - [SMALL_STATE(2976)] = 186958, - [SMALL_STATE(2977)] = 186977, - [SMALL_STATE(2978)] = 186996, - [SMALL_STATE(2979)] = 187015, - [SMALL_STATE(2980)] = 187034, - [SMALL_STATE(2981)] = 187053, - [SMALL_STATE(2982)] = 187072, - [SMALL_STATE(2983)] = 187091, - [SMALL_STATE(2984)] = 187110, - [SMALL_STATE(2985)] = 187129, - [SMALL_STATE(2986)] = 187148, - [SMALL_STATE(2987)] = 187167, - [SMALL_STATE(2988)] = 187186, - [SMALL_STATE(2989)] = 187205, - [SMALL_STATE(2990)] = 187224, - [SMALL_STATE(2991)] = 187243, - [SMALL_STATE(2992)] = 187262, - [SMALL_STATE(2993)] = 187281, - [SMALL_STATE(2994)] = 187300, - [SMALL_STATE(2995)] = 187319, - [SMALL_STATE(2996)] = 187338, - [SMALL_STATE(2997)] = 187357, - [SMALL_STATE(2998)] = 187376, - [SMALL_STATE(2999)] = 187395, - [SMALL_STATE(3000)] = 187414, - [SMALL_STATE(3001)] = 187433, - [SMALL_STATE(3002)] = 187452, - [SMALL_STATE(3003)] = 187471, - [SMALL_STATE(3004)] = 187490, - [SMALL_STATE(3005)] = 187509, - [SMALL_STATE(3006)] = 187528, - [SMALL_STATE(3007)] = 187547, - [SMALL_STATE(3008)] = 187566, - [SMALL_STATE(3009)] = 187585, - [SMALL_STATE(3010)] = 187604, - [SMALL_STATE(3011)] = 187623, - [SMALL_STATE(3012)] = 187642, - [SMALL_STATE(3013)] = 187661, - [SMALL_STATE(3014)] = 187680, - [SMALL_STATE(3015)] = 187699, - [SMALL_STATE(3016)] = 187718, - [SMALL_STATE(3017)] = 187737, - [SMALL_STATE(3018)] = 187756, - [SMALL_STATE(3019)] = 187775, - [SMALL_STATE(3020)] = 187794, - [SMALL_STATE(3021)] = 187813, - [SMALL_STATE(3022)] = 187832, - [SMALL_STATE(3023)] = 187851, - [SMALL_STATE(3024)] = 187870, - [SMALL_STATE(3025)] = 187889, - [SMALL_STATE(3026)] = 187908, - [SMALL_STATE(3027)] = 187927, - [SMALL_STATE(3028)] = 187946, - [SMALL_STATE(3029)] = 187965, - [SMALL_STATE(3030)] = 187984, - [SMALL_STATE(3031)] = 188003, - [SMALL_STATE(3032)] = 188022, - [SMALL_STATE(3033)] = 188041, - [SMALL_STATE(3034)] = 188060, - [SMALL_STATE(3035)] = 188079, - [SMALL_STATE(3036)] = 188098, - [SMALL_STATE(3037)] = 188117, - [SMALL_STATE(3038)] = 188136, - [SMALL_STATE(3039)] = 188155, - [SMALL_STATE(3040)] = 188174, - [SMALL_STATE(3041)] = 188193, - [SMALL_STATE(3042)] = 188212, - [SMALL_STATE(3043)] = 188231, - [SMALL_STATE(3044)] = 188250, - [SMALL_STATE(3045)] = 188269, - [SMALL_STATE(3046)] = 188288, - [SMALL_STATE(3047)] = 188307, - [SMALL_STATE(3048)] = 188326, - [SMALL_STATE(3049)] = 188345, - [SMALL_STATE(3050)] = 188364, - [SMALL_STATE(3051)] = 188383, - [SMALL_STATE(3052)] = 188402, - [SMALL_STATE(3053)] = 188421, - [SMALL_STATE(3054)] = 188440, - [SMALL_STATE(3055)] = 188459, - [SMALL_STATE(3056)] = 188478, - [SMALL_STATE(3057)] = 188497, - [SMALL_STATE(3058)] = 188516, - [SMALL_STATE(3059)] = 188535, - [SMALL_STATE(3060)] = 188554, - [SMALL_STATE(3061)] = 188573, - [SMALL_STATE(3062)] = 188592, - [SMALL_STATE(3063)] = 188611, - [SMALL_STATE(3064)] = 188630, - [SMALL_STATE(3065)] = 188649, - [SMALL_STATE(3066)] = 188668, - [SMALL_STATE(3067)] = 188687, - [SMALL_STATE(3068)] = 188706, - [SMALL_STATE(3069)] = 188725, - [SMALL_STATE(3070)] = 188744, - [SMALL_STATE(3071)] = 188763, - [SMALL_STATE(3072)] = 188782, - [SMALL_STATE(3073)] = 188801, - [SMALL_STATE(3074)] = 188820, - [SMALL_STATE(3075)] = 188839, - [SMALL_STATE(3076)] = 188858, - [SMALL_STATE(3077)] = 188877, - [SMALL_STATE(3078)] = 188896, - [SMALL_STATE(3079)] = 188915, - [SMALL_STATE(3080)] = 188934, - [SMALL_STATE(3081)] = 188953, - [SMALL_STATE(3082)] = 188972, - [SMALL_STATE(3083)] = 188991, - [SMALL_STATE(3084)] = 189010, - [SMALL_STATE(3085)] = 189029, - [SMALL_STATE(3086)] = 189048, - [SMALL_STATE(3087)] = 189067, - [SMALL_STATE(3088)] = 189086, - [SMALL_STATE(3089)] = 189105, - [SMALL_STATE(3090)] = 189124, - [SMALL_STATE(3091)] = 189143, - [SMALL_STATE(3092)] = 189162, - [SMALL_STATE(3093)] = 189181, - [SMALL_STATE(3094)] = 189200, - [SMALL_STATE(3095)] = 189219, - [SMALL_STATE(3096)] = 189238, - [SMALL_STATE(3097)] = 189257, - [SMALL_STATE(3098)] = 189276, - [SMALL_STATE(3099)] = 189295, - [SMALL_STATE(3100)] = 189314, - [SMALL_STATE(3101)] = 189333, - [SMALL_STATE(3102)] = 189352, - [SMALL_STATE(3103)] = 189371, - [SMALL_STATE(3104)] = 189390, - [SMALL_STATE(3105)] = 189409, - [SMALL_STATE(3106)] = 189428, - [SMALL_STATE(3107)] = 189447, - [SMALL_STATE(3108)] = 189466, - [SMALL_STATE(3109)] = 189485, - [SMALL_STATE(3110)] = 189504, - [SMALL_STATE(3111)] = 189523, - [SMALL_STATE(3112)] = 189542, - [SMALL_STATE(3113)] = 189561, - [SMALL_STATE(3114)] = 189580, - [SMALL_STATE(3115)] = 189599, - [SMALL_STATE(3116)] = 189618, - [SMALL_STATE(3117)] = 189637, - [SMALL_STATE(3118)] = 189656, - [SMALL_STATE(3119)] = 189675, - [SMALL_STATE(3120)] = 189694, - [SMALL_STATE(3121)] = 189713, - [SMALL_STATE(3122)] = 189732, - [SMALL_STATE(3123)] = 189751, - [SMALL_STATE(3124)] = 189770, - [SMALL_STATE(3125)] = 189789, - [SMALL_STATE(3126)] = 189808, - [SMALL_STATE(3127)] = 189827, - [SMALL_STATE(3128)] = 189846, - [SMALL_STATE(3129)] = 189865, - [SMALL_STATE(3130)] = 189884, - [SMALL_STATE(3131)] = 189903, - [SMALL_STATE(3132)] = 189922, - [SMALL_STATE(3133)] = 189941, - [SMALL_STATE(3134)] = 189960, - [SMALL_STATE(3135)] = 189979, - [SMALL_STATE(3136)] = 189998, - [SMALL_STATE(3137)] = 190017, - [SMALL_STATE(3138)] = 190036, - [SMALL_STATE(3139)] = 190055, - [SMALL_STATE(3140)] = 190074, - [SMALL_STATE(3141)] = 190093, - [SMALL_STATE(3142)] = 190112, - [SMALL_STATE(3143)] = 190131, - [SMALL_STATE(3144)] = 190150, - [SMALL_STATE(3145)] = 190169, - [SMALL_STATE(3146)] = 190188, - [SMALL_STATE(3147)] = 190207, - [SMALL_STATE(3148)] = 190226, - [SMALL_STATE(3149)] = 190245, - [SMALL_STATE(3150)] = 190264, - [SMALL_STATE(3151)] = 190283, - [SMALL_STATE(3152)] = 190302, - [SMALL_STATE(3153)] = 190321, - [SMALL_STATE(3154)] = 190340, - [SMALL_STATE(3155)] = 190359, - [SMALL_STATE(3156)] = 190378, - [SMALL_STATE(3157)] = 190397, - [SMALL_STATE(3158)] = 190416, - [SMALL_STATE(3159)] = 190435, - [SMALL_STATE(3160)] = 190454, - [SMALL_STATE(3161)] = 190473, - [SMALL_STATE(3162)] = 190492, - [SMALL_STATE(3163)] = 190511, - [SMALL_STATE(3164)] = 190530, - [SMALL_STATE(3165)] = 190549, - [SMALL_STATE(3166)] = 190568, - [SMALL_STATE(3167)] = 190587, - [SMALL_STATE(3168)] = 190606, - [SMALL_STATE(3169)] = 190625, - [SMALL_STATE(3170)] = 190644, - [SMALL_STATE(3171)] = 190663, - [SMALL_STATE(3172)] = 190682, - [SMALL_STATE(3173)] = 190701, - [SMALL_STATE(3174)] = 190720, - [SMALL_STATE(3175)] = 190739, - [SMALL_STATE(3176)] = 190758, - [SMALL_STATE(3177)] = 190777, - [SMALL_STATE(3178)] = 190796, - [SMALL_STATE(3179)] = 190815, - [SMALL_STATE(3180)] = 190834, - [SMALL_STATE(3181)] = 190853, - [SMALL_STATE(3182)] = 190872, - [SMALL_STATE(3183)] = 190891, - [SMALL_STATE(3184)] = 190910, - [SMALL_STATE(3185)] = 190929, - [SMALL_STATE(3186)] = 190948, - [SMALL_STATE(3187)] = 190967, - [SMALL_STATE(3188)] = 190986, - [SMALL_STATE(3189)] = 191005, - [SMALL_STATE(3190)] = 191024, - [SMALL_STATE(3191)] = 191043, - [SMALL_STATE(3192)] = 191062, - [SMALL_STATE(3193)] = 191081, - [SMALL_STATE(3194)] = 191100, - [SMALL_STATE(3195)] = 191119, - [SMALL_STATE(3196)] = 191138, - [SMALL_STATE(3197)] = 191157, - [SMALL_STATE(3198)] = 191176, - [SMALL_STATE(3199)] = 191195, - [SMALL_STATE(3200)] = 191214, - [SMALL_STATE(3201)] = 191233, - [SMALL_STATE(3202)] = 191252, - [SMALL_STATE(3203)] = 191271, - [SMALL_STATE(3204)] = 191290, - [SMALL_STATE(3205)] = 191309, - [SMALL_STATE(3206)] = 191328, - [SMALL_STATE(3207)] = 191347, - [SMALL_STATE(3208)] = 191366, - [SMALL_STATE(3209)] = 191385, - [SMALL_STATE(3210)] = 191404, - [SMALL_STATE(3211)] = 191423, - [SMALL_STATE(3212)] = 191442, - [SMALL_STATE(3213)] = 191460, - [SMALL_STATE(3214)] = 191478, - [SMALL_STATE(3215)] = 191496, - [SMALL_STATE(3216)] = 191514, - [SMALL_STATE(3217)] = 191532, - [SMALL_STATE(3218)] = 191550, - [SMALL_STATE(3219)] = 191568, - [SMALL_STATE(3220)] = 191586, - [SMALL_STATE(3221)] = 191604, - [SMALL_STATE(3222)] = 191622, - [SMALL_STATE(3223)] = 191640, - [SMALL_STATE(3224)] = 191658, - [SMALL_STATE(3225)] = 191676, - [SMALL_STATE(3226)] = 191694, - [SMALL_STATE(3227)] = 191712, - [SMALL_STATE(3228)] = 191730, - [SMALL_STATE(3229)] = 191748, - [SMALL_STATE(3230)] = 191766, - [SMALL_STATE(3231)] = 191784, - [SMALL_STATE(3232)] = 191802, - [SMALL_STATE(3233)] = 191820, - [SMALL_STATE(3234)] = 191838, - [SMALL_STATE(3235)] = 191856, - [SMALL_STATE(3236)] = 191874, - [SMALL_STATE(3237)] = 191892, - [SMALL_STATE(3238)] = 191910, - [SMALL_STATE(3239)] = 191928, - [SMALL_STATE(3240)] = 191946, - [SMALL_STATE(3241)] = 191964, - [SMALL_STATE(3242)] = 191982, - [SMALL_STATE(3243)] = 192000, - [SMALL_STATE(3244)] = 192018, - [SMALL_STATE(3245)] = 192036, - [SMALL_STATE(3246)] = 192054, - [SMALL_STATE(3247)] = 192072, - [SMALL_STATE(3248)] = 192090, - [SMALL_STATE(3249)] = 192108, - [SMALL_STATE(3250)] = 192126, - [SMALL_STATE(3251)] = 192144, - [SMALL_STATE(3252)] = 192162, - [SMALL_STATE(3253)] = 192180, - [SMALL_STATE(3254)] = 192198, - [SMALL_STATE(3255)] = 192216, - [SMALL_STATE(3256)] = 192234, - [SMALL_STATE(3257)] = 192252, - [SMALL_STATE(3258)] = 192270, - [SMALL_STATE(3259)] = 192288, - [SMALL_STATE(3260)] = 192306, - [SMALL_STATE(3261)] = 192324, - [SMALL_STATE(3262)] = 192342, - [SMALL_STATE(3263)] = 192360, - [SMALL_STATE(3264)] = 192378, - [SMALL_STATE(3265)] = 192396, - [SMALL_STATE(3266)] = 192414, - [SMALL_STATE(3267)] = 192432, - [SMALL_STATE(3268)] = 192450, - [SMALL_STATE(3269)] = 192468, - [SMALL_STATE(3270)] = 192486, - [SMALL_STATE(3271)] = 192504, - [SMALL_STATE(3272)] = 192522, - [SMALL_STATE(3273)] = 192540, - [SMALL_STATE(3274)] = 192558, - [SMALL_STATE(3275)] = 192576, - [SMALL_STATE(3276)] = 192594, - [SMALL_STATE(3277)] = 192612, - [SMALL_STATE(3278)] = 192630, - [SMALL_STATE(3279)] = 192648, - [SMALL_STATE(3280)] = 192666, - [SMALL_STATE(3281)] = 192684, - [SMALL_STATE(3282)] = 192702, - [SMALL_STATE(3283)] = 192720, - [SMALL_STATE(3284)] = 192738, - [SMALL_STATE(3285)] = 192756, - [SMALL_STATE(3286)] = 192774, - [SMALL_STATE(3287)] = 192792, - [SMALL_STATE(3288)] = 192810, - [SMALL_STATE(3289)] = 192828, - [SMALL_STATE(3290)] = 192846, - [SMALL_STATE(3291)] = 192864, - [SMALL_STATE(3292)] = 192882, - [SMALL_STATE(3293)] = 192900, - [SMALL_STATE(3294)] = 192918, - [SMALL_STATE(3295)] = 192936, - [SMALL_STATE(3296)] = 192954, - [SMALL_STATE(3297)] = 192972, - [SMALL_STATE(3298)] = 192990, - [SMALL_STATE(3299)] = 193008, - [SMALL_STATE(3300)] = 193026, - [SMALL_STATE(3301)] = 193044, - [SMALL_STATE(3302)] = 193062, - [SMALL_STATE(3303)] = 193080, - [SMALL_STATE(3304)] = 193098, - [SMALL_STATE(3305)] = 193116, - [SMALL_STATE(3306)] = 193136, - [SMALL_STATE(3307)] = 193154, - [SMALL_STATE(3308)] = 193172, - [SMALL_STATE(3309)] = 193190, - [SMALL_STATE(3310)] = 193208, - [SMALL_STATE(3311)] = 193226, - [SMALL_STATE(3312)] = 193244, - [SMALL_STATE(3313)] = 193262, - [SMALL_STATE(3314)] = 193280, - [SMALL_STATE(3315)] = 193298, - [SMALL_STATE(3316)] = 193316, - [SMALL_STATE(3317)] = 193334, - [SMALL_STATE(3318)] = 193352, - [SMALL_STATE(3319)] = 193370, - [SMALL_STATE(3320)] = 193388, - [SMALL_STATE(3321)] = 193406, - [SMALL_STATE(3322)] = 193424, - [SMALL_STATE(3323)] = 193442, - [SMALL_STATE(3324)] = 193460, - [SMALL_STATE(3325)] = 193478, - [SMALL_STATE(3326)] = 193496, - [SMALL_STATE(3327)] = 193509, - [SMALL_STATE(3328)] = 193522, - [SMALL_STATE(3329)] = 193535, - [SMALL_STATE(3330)] = 193554, - [SMALL_STATE(3331)] = 193567, - [SMALL_STATE(3332)] = 193580, - [SMALL_STATE(3333)] = 193597, - [SMALL_STATE(3334)] = 193610, - [SMALL_STATE(3335)] = 193623, - [SMALL_STATE(3336)] = 193636, - [SMALL_STATE(3337)] = 193653, - [SMALL_STATE(3338)] = 193666, - [SMALL_STATE(3339)] = 193679, - [SMALL_STATE(3340)] = 193689, - [SMALL_STATE(3341)] = 193701, - [SMALL_STATE(3342)] = 193711, - [SMALL_STATE(3343)] = 193721, - [SMALL_STATE(3344)] = 193731, - [SMALL_STATE(3345)] = 193741, - [SMALL_STATE(3346)] = 193751, - [SMALL_STATE(3347)] = 193761, - [SMALL_STATE(3348)] = 193771, - [SMALL_STATE(3349)] = 193781, - [SMALL_STATE(3350)] = 193794, - [SMALL_STATE(3351)] = 193807, - [SMALL_STATE(3352)] = 193820, - [SMALL_STATE(3353)] = 193833, - [SMALL_STATE(3354)] = 193846, - [SMALL_STATE(3355)] = 193859, - [SMALL_STATE(3356)] = 193872, - [SMALL_STATE(3357)] = 193885, - [SMALL_STATE(3358)] = 193898, - [SMALL_STATE(3359)] = 193911, - [SMALL_STATE(3360)] = 193924, - [SMALL_STATE(3361)] = 193934, - [SMALL_STATE(3362)] = 193944, - [SMALL_STATE(3363)] = 193954, - [SMALL_STATE(3364)] = 193964, - [SMALL_STATE(3365)] = 193974, - [SMALL_STATE(3366)] = 193984, - [SMALL_STATE(3367)] = 193994, - [SMALL_STATE(3368)] = 194004, - [SMALL_STATE(3369)] = 194014, - [SMALL_STATE(3370)] = 194024, - [SMALL_STATE(3371)] = 194034, - [SMALL_STATE(3372)] = 194044, - [SMALL_STATE(3373)] = 194054, - [SMALL_STATE(3374)] = 194064, - [SMALL_STATE(3375)] = 194074, - [SMALL_STATE(3376)] = 194084, - [SMALL_STATE(3377)] = 194094, - [SMALL_STATE(3378)] = 194104, - [SMALL_STATE(3379)] = 194114, - [SMALL_STATE(3380)] = 194124, - [SMALL_STATE(3381)] = 194134, - [SMALL_STATE(3382)] = 194144, - [SMALL_STATE(3383)] = 194154, - [SMALL_STATE(3384)] = 194164, - [SMALL_STATE(3385)] = 194174, - [SMALL_STATE(3386)] = 194184, - [SMALL_STATE(3387)] = 194194, - [SMALL_STATE(3388)] = 194204, - [SMALL_STATE(3389)] = 194214, - [SMALL_STATE(3390)] = 194224, - [SMALL_STATE(3391)] = 194234, - [SMALL_STATE(3392)] = 194244, - [SMALL_STATE(3393)] = 194254, - [SMALL_STATE(3394)] = 194264, - [SMALL_STATE(3395)] = 194274, - [SMALL_STATE(3396)] = 194284, - [SMALL_STATE(3397)] = 194294, - [SMALL_STATE(3398)] = 194304, - [SMALL_STATE(3399)] = 194314, - [SMALL_STATE(3400)] = 194324, - [SMALL_STATE(3401)] = 194334, - [SMALL_STATE(3402)] = 194344, - [SMALL_STATE(3403)] = 194354, - [SMALL_STATE(3404)] = 194364, - [SMALL_STATE(3405)] = 194374, - [SMALL_STATE(3406)] = 194384, - [SMALL_STATE(3407)] = 194394, - [SMALL_STATE(3408)] = 194404, - [SMALL_STATE(3409)] = 194414, - [SMALL_STATE(3410)] = 194424, - [SMALL_STATE(3411)] = 194434, - [SMALL_STATE(3412)] = 194444, - [SMALL_STATE(3413)] = 194454, - [SMALL_STATE(3414)] = 194464, - [SMALL_STATE(3415)] = 194474, - [SMALL_STATE(3416)] = 194484, - [SMALL_STATE(3417)] = 194494, - [SMALL_STATE(3418)] = 194504, - [SMALL_STATE(3419)] = 194514, - [SMALL_STATE(3420)] = 194524, - [SMALL_STATE(3421)] = 194534, - [SMALL_STATE(3422)] = 194544, - [SMALL_STATE(3423)] = 194554, - [SMALL_STATE(3424)] = 194564, - [SMALL_STATE(3425)] = 194571, - [SMALL_STATE(3426)] = 194578, - [SMALL_STATE(3427)] = 194585, - [SMALL_STATE(3428)] = 194592, - [SMALL_STATE(3429)] = 194599, - [SMALL_STATE(3430)] = 194606, - [SMALL_STATE(3431)] = 194613, - [SMALL_STATE(3432)] = 194620, - [SMALL_STATE(3433)] = 194627, - [SMALL_STATE(3434)] = 194634, - [SMALL_STATE(3435)] = 194641, - [SMALL_STATE(3436)] = 194648, - [SMALL_STATE(3437)] = 194655, - [SMALL_STATE(3438)] = 194662, - [SMALL_STATE(3439)] = 194669, - [SMALL_STATE(3440)] = 194676, - [SMALL_STATE(3441)] = 194683, - [SMALL_STATE(3442)] = 194690, - [SMALL_STATE(3443)] = 194697, - [SMALL_STATE(3444)] = 194704, - [SMALL_STATE(3445)] = 194711, - [SMALL_STATE(3446)] = 194718, - [SMALL_STATE(3447)] = 194725, - [SMALL_STATE(3448)] = 194732, - [SMALL_STATE(3449)] = 194739, - [SMALL_STATE(3450)] = 194746, - [SMALL_STATE(3451)] = 194753, - [SMALL_STATE(3452)] = 194760, - [SMALL_STATE(3453)] = 194767, - [SMALL_STATE(3454)] = 194774, - [SMALL_STATE(3455)] = 194781, - [SMALL_STATE(3456)] = 194788, - [SMALL_STATE(3457)] = 194795, - [SMALL_STATE(3458)] = 194802, - [SMALL_STATE(3459)] = 194809, - [SMALL_STATE(3460)] = 194816, - [SMALL_STATE(3461)] = 194823, - [SMALL_STATE(3462)] = 194830, - [SMALL_STATE(3463)] = 194837, - [SMALL_STATE(3464)] = 194844, - [SMALL_STATE(3465)] = 194851, - [SMALL_STATE(3466)] = 194858, - [SMALL_STATE(3467)] = 194865, - [SMALL_STATE(3468)] = 194872, - [SMALL_STATE(3469)] = 194879, - [SMALL_STATE(3470)] = 194886, - [SMALL_STATE(3471)] = 194893, - [SMALL_STATE(3472)] = 194900, - [SMALL_STATE(3473)] = 194907, - [SMALL_STATE(3474)] = 194914, - [SMALL_STATE(3475)] = 194921, - [SMALL_STATE(3476)] = 194928, - [SMALL_STATE(3477)] = 194935, - [SMALL_STATE(3478)] = 194942, - [SMALL_STATE(3479)] = 194949, - [SMALL_STATE(3480)] = 194956, - [SMALL_STATE(3481)] = 194963, - [SMALL_STATE(3482)] = 194970, - [SMALL_STATE(3483)] = 194977, - [SMALL_STATE(3484)] = 194984, - [SMALL_STATE(3485)] = 194991, - [SMALL_STATE(3486)] = 194998, - [SMALL_STATE(3487)] = 195005, - [SMALL_STATE(3488)] = 195012, - [SMALL_STATE(3489)] = 195019, - [SMALL_STATE(3490)] = 195026, - [SMALL_STATE(3491)] = 195033, - [SMALL_STATE(3492)] = 195040, - [SMALL_STATE(3493)] = 195047, - [SMALL_STATE(3494)] = 195054, - [SMALL_STATE(3495)] = 195061, - [SMALL_STATE(3496)] = 195068, - [SMALL_STATE(3497)] = 195075, + [SMALL_STATE(166)] = 0, + [SMALL_STATE(167)] = 135, + [SMALL_STATE(168)] = 270, + [SMALL_STATE(169)] = 405, + [SMALL_STATE(170)] = 540, + [SMALL_STATE(171)] = 675, + [SMALL_STATE(172)] = 810, + [SMALL_STATE(173)] = 945, + [SMALL_STATE(174)] = 1080, + [SMALL_STATE(175)] = 1215, + [SMALL_STATE(176)] = 1350, + [SMALL_STATE(177)] = 1485, + [SMALL_STATE(178)] = 1620, + [SMALL_STATE(179)] = 1755, + [SMALL_STATE(180)] = 1890, + [SMALL_STATE(181)] = 2025, + [SMALL_STATE(182)] = 2160, + [SMALL_STATE(183)] = 2295, + [SMALL_STATE(184)] = 2430, + [SMALL_STATE(185)] = 2565, + [SMALL_STATE(186)] = 2700, + [SMALL_STATE(187)] = 2835, + [SMALL_STATE(188)] = 2970, + [SMALL_STATE(189)] = 3105, + [SMALL_STATE(190)] = 3240, + [SMALL_STATE(191)] = 3375, + [SMALL_STATE(192)] = 3510, + [SMALL_STATE(193)] = 3645, + [SMALL_STATE(194)] = 3780, + [SMALL_STATE(195)] = 3915, + [SMALL_STATE(196)] = 4050, + [SMALL_STATE(197)] = 4185, + [SMALL_STATE(198)] = 4320, + [SMALL_STATE(199)] = 4455, + [SMALL_STATE(200)] = 4590, + [SMALL_STATE(201)] = 4725, + [SMALL_STATE(202)] = 4860, + [SMALL_STATE(203)] = 4995, + [SMALL_STATE(204)] = 5130, + [SMALL_STATE(205)] = 5265, + [SMALL_STATE(206)] = 5400, + [SMALL_STATE(207)] = 5535, + [SMALL_STATE(208)] = 5670, + [SMALL_STATE(209)] = 5805, + [SMALL_STATE(210)] = 5940, + [SMALL_STATE(211)] = 6075, + [SMALL_STATE(212)] = 6210, + [SMALL_STATE(213)] = 6345, + [SMALL_STATE(214)] = 6480, + [SMALL_STATE(215)] = 6615, + [SMALL_STATE(216)] = 6750, + [SMALL_STATE(217)] = 6885, + [SMALL_STATE(218)] = 7020, + [SMALL_STATE(219)] = 7155, + [SMALL_STATE(220)] = 7290, + [SMALL_STATE(221)] = 7425, + [SMALL_STATE(222)] = 7560, + [SMALL_STATE(223)] = 7695, + [SMALL_STATE(224)] = 7830, + [SMALL_STATE(225)] = 7965, + [SMALL_STATE(226)] = 8100, + [SMALL_STATE(227)] = 8235, + [SMALL_STATE(228)] = 8370, + [SMALL_STATE(229)] = 8505, + [SMALL_STATE(230)] = 8640, + [SMALL_STATE(231)] = 8775, + [SMALL_STATE(232)] = 8910, + [SMALL_STATE(233)] = 9045, + [SMALL_STATE(234)] = 9180, + [SMALL_STATE(235)] = 9315, + [SMALL_STATE(236)] = 9450, + [SMALL_STATE(237)] = 9585, + [SMALL_STATE(238)] = 9720, + [SMALL_STATE(239)] = 9855, + [SMALL_STATE(240)] = 9990, + [SMALL_STATE(241)] = 10125, + [SMALL_STATE(242)] = 10260, + [SMALL_STATE(243)] = 10395, + [SMALL_STATE(244)] = 10530, + [SMALL_STATE(245)] = 10665, + [SMALL_STATE(246)] = 10800, + [SMALL_STATE(247)] = 10935, + [SMALL_STATE(248)] = 11070, + [SMALL_STATE(249)] = 11205, + [SMALL_STATE(250)] = 11340, + [SMALL_STATE(251)] = 11475, + [SMALL_STATE(252)] = 11610, + [SMALL_STATE(253)] = 11745, + [SMALL_STATE(254)] = 11880, + [SMALL_STATE(255)] = 12015, + [SMALL_STATE(256)] = 12150, + [SMALL_STATE(257)] = 12285, + [SMALL_STATE(258)] = 12420, + [SMALL_STATE(259)] = 12555, + [SMALL_STATE(260)] = 12690, + [SMALL_STATE(261)] = 12825, + [SMALL_STATE(262)] = 12960, + [SMALL_STATE(263)] = 13095, + [SMALL_STATE(264)] = 13230, + [SMALL_STATE(265)] = 13365, + [SMALL_STATE(266)] = 13500, + [SMALL_STATE(267)] = 13635, + [SMALL_STATE(268)] = 13770, + [SMALL_STATE(269)] = 13905, + [SMALL_STATE(270)] = 14040, + [SMALL_STATE(271)] = 14175, + [SMALL_STATE(272)] = 14310, + [SMALL_STATE(273)] = 14445, + [SMALL_STATE(274)] = 14580, + [SMALL_STATE(275)] = 14715, + [SMALL_STATE(276)] = 14850, + [SMALL_STATE(277)] = 14985, + [SMALL_STATE(278)] = 15120, + [SMALL_STATE(279)] = 15255, + [SMALL_STATE(280)] = 15390, + [SMALL_STATE(281)] = 15525, + [SMALL_STATE(282)] = 15660, + [SMALL_STATE(283)] = 15795, + [SMALL_STATE(284)] = 15930, + [SMALL_STATE(285)] = 16065, + [SMALL_STATE(286)] = 16200, + [SMALL_STATE(287)] = 16335, + [SMALL_STATE(288)] = 16470, + [SMALL_STATE(289)] = 16605, + [SMALL_STATE(290)] = 16740, + [SMALL_STATE(291)] = 16875, + [SMALL_STATE(292)] = 17010, + [SMALL_STATE(293)] = 17145, + [SMALL_STATE(294)] = 17280, + [SMALL_STATE(295)] = 17415, + [SMALL_STATE(296)] = 17550, + [SMALL_STATE(297)] = 17685, + [SMALL_STATE(298)] = 17820, + [SMALL_STATE(299)] = 17955, + [SMALL_STATE(300)] = 18090, + [SMALL_STATE(301)] = 18225, + [SMALL_STATE(302)] = 18360, + [SMALL_STATE(303)] = 18495, + [SMALL_STATE(304)] = 18630, + [SMALL_STATE(305)] = 18765, + [SMALL_STATE(306)] = 18900, + [SMALL_STATE(307)] = 19035, + [SMALL_STATE(308)] = 19170, + [SMALL_STATE(309)] = 19305, + [SMALL_STATE(310)] = 19440, + [SMALL_STATE(311)] = 19575, + [SMALL_STATE(312)] = 19710, + [SMALL_STATE(313)] = 19845, + [SMALL_STATE(314)] = 19980, + [SMALL_STATE(315)] = 20115, + [SMALL_STATE(316)] = 20250, + [SMALL_STATE(317)] = 20385, + [SMALL_STATE(318)] = 20520, + [SMALL_STATE(319)] = 20655, + [SMALL_STATE(320)] = 20790, + [SMALL_STATE(321)] = 20925, + [SMALL_STATE(322)] = 21060, + [SMALL_STATE(323)] = 21195, + [SMALL_STATE(324)] = 21330, + [SMALL_STATE(325)] = 21465, + [SMALL_STATE(326)] = 21600, + [SMALL_STATE(327)] = 21735, + [SMALL_STATE(328)] = 21870, + [SMALL_STATE(329)] = 22005, + [SMALL_STATE(330)] = 22140, + [SMALL_STATE(331)] = 22275, + [SMALL_STATE(332)] = 22410, + [SMALL_STATE(333)] = 22545, + [SMALL_STATE(334)] = 22680, + [SMALL_STATE(335)] = 22815, + [SMALL_STATE(336)] = 22950, + [SMALL_STATE(337)] = 23085, + [SMALL_STATE(338)] = 23220, + [SMALL_STATE(339)] = 23355, + [SMALL_STATE(340)] = 23490, + [SMALL_STATE(341)] = 23625, + [SMALL_STATE(342)] = 23760, + [SMALL_STATE(343)] = 23895, + [SMALL_STATE(344)] = 24030, + [SMALL_STATE(345)] = 24165, + [SMALL_STATE(346)] = 24300, + [SMALL_STATE(347)] = 24435, + [SMALL_STATE(348)] = 24570, + [SMALL_STATE(349)] = 24705, + [SMALL_STATE(350)] = 24840, + [SMALL_STATE(351)] = 24975, + [SMALL_STATE(352)] = 25110, + [SMALL_STATE(353)] = 25245, + [SMALL_STATE(354)] = 25380, + [SMALL_STATE(355)] = 25515, + [SMALL_STATE(356)] = 25650, + [SMALL_STATE(357)] = 25785, + [SMALL_STATE(358)] = 25920, + [SMALL_STATE(359)] = 26055, + [SMALL_STATE(360)] = 26190, + [SMALL_STATE(361)] = 26325, + [SMALL_STATE(362)] = 26460, + [SMALL_STATE(363)] = 26595, + [SMALL_STATE(364)] = 26730, + [SMALL_STATE(365)] = 26865, + [SMALL_STATE(366)] = 27000, + [SMALL_STATE(367)] = 27135, + [SMALL_STATE(368)] = 27270, + [SMALL_STATE(369)] = 27405, + [SMALL_STATE(370)] = 27540, + [SMALL_STATE(371)] = 27675, + [SMALL_STATE(372)] = 27810, + [SMALL_STATE(373)] = 27945, + [SMALL_STATE(374)] = 28080, + [SMALL_STATE(375)] = 28215, + [SMALL_STATE(376)] = 28350, + [SMALL_STATE(377)] = 28485, + [SMALL_STATE(378)] = 28620, + [SMALL_STATE(379)] = 28755, + [SMALL_STATE(380)] = 28890, + [SMALL_STATE(381)] = 29025, + [SMALL_STATE(382)] = 29160, + [SMALL_STATE(383)] = 29295, + [SMALL_STATE(384)] = 29430, + [SMALL_STATE(385)] = 29565, + [SMALL_STATE(386)] = 29700, + [SMALL_STATE(387)] = 29835, + [SMALL_STATE(388)] = 29970, + [SMALL_STATE(389)] = 30105, + [SMALL_STATE(390)] = 30240, + [SMALL_STATE(391)] = 30375, + [SMALL_STATE(392)] = 30510, + [SMALL_STATE(393)] = 30645, + [SMALL_STATE(394)] = 30780, + [SMALL_STATE(395)] = 30915, + [SMALL_STATE(396)] = 31050, + [SMALL_STATE(397)] = 31185, + [SMALL_STATE(398)] = 31320, + [SMALL_STATE(399)] = 31455, + [SMALL_STATE(400)] = 31590, + [SMALL_STATE(401)] = 31725, + [SMALL_STATE(402)] = 31860, + [SMALL_STATE(403)] = 31995, + [SMALL_STATE(404)] = 32130, + [SMALL_STATE(405)] = 32265, + [SMALL_STATE(406)] = 32400, + [SMALL_STATE(407)] = 32535, + [SMALL_STATE(408)] = 32670, + [SMALL_STATE(409)] = 32805, + [SMALL_STATE(410)] = 32940, + [SMALL_STATE(411)] = 33075, + [SMALL_STATE(412)] = 33210, + [SMALL_STATE(413)] = 33345, + [SMALL_STATE(414)] = 33480, + [SMALL_STATE(415)] = 33615, + [SMALL_STATE(416)] = 33750, + [SMALL_STATE(417)] = 33885, + [SMALL_STATE(418)] = 34020, + [SMALL_STATE(419)] = 34155, + [SMALL_STATE(420)] = 34290, + [SMALL_STATE(421)] = 34425, + [SMALL_STATE(422)] = 34560, + [SMALL_STATE(423)] = 34695, + [SMALL_STATE(424)] = 34830, + [SMALL_STATE(425)] = 34965, + [SMALL_STATE(426)] = 35100, + [SMALL_STATE(427)] = 35235, + [SMALL_STATE(428)] = 35370, + [SMALL_STATE(429)] = 35505, + [SMALL_STATE(430)] = 35640, + [SMALL_STATE(431)] = 35775, + [SMALL_STATE(432)] = 35910, + [SMALL_STATE(433)] = 36045, + [SMALL_STATE(434)] = 36180, + [SMALL_STATE(435)] = 36315, + [SMALL_STATE(436)] = 36450, + [SMALL_STATE(437)] = 36585, + [SMALL_STATE(438)] = 36720, + [SMALL_STATE(439)] = 36855, + [SMALL_STATE(440)] = 36990, + [SMALL_STATE(441)] = 37125, + [SMALL_STATE(442)] = 37260, + [SMALL_STATE(443)] = 37395, + [SMALL_STATE(444)] = 37530, + [SMALL_STATE(445)] = 37665, + [SMALL_STATE(446)] = 37800, + [SMALL_STATE(447)] = 37935, + [SMALL_STATE(448)] = 38070, + [SMALL_STATE(449)] = 38205, + [SMALL_STATE(450)] = 38340, + [SMALL_STATE(451)] = 38475, + [SMALL_STATE(452)] = 38610, + [SMALL_STATE(453)] = 38745, + [SMALL_STATE(454)] = 38880, + [SMALL_STATE(455)] = 39015, + [SMALL_STATE(456)] = 39150, + [SMALL_STATE(457)] = 39285, + [SMALL_STATE(458)] = 39420, + [SMALL_STATE(459)] = 39555, + [SMALL_STATE(460)] = 39690, + [SMALL_STATE(461)] = 39825, + [SMALL_STATE(462)] = 39960, + [SMALL_STATE(463)] = 40095, + [SMALL_STATE(464)] = 40230, + [SMALL_STATE(465)] = 40365, + [SMALL_STATE(466)] = 40500, + [SMALL_STATE(467)] = 40635, + [SMALL_STATE(468)] = 40770, + [SMALL_STATE(469)] = 40905, + [SMALL_STATE(470)] = 41040, + [SMALL_STATE(471)] = 41175, + [SMALL_STATE(472)] = 41310, + [SMALL_STATE(473)] = 41445, + [SMALL_STATE(474)] = 41580, + [SMALL_STATE(475)] = 41715, + [SMALL_STATE(476)] = 41850, + [SMALL_STATE(477)] = 41985, + [SMALL_STATE(478)] = 42120, + [SMALL_STATE(479)] = 42255, + [SMALL_STATE(480)] = 42390, + [SMALL_STATE(481)] = 42525, + [SMALL_STATE(482)] = 42660, + [SMALL_STATE(483)] = 42795, + [SMALL_STATE(484)] = 42930, + [SMALL_STATE(485)] = 43065, + [SMALL_STATE(486)] = 43200, + [SMALL_STATE(487)] = 43335, + [SMALL_STATE(488)] = 43470, + [SMALL_STATE(489)] = 43605, + [SMALL_STATE(490)] = 43740, + [SMALL_STATE(491)] = 43875, + [SMALL_STATE(492)] = 44010, + [SMALL_STATE(493)] = 44145, + [SMALL_STATE(494)] = 44280, + [SMALL_STATE(495)] = 44415, + [SMALL_STATE(496)] = 44550, + [SMALL_STATE(497)] = 44685, + [SMALL_STATE(498)] = 44820, + [SMALL_STATE(499)] = 44955, + [SMALL_STATE(500)] = 45090, + [SMALL_STATE(501)] = 45225, + [SMALL_STATE(502)] = 45360, + [SMALL_STATE(503)] = 45495, + [SMALL_STATE(504)] = 45630, + [SMALL_STATE(505)] = 45765, + [SMALL_STATE(506)] = 45900, + [SMALL_STATE(507)] = 46035, + [SMALL_STATE(508)] = 46170, + [SMALL_STATE(509)] = 46305, + [SMALL_STATE(510)] = 46440, + [SMALL_STATE(511)] = 46575, + [SMALL_STATE(512)] = 46710, + [SMALL_STATE(513)] = 46845, + [SMALL_STATE(514)] = 46980, + [SMALL_STATE(515)] = 47115, + [SMALL_STATE(516)] = 47250, + [SMALL_STATE(517)] = 47385, + [SMALL_STATE(518)] = 47520, + [SMALL_STATE(519)] = 47655, + [SMALL_STATE(520)] = 47790, + [SMALL_STATE(521)] = 47925, + [SMALL_STATE(522)] = 48060, + [SMALL_STATE(523)] = 48195, + [SMALL_STATE(524)] = 48330, + [SMALL_STATE(525)] = 48465, + [SMALL_STATE(526)] = 48600, + [SMALL_STATE(527)] = 48735, + [SMALL_STATE(528)] = 48870, + [SMALL_STATE(529)] = 49005, + [SMALL_STATE(530)] = 49140, + [SMALL_STATE(531)] = 49275, + [SMALL_STATE(532)] = 49410, + [SMALL_STATE(533)] = 49545, + [SMALL_STATE(534)] = 49680, + [SMALL_STATE(535)] = 49815, + [SMALL_STATE(536)] = 49950, + [SMALL_STATE(537)] = 50085, + [SMALL_STATE(538)] = 50220, + [SMALL_STATE(539)] = 50355, + [SMALL_STATE(540)] = 50490, + [SMALL_STATE(541)] = 50625, + [SMALL_STATE(542)] = 50760, + [SMALL_STATE(543)] = 50895, + [SMALL_STATE(544)] = 51030, + [SMALL_STATE(545)] = 51165, + [SMALL_STATE(546)] = 51300, + [SMALL_STATE(547)] = 51435, + [SMALL_STATE(548)] = 51570, + [SMALL_STATE(549)] = 51705, + [SMALL_STATE(550)] = 51840, + [SMALL_STATE(551)] = 51975, + [SMALL_STATE(552)] = 52110, + [SMALL_STATE(553)] = 52245, + [SMALL_STATE(554)] = 52380, + [SMALL_STATE(555)] = 52515, + [SMALL_STATE(556)] = 52650, + [SMALL_STATE(557)] = 52785, + [SMALL_STATE(558)] = 52920, + [SMALL_STATE(559)] = 53055, + [SMALL_STATE(560)] = 53190, + [SMALL_STATE(561)] = 53325, + [SMALL_STATE(562)] = 53460, + [SMALL_STATE(563)] = 53595, + [SMALL_STATE(564)] = 53730, + [SMALL_STATE(565)] = 53865, + [SMALL_STATE(566)] = 54000, + [SMALL_STATE(567)] = 54135, + [SMALL_STATE(568)] = 54270, + [SMALL_STATE(569)] = 54405, + [SMALL_STATE(570)] = 54540, + [SMALL_STATE(571)] = 54675, + [SMALL_STATE(572)] = 54810, + [SMALL_STATE(573)] = 54945, + [SMALL_STATE(574)] = 55080, + [SMALL_STATE(575)] = 55215, + [SMALL_STATE(576)] = 55350, + [SMALL_STATE(577)] = 55485, + [SMALL_STATE(578)] = 55620, + [SMALL_STATE(579)] = 55755, + [SMALL_STATE(580)] = 55890, + [SMALL_STATE(581)] = 56025, + [SMALL_STATE(582)] = 56160, + [SMALL_STATE(583)] = 56295, + [SMALL_STATE(584)] = 56430, + [SMALL_STATE(585)] = 56565, + [SMALL_STATE(586)] = 56700, + [SMALL_STATE(587)] = 56835, + [SMALL_STATE(588)] = 56970, + [SMALL_STATE(589)] = 57105, + [SMALL_STATE(590)] = 57240, + [SMALL_STATE(591)] = 57375, + [SMALL_STATE(592)] = 57510, + [SMALL_STATE(593)] = 57645, + [SMALL_STATE(594)] = 57780, + [SMALL_STATE(595)] = 57915, + [SMALL_STATE(596)] = 58050, + [SMALL_STATE(597)] = 58185, + [SMALL_STATE(598)] = 58320, + [SMALL_STATE(599)] = 58455, + [SMALL_STATE(600)] = 58590, + [SMALL_STATE(601)] = 58725, + [SMALL_STATE(602)] = 58860, + [SMALL_STATE(603)] = 58995, + [SMALL_STATE(604)] = 59130, + [SMALL_STATE(605)] = 59265, + [SMALL_STATE(606)] = 59400, + [SMALL_STATE(607)] = 59535, + [SMALL_STATE(608)] = 59670, + [SMALL_STATE(609)] = 59805, + [SMALL_STATE(610)] = 59940, + [SMALL_STATE(611)] = 60075, + [SMALL_STATE(612)] = 60210, + [SMALL_STATE(613)] = 60345, + [SMALL_STATE(614)] = 60480, + [SMALL_STATE(615)] = 60615, + [SMALL_STATE(616)] = 60750, + [SMALL_STATE(617)] = 60885, + [SMALL_STATE(618)] = 61020, + [SMALL_STATE(619)] = 61155, + [SMALL_STATE(620)] = 61290, + [SMALL_STATE(621)] = 61425, + [SMALL_STATE(622)] = 61560, + [SMALL_STATE(623)] = 61695, + [SMALL_STATE(624)] = 61830, + [SMALL_STATE(625)] = 61965, + [SMALL_STATE(626)] = 62100, + [SMALL_STATE(627)] = 62235, + [SMALL_STATE(628)] = 62370, + [SMALL_STATE(629)] = 62505, + [SMALL_STATE(630)] = 62640, + [SMALL_STATE(631)] = 62775, + [SMALL_STATE(632)] = 62910, + [SMALL_STATE(633)] = 63045, + [SMALL_STATE(634)] = 63180, + [SMALL_STATE(635)] = 63315, + [SMALL_STATE(636)] = 63450, + [SMALL_STATE(637)] = 63585, + [SMALL_STATE(638)] = 63720, + [SMALL_STATE(639)] = 63855, + [SMALL_STATE(640)] = 63990, + [SMALL_STATE(641)] = 64125, + [SMALL_STATE(642)] = 64260, + [SMALL_STATE(643)] = 64395, + [SMALL_STATE(644)] = 64530, + [SMALL_STATE(645)] = 64665, + [SMALL_STATE(646)] = 64800, + [SMALL_STATE(647)] = 64935, + [SMALL_STATE(648)] = 65070, + [SMALL_STATE(649)] = 65205, + [SMALL_STATE(650)] = 65340, + [SMALL_STATE(651)] = 65475, + [SMALL_STATE(652)] = 65610, + [SMALL_STATE(653)] = 65745, + [SMALL_STATE(654)] = 65880, + [SMALL_STATE(655)] = 66015, + [SMALL_STATE(656)] = 66150, + [SMALL_STATE(657)] = 66285, + [SMALL_STATE(658)] = 66420, + [SMALL_STATE(659)] = 66555, + [SMALL_STATE(660)] = 66690, + [SMALL_STATE(661)] = 66825, + [SMALL_STATE(662)] = 66960, + [SMALL_STATE(663)] = 67095, + [SMALL_STATE(664)] = 67230, + [SMALL_STATE(665)] = 67365, + [SMALL_STATE(666)] = 67500, + [SMALL_STATE(667)] = 67635, + [SMALL_STATE(668)] = 67770, + [SMALL_STATE(669)] = 67905, + [SMALL_STATE(670)] = 68040, + [SMALL_STATE(671)] = 68175, + [SMALL_STATE(672)] = 68310, + [SMALL_STATE(673)] = 68445, + [SMALL_STATE(674)] = 68580, + [SMALL_STATE(675)] = 68715, + [SMALL_STATE(676)] = 68850, + [SMALL_STATE(677)] = 68985, + [SMALL_STATE(678)] = 69120, + [SMALL_STATE(679)] = 69255, + [SMALL_STATE(680)] = 69390, + [SMALL_STATE(681)] = 69525, + [SMALL_STATE(682)] = 69660, + [SMALL_STATE(683)] = 69795, + [SMALL_STATE(684)] = 69930, + [SMALL_STATE(685)] = 70065, + [SMALL_STATE(686)] = 70200, + [SMALL_STATE(687)] = 70335, + [SMALL_STATE(688)] = 70470, + [SMALL_STATE(689)] = 70605, + [SMALL_STATE(690)] = 70740, + [SMALL_STATE(691)] = 70875, + [SMALL_STATE(692)] = 71010, + [SMALL_STATE(693)] = 71145, + [SMALL_STATE(694)] = 71280, + [SMALL_STATE(695)] = 71415, + [SMALL_STATE(696)] = 71550, + [SMALL_STATE(697)] = 71685, + [SMALL_STATE(698)] = 71820, + [SMALL_STATE(699)] = 71955, + [SMALL_STATE(700)] = 72090, + [SMALL_STATE(701)] = 72225, + [SMALL_STATE(702)] = 72360, + [SMALL_STATE(703)] = 72495, + [SMALL_STATE(704)] = 72630, + [SMALL_STATE(705)] = 72765, + [SMALL_STATE(706)] = 72900, + [SMALL_STATE(707)] = 73035, + [SMALL_STATE(708)] = 73170, + [SMALL_STATE(709)] = 73305, + [SMALL_STATE(710)] = 73440, + [SMALL_STATE(711)] = 73575, + [SMALL_STATE(712)] = 73710, + [SMALL_STATE(713)] = 73845, + [SMALL_STATE(714)] = 73980, + [SMALL_STATE(715)] = 74115, + [SMALL_STATE(716)] = 74250, + [SMALL_STATE(717)] = 74385, + [SMALL_STATE(718)] = 74520, + [SMALL_STATE(719)] = 74655, + [SMALL_STATE(720)] = 74790, + [SMALL_STATE(721)] = 74925, + [SMALL_STATE(722)] = 75060, + [SMALL_STATE(723)] = 75195, + [SMALL_STATE(724)] = 75330, + [SMALL_STATE(725)] = 75465, + [SMALL_STATE(726)] = 75600, + [SMALL_STATE(727)] = 75735, + [SMALL_STATE(728)] = 75870, + [SMALL_STATE(729)] = 76005, + [SMALL_STATE(730)] = 76140, + [SMALL_STATE(731)] = 76275, + [SMALL_STATE(732)] = 76410, + [SMALL_STATE(733)] = 76545, + [SMALL_STATE(734)] = 76680, + [SMALL_STATE(735)] = 76815, + [SMALL_STATE(736)] = 76950, + [SMALL_STATE(737)] = 77085, + [SMALL_STATE(738)] = 77220, + [SMALL_STATE(739)] = 77355, + [SMALL_STATE(740)] = 77490, + [SMALL_STATE(741)] = 77625, + [SMALL_STATE(742)] = 77760, + [SMALL_STATE(743)] = 77895, + [SMALL_STATE(744)] = 78030, + [SMALL_STATE(745)] = 78165, + [SMALL_STATE(746)] = 78300, + [SMALL_STATE(747)] = 78435, + [SMALL_STATE(748)] = 78570, + [SMALL_STATE(749)] = 78705, + [SMALL_STATE(750)] = 78840, + [SMALL_STATE(751)] = 78975, + [SMALL_STATE(752)] = 79110, + [SMALL_STATE(753)] = 79245, + [SMALL_STATE(754)] = 79380, + [SMALL_STATE(755)] = 79515, + [SMALL_STATE(756)] = 79650, + [SMALL_STATE(757)] = 79785, + [SMALL_STATE(758)] = 79920, + [SMALL_STATE(759)] = 80055, + [SMALL_STATE(760)] = 80190, + [SMALL_STATE(761)] = 80325, + [SMALL_STATE(762)] = 80460, + [SMALL_STATE(763)] = 80595, + [SMALL_STATE(764)] = 80730, + [SMALL_STATE(765)] = 80865, + [SMALL_STATE(766)] = 81000, + [SMALL_STATE(767)] = 81135, + [SMALL_STATE(768)] = 81270, + [SMALL_STATE(769)] = 81405, + [SMALL_STATE(770)] = 81540, + [SMALL_STATE(771)] = 81675, + [SMALL_STATE(772)] = 81810, + [SMALL_STATE(773)] = 81945, + [SMALL_STATE(774)] = 82080, + [SMALL_STATE(775)] = 82215, + [SMALL_STATE(776)] = 82350, + [SMALL_STATE(777)] = 82485, + [SMALL_STATE(778)] = 82620, + [SMALL_STATE(779)] = 82755, + [SMALL_STATE(780)] = 82890, + [SMALL_STATE(781)] = 83025, + [SMALL_STATE(782)] = 83160, + [SMALL_STATE(783)] = 83295, + [SMALL_STATE(784)] = 83430, + [SMALL_STATE(785)] = 83565, + [SMALL_STATE(786)] = 83700, + [SMALL_STATE(787)] = 83835, + [SMALL_STATE(788)] = 83970, + [SMALL_STATE(789)] = 84105, + [SMALL_STATE(790)] = 84240, + [SMALL_STATE(791)] = 84375, + [SMALL_STATE(792)] = 84510, + [SMALL_STATE(793)] = 84645, + [SMALL_STATE(794)] = 84780, + [SMALL_STATE(795)] = 84915, + [SMALL_STATE(796)] = 85050, + [SMALL_STATE(797)] = 85185, + [SMALL_STATE(798)] = 85320, + [SMALL_STATE(799)] = 85455, + [SMALL_STATE(800)] = 85590, + [SMALL_STATE(801)] = 85725, + [SMALL_STATE(802)] = 85860, + [SMALL_STATE(803)] = 85995, + [SMALL_STATE(804)] = 86130, + [SMALL_STATE(805)] = 86265, + [SMALL_STATE(806)] = 86400, + [SMALL_STATE(807)] = 86535, + [SMALL_STATE(808)] = 86670, + [SMALL_STATE(809)] = 86805, + [SMALL_STATE(810)] = 86940, + [SMALL_STATE(811)] = 87075, + [SMALL_STATE(812)] = 87210, + [SMALL_STATE(813)] = 87345, + [SMALL_STATE(814)] = 87410, + [SMALL_STATE(815)] = 87479, + [SMALL_STATE(816)] = 87544, + [SMALL_STATE(817)] = 87613, + [SMALL_STATE(818)] = 87682, + [SMALL_STATE(819)] = 87745, + [SMALL_STATE(820)] = 87805, + [SMALL_STATE(821)] = 87865, + [SMALL_STATE(822)] = 87925, + [SMALL_STATE(823)] = 87985, + [SMALL_STATE(824)] = 88045, + [SMALL_STATE(825)] = 88105, + [SMALL_STATE(826)] = 88165, + [SMALL_STATE(827)] = 88225, + [SMALL_STATE(828)] = 88285, + [SMALL_STATE(829)] = 88345, + [SMALL_STATE(830)] = 88405, + [SMALL_STATE(831)] = 88465, + [SMALL_STATE(832)] = 88525, + [SMALL_STATE(833)] = 88585, + [SMALL_STATE(834)] = 88645, + [SMALL_STATE(835)] = 88705, + [SMALL_STATE(836)] = 88765, + [SMALL_STATE(837)] = 88825, + [SMALL_STATE(838)] = 88885, + [SMALL_STATE(839)] = 88945, + [SMALL_STATE(840)] = 89005, + [SMALL_STATE(841)] = 89065, + [SMALL_STATE(842)] = 89125, + [SMALL_STATE(843)] = 89185, + [SMALL_STATE(844)] = 89245, + [SMALL_STATE(845)] = 89305, + [SMALL_STATE(846)] = 89365, + [SMALL_STATE(847)] = 89425, + [SMALL_STATE(848)] = 89485, + [SMALL_STATE(849)] = 89545, + [SMALL_STATE(850)] = 89605, + [SMALL_STATE(851)] = 89665, + [SMALL_STATE(852)] = 89725, + [SMALL_STATE(853)] = 89785, + [SMALL_STATE(854)] = 89845, + [SMALL_STATE(855)] = 89905, + [SMALL_STATE(856)] = 89965, + [SMALL_STATE(857)] = 90025, + [SMALL_STATE(858)] = 90085, + [SMALL_STATE(859)] = 90145, + [SMALL_STATE(860)] = 90205, + [SMALL_STATE(861)] = 90265, + [SMALL_STATE(862)] = 90325, + [SMALL_STATE(863)] = 90389, + [SMALL_STATE(864)] = 90449, + [SMALL_STATE(865)] = 90509, + [SMALL_STATE(866)] = 90569, + [SMALL_STATE(867)] = 90629, + [SMALL_STATE(868)] = 90689, + [SMALL_STATE(869)] = 90749, + [SMALL_STATE(870)] = 90809, + [SMALL_STATE(871)] = 90869, + [SMALL_STATE(872)] = 90929, + [SMALL_STATE(873)] = 90989, + [SMALL_STATE(874)] = 91049, + [SMALL_STATE(875)] = 91109, + [SMALL_STATE(876)] = 91169, + [SMALL_STATE(877)] = 91229, + [SMALL_STATE(878)] = 91289, + [SMALL_STATE(879)] = 91349, + [SMALL_STATE(880)] = 91409, + [SMALL_STATE(881)] = 91473, + [SMALL_STATE(882)] = 91533, + [SMALL_STATE(883)] = 91593, + [SMALL_STATE(884)] = 91653, + [SMALL_STATE(885)] = 91713, + [SMALL_STATE(886)] = 91773, + [SMALL_STATE(887)] = 91833, + [SMALL_STATE(888)] = 91893, + [SMALL_STATE(889)] = 91953, + [SMALL_STATE(890)] = 92013, + [SMALL_STATE(891)] = 92073, + [SMALL_STATE(892)] = 92133, + [SMALL_STATE(893)] = 92193, + [SMALL_STATE(894)] = 92253, + [SMALL_STATE(895)] = 92313, + [SMALL_STATE(896)] = 92373, + [SMALL_STATE(897)] = 92433, + [SMALL_STATE(898)] = 92493, + [SMALL_STATE(899)] = 92553, + [SMALL_STATE(900)] = 92613, + [SMALL_STATE(901)] = 92673, + [SMALL_STATE(902)] = 92733, + [SMALL_STATE(903)] = 92793, + [SMALL_STATE(904)] = 92853, + [SMALL_STATE(905)] = 92913, + [SMALL_STATE(906)] = 92973, + [SMALL_STATE(907)] = 93033, + [SMALL_STATE(908)] = 93093, + [SMALL_STATE(909)] = 93153, + [SMALL_STATE(910)] = 93213, + [SMALL_STATE(911)] = 93273, + [SMALL_STATE(912)] = 93333, + [SMALL_STATE(913)] = 93393, + [SMALL_STATE(914)] = 93453, + [SMALL_STATE(915)] = 93513, + [SMALL_STATE(916)] = 93573, + [SMALL_STATE(917)] = 93633, + [SMALL_STATE(918)] = 93693, + [SMALL_STATE(919)] = 93753, + [SMALL_STATE(920)] = 93813, + [SMALL_STATE(921)] = 93873, + [SMALL_STATE(922)] = 93933, + [SMALL_STATE(923)] = 93993, + [SMALL_STATE(924)] = 94053, + [SMALL_STATE(925)] = 94113, + [SMALL_STATE(926)] = 94173, + [SMALL_STATE(927)] = 94233, + [SMALL_STATE(928)] = 94293, + [SMALL_STATE(929)] = 94353, + [SMALL_STATE(930)] = 94413, + [SMALL_STATE(931)] = 94473, + [SMALL_STATE(932)] = 94533, + [SMALL_STATE(933)] = 94593, + [SMALL_STATE(934)] = 94653, + [SMALL_STATE(935)] = 94713, + [SMALL_STATE(936)] = 94773, + [SMALL_STATE(937)] = 94833, + [SMALL_STATE(938)] = 94893, + [SMALL_STATE(939)] = 94953, + [SMALL_STATE(940)] = 95013, + [SMALL_STATE(941)] = 95078, + [SMALL_STATE(942)] = 95153, + [SMALL_STATE(943)] = 95228, + [SMALL_STATE(944)] = 95303, + [SMALL_STATE(945)] = 95378, + [SMALL_STATE(946)] = 95453, + [SMALL_STATE(947)] = 95528, + [SMALL_STATE(948)] = 95603, + [SMALL_STATE(949)] = 95678, + [SMALL_STATE(950)] = 95753, + [SMALL_STATE(951)] = 95828, + [SMALL_STATE(952)] = 95903, + [SMALL_STATE(953)] = 95978, + [SMALL_STATE(954)] = 96053, + [SMALL_STATE(955)] = 96128, + [SMALL_STATE(956)] = 96203, + [SMALL_STATE(957)] = 96278, + [SMALL_STATE(958)] = 96353, + [SMALL_STATE(959)] = 96428, + [SMALL_STATE(960)] = 96487, + [SMALL_STATE(961)] = 96562, + [SMALL_STATE(962)] = 96664, + [SMALL_STATE(963)] = 96720, + [SMALL_STATE(964)] = 96776, + [SMALL_STATE(965)] = 96878, + [SMALL_STATE(966)] = 96934, + [SMALL_STATE(967)] = 97036, + [SMALL_STATE(968)] = 97138, + [SMALL_STATE(969)] = 97194, + [SMALL_STATE(970)] = 97296, + [SMALL_STATE(971)] = 97398, + [SMALL_STATE(972)] = 97500, + [SMALL_STATE(973)] = 97556, + [SMALL_STATE(974)] = 97612, + [SMALL_STATE(975)] = 97714, + [SMALL_STATE(976)] = 97816, + [SMALL_STATE(977)] = 97872, + [SMALL_STATE(978)] = 97928, + [SMALL_STATE(979)] = 98030, + [SMALL_STATE(980)] = 98086, + [SMALL_STATE(981)] = 98142, + [SMALL_STATE(982)] = 98244, + [SMALL_STATE(983)] = 98300, + [SMALL_STATE(984)] = 98356, + [SMALL_STATE(985)] = 98458, + [SMALL_STATE(986)] = 98560, + [SMALL_STATE(987)] = 98616, + [SMALL_STATE(988)] = 98672, + [SMALL_STATE(989)] = 98728, + [SMALL_STATE(990)] = 98784, + [SMALL_STATE(991)] = 98840, + [SMALL_STATE(992)] = 98896, + [SMALL_STATE(993)] = 98952, + [SMALL_STATE(994)] = 99054, + [SMALL_STATE(995)] = 99156, + [SMALL_STATE(996)] = 99212, + [SMALL_STATE(997)] = 99314, + [SMALL_STATE(998)] = 99416, + [SMALL_STATE(999)] = 99518, + [SMALL_STATE(1000)] = 99574, + [SMALL_STATE(1001)] = 99676, + [SMALL_STATE(1002)] = 99732, + [SMALL_STATE(1003)] = 99788, + [SMALL_STATE(1004)] = 99890, + [SMALL_STATE(1005)] = 99992, + [SMALL_STATE(1006)] = 100048, + [SMALL_STATE(1007)] = 100104, + [SMALL_STATE(1008)] = 100160, + [SMALL_STATE(1009)] = 100262, + [SMALL_STATE(1010)] = 100318, + [SMALL_STATE(1011)] = 100374, + [SMALL_STATE(1012)] = 100476, + [SMALL_STATE(1013)] = 100578, + [SMALL_STATE(1014)] = 100680, + [SMALL_STATE(1015)] = 100736, + [SMALL_STATE(1016)] = 100792, + [SMALL_STATE(1017)] = 100848, + [SMALL_STATE(1018)] = 100904, + [SMALL_STATE(1019)] = 101006, + [SMALL_STATE(1020)] = 101062, + [SMALL_STATE(1021)] = 101118, + [SMALL_STATE(1022)] = 101220, + [SMALL_STATE(1023)] = 101276, + [SMALL_STATE(1024)] = 101378, + [SMALL_STATE(1025)] = 101434, + [SMALL_STATE(1026)] = 101490, + [SMALL_STATE(1027)] = 101546, + [SMALL_STATE(1028)] = 101648, + [SMALL_STATE(1029)] = 101704, + [SMALL_STATE(1030)] = 101760, + [SMALL_STATE(1031)] = 101816, + [SMALL_STATE(1032)] = 101872, + [SMALL_STATE(1033)] = 101928, + [SMALL_STATE(1034)] = 101984, + [SMALL_STATE(1035)] = 102040, + [SMALL_STATE(1036)] = 102096, + [SMALL_STATE(1037)] = 102152, + [SMALL_STATE(1038)] = 102208, + [SMALL_STATE(1039)] = 102264, + [SMALL_STATE(1040)] = 102320, + [SMALL_STATE(1041)] = 102422, + [SMALL_STATE(1042)] = 102478, + [SMALL_STATE(1043)] = 102534, + [SMALL_STATE(1044)] = 102590, + [SMALL_STATE(1045)] = 102646, + [SMALL_STATE(1046)] = 102702, + [SMALL_STATE(1047)] = 102758, + [SMALL_STATE(1048)] = 102814, + [SMALL_STATE(1049)] = 102870, + [SMALL_STATE(1050)] = 102926, + [SMALL_STATE(1051)] = 102982, + [SMALL_STATE(1052)] = 103084, + [SMALL_STATE(1053)] = 103140, + [SMALL_STATE(1054)] = 103196, + [SMALL_STATE(1055)] = 103252, + [SMALL_STATE(1056)] = 103308, + [SMALL_STATE(1057)] = 103410, + [SMALL_STATE(1058)] = 103466, + [SMALL_STATE(1059)] = 103522, + [SMALL_STATE(1060)] = 103578, + [SMALL_STATE(1061)] = 103634, + [SMALL_STATE(1062)] = 103690, + [SMALL_STATE(1063)] = 103792, + [SMALL_STATE(1064)] = 103848, + [SMALL_STATE(1065)] = 103950, + [SMALL_STATE(1066)] = 104006, + [SMALL_STATE(1067)] = 104062, + [SMALL_STATE(1068)] = 104118, + [SMALL_STATE(1069)] = 104174, + [SMALL_STATE(1070)] = 104230, + [SMALL_STATE(1071)] = 104286, + [SMALL_STATE(1072)] = 104342, + [SMALL_STATE(1073)] = 104398, + [SMALL_STATE(1074)] = 104458, + [SMALL_STATE(1075)] = 104514, + [SMALL_STATE(1076)] = 104570, + [SMALL_STATE(1077)] = 104626, + [SMALL_STATE(1078)] = 104682, + [SMALL_STATE(1079)] = 104738, + [SMALL_STATE(1080)] = 104798, + [SMALL_STATE(1081)] = 104900, + [SMALL_STATE(1082)] = 105002, + [SMALL_STATE(1083)] = 105104, + [SMALL_STATE(1084)] = 105206, + [SMALL_STATE(1085)] = 105308, + [SMALL_STATE(1086)] = 105410, + [SMALL_STATE(1087)] = 105512, + [SMALL_STATE(1088)] = 105614, + [SMALL_STATE(1089)] = 105716, + [SMALL_STATE(1090)] = 105772, + [SMALL_STATE(1091)] = 105828, + [SMALL_STATE(1092)] = 105884, + [SMALL_STATE(1093)] = 105940, + [SMALL_STATE(1094)] = 105996, + [SMALL_STATE(1095)] = 106052, + [SMALL_STATE(1096)] = 106108, + [SMALL_STATE(1097)] = 106164, + [SMALL_STATE(1098)] = 106266, + [SMALL_STATE(1099)] = 106322, + [SMALL_STATE(1100)] = 106378, + [SMALL_STATE(1101)] = 106434, + [SMALL_STATE(1102)] = 106490, + [SMALL_STATE(1103)] = 106546, + [SMALL_STATE(1104)] = 106602, + [SMALL_STATE(1105)] = 106658, + [SMALL_STATE(1106)] = 106714, + [SMALL_STATE(1107)] = 106770, + [SMALL_STATE(1108)] = 106826, + [SMALL_STATE(1109)] = 106882, + [SMALL_STATE(1110)] = 106938, + [SMALL_STATE(1111)] = 106994, + [SMALL_STATE(1112)] = 107050, + [SMALL_STATE(1113)] = 107106, + [SMALL_STATE(1114)] = 107162, + [SMALL_STATE(1115)] = 107218, + [SMALL_STATE(1116)] = 107274, + [SMALL_STATE(1117)] = 107330, + [SMALL_STATE(1118)] = 107386, + [SMALL_STATE(1119)] = 107442, + [SMALL_STATE(1120)] = 107498, + [SMALL_STATE(1121)] = 107554, + [SMALL_STATE(1122)] = 107610, + [SMALL_STATE(1123)] = 107666, + [SMALL_STATE(1124)] = 107722, + [SMALL_STATE(1125)] = 107778, + [SMALL_STATE(1126)] = 107834, + [SMALL_STATE(1127)] = 107936, + [SMALL_STATE(1128)] = 108038, + [SMALL_STATE(1129)] = 108140, + [SMALL_STATE(1130)] = 108242, + [SMALL_STATE(1131)] = 108344, + [SMALL_STATE(1132)] = 108446, + [SMALL_STATE(1133)] = 108548, + [SMALL_STATE(1134)] = 108650, + [SMALL_STATE(1135)] = 108752, + [SMALL_STATE(1136)] = 108854, + [SMALL_STATE(1137)] = 108956, + [SMALL_STATE(1138)] = 109058, + [SMALL_STATE(1139)] = 109160, + [SMALL_STATE(1140)] = 109262, + [SMALL_STATE(1141)] = 109364, + [SMALL_STATE(1142)] = 109466, + [SMALL_STATE(1143)] = 109568, + [SMALL_STATE(1144)] = 109670, + [SMALL_STATE(1145)] = 109772, + [SMALL_STATE(1146)] = 109874, + [SMALL_STATE(1147)] = 109976, + [SMALL_STATE(1148)] = 110078, + [SMALL_STATE(1149)] = 110180, + [SMALL_STATE(1150)] = 110282, + [SMALL_STATE(1151)] = 110384, + [SMALL_STATE(1152)] = 110486, + [SMALL_STATE(1153)] = 110588, + [SMALL_STATE(1154)] = 110690, + [SMALL_STATE(1155)] = 110792, + [SMALL_STATE(1156)] = 110894, + [SMALL_STATE(1157)] = 110996, + [SMALL_STATE(1158)] = 111098, + [SMALL_STATE(1159)] = 111200, + [SMALL_STATE(1160)] = 111302, + [SMALL_STATE(1161)] = 111404, + [SMALL_STATE(1162)] = 111506, + [SMALL_STATE(1163)] = 111608, + [SMALL_STATE(1164)] = 111661, + [SMALL_STATE(1165)] = 111718, + [SMALL_STATE(1166)] = 111775, + [SMALL_STATE(1167)] = 111829, + [SMALL_STATE(1168)] = 111880, + [SMALL_STATE(1169)] = 111931, + [SMALL_STATE(1170)] = 111982, + [SMALL_STATE(1171)] = 112033, + [SMALL_STATE(1172)] = 112084, + [SMALL_STATE(1173)] = 112135, + [SMALL_STATE(1174)] = 112186, + [SMALL_STATE(1175)] = 112237, + [SMALL_STATE(1176)] = 112288, + [SMALL_STATE(1177)] = 112339, + [SMALL_STATE(1178)] = 112390, + [SMALL_STATE(1179)] = 112441, + [SMALL_STATE(1180)] = 112492, + [SMALL_STATE(1181)] = 112543, + [SMALL_STATE(1182)] = 112594, + [SMALL_STATE(1183)] = 112645, + [SMALL_STATE(1184)] = 112696, + [SMALL_STATE(1185)] = 112747, + [SMALL_STATE(1186)] = 112798, + [SMALL_STATE(1187)] = 112849, + [SMALL_STATE(1188)] = 112900, + [SMALL_STATE(1189)] = 112951, + [SMALL_STATE(1190)] = 113002, + [SMALL_STATE(1191)] = 113053, + [SMALL_STATE(1192)] = 113104, + [SMALL_STATE(1193)] = 113155, + [SMALL_STATE(1194)] = 113206, + [SMALL_STATE(1195)] = 113257, + [SMALL_STATE(1196)] = 113308, + [SMALL_STATE(1197)] = 113359, + [SMALL_STATE(1198)] = 113410, + [SMALL_STATE(1199)] = 113461, + [SMALL_STATE(1200)] = 113512, + [SMALL_STATE(1201)] = 113563, + [SMALL_STATE(1202)] = 113614, + [SMALL_STATE(1203)] = 113665, + [SMALL_STATE(1204)] = 113716, + [SMALL_STATE(1205)] = 113767, + [SMALL_STATE(1206)] = 113818, + [SMALL_STATE(1207)] = 113869, + [SMALL_STATE(1208)] = 113920, + [SMALL_STATE(1209)] = 113971, + [SMALL_STATE(1210)] = 114022, + [SMALL_STATE(1211)] = 114073, + [SMALL_STATE(1212)] = 114124, + [SMALL_STATE(1213)] = 114175, + [SMALL_STATE(1214)] = 114226, + [SMALL_STATE(1215)] = 114277, + [SMALL_STATE(1216)] = 114328, + [SMALL_STATE(1217)] = 114379, + [SMALL_STATE(1218)] = 114430, + [SMALL_STATE(1219)] = 114481, + [SMALL_STATE(1220)] = 114532, + [SMALL_STATE(1221)] = 114583, + [SMALL_STATE(1222)] = 114634, + [SMALL_STATE(1223)] = 114685, + [SMALL_STATE(1224)] = 114736, + [SMALL_STATE(1225)] = 114787, + [SMALL_STATE(1226)] = 114838, + [SMALL_STATE(1227)] = 114889, + [SMALL_STATE(1228)] = 114940, + [SMALL_STATE(1229)] = 114991, + [SMALL_STATE(1230)] = 115042, + [SMALL_STATE(1231)] = 115093, + [SMALL_STATE(1232)] = 115144, + [SMALL_STATE(1233)] = 115195, + [SMALL_STATE(1234)] = 115246, + [SMALL_STATE(1235)] = 115297, + [SMALL_STATE(1236)] = 115348, + [SMALL_STATE(1237)] = 115399, + [SMALL_STATE(1238)] = 115450, + [SMALL_STATE(1239)] = 115501, + [SMALL_STATE(1240)] = 115552, + [SMALL_STATE(1241)] = 115603, + [SMALL_STATE(1242)] = 115654, + [SMALL_STATE(1243)] = 115705, + [SMALL_STATE(1244)] = 115756, + [SMALL_STATE(1245)] = 115807, + [SMALL_STATE(1246)] = 115858, + [SMALL_STATE(1247)] = 115909, + [SMALL_STATE(1248)] = 115960, + [SMALL_STATE(1249)] = 116011, + [SMALL_STATE(1250)] = 116062, + [SMALL_STATE(1251)] = 116113, + [SMALL_STATE(1252)] = 116164, + [SMALL_STATE(1253)] = 116215, + [SMALL_STATE(1254)] = 116266, + [SMALL_STATE(1255)] = 116317, + [SMALL_STATE(1256)] = 116368, + [SMALL_STATE(1257)] = 116419, + [SMALL_STATE(1258)] = 116470, + [SMALL_STATE(1259)] = 116521, + [SMALL_STATE(1260)] = 116572, + [SMALL_STATE(1261)] = 116623, + [SMALL_STATE(1262)] = 116674, + [SMALL_STATE(1263)] = 116725, + [SMALL_STATE(1264)] = 116776, + [SMALL_STATE(1265)] = 116827, + [SMALL_STATE(1266)] = 116878, + [SMALL_STATE(1267)] = 116929, + [SMALL_STATE(1268)] = 116980, + [SMALL_STATE(1269)] = 117031, + [SMALL_STATE(1270)] = 117082, + [SMALL_STATE(1271)] = 117133, + [SMALL_STATE(1272)] = 117184, + [SMALL_STATE(1273)] = 117235, + [SMALL_STATE(1274)] = 117286, + [SMALL_STATE(1275)] = 117337, + [SMALL_STATE(1276)] = 117388, + [SMALL_STATE(1277)] = 117439, + [SMALL_STATE(1278)] = 117490, + [SMALL_STATE(1279)] = 117541, + [SMALL_STATE(1280)] = 117592, + [SMALL_STATE(1281)] = 117643, + [SMALL_STATE(1282)] = 117694, + [SMALL_STATE(1283)] = 117745, + [SMALL_STATE(1284)] = 117796, + [SMALL_STATE(1285)] = 117847, + [SMALL_STATE(1286)] = 117898, + [SMALL_STATE(1287)] = 117949, + [SMALL_STATE(1288)] = 118000, + [SMALL_STATE(1289)] = 118061, + [SMALL_STATE(1290)] = 118122, + [SMALL_STATE(1291)] = 118183, + [SMALL_STATE(1292)] = 118244, + [SMALL_STATE(1293)] = 118305, + [SMALL_STATE(1294)] = 118366, + [SMALL_STATE(1295)] = 118427, + [SMALL_STATE(1296)] = 118488, + [SMALL_STATE(1297)] = 118549, + [SMALL_STATE(1298)] = 118610, + [SMALL_STATE(1299)] = 118660, + [SMALL_STATE(1300)] = 118707, + [SMALL_STATE(1301)] = 118754, + [SMALL_STATE(1302)] = 118801, + [SMALL_STATE(1303)] = 118848, + [SMALL_STATE(1304)] = 118895, + [SMALL_STATE(1305)] = 118942, + [SMALL_STATE(1306)] = 118989, + [SMALL_STATE(1307)] = 119036, + [SMALL_STATE(1308)] = 119083, + [SMALL_STATE(1309)] = 119130, + [SMALL_STATE(1310)] = 119177, + [SMALL_STATE(1311)] = 119224, + [SMALL_STATE(1312)] = 119271, + [SMALL_STATE(1313)] = 119318, + [SMALL_STATE(1314)] = 119365, + [SMALL_STATE(1315)] = 119412, + [SMALL_STATE(1316)] = 119459, + [SMALL_STATE(1317)] = 119506, + [SMALL_STATE(1318)] = 119553, + [SMALL_STATE(1319)] = 119600, + [SMALL_STATE(1320)] = 119647, + [SMALL_STATE(1321)] = 119694, + [SMALL_STATE(1322)] = 119741, + [SMALL_STATE(1323)] = 119788, + [SMALL_STATE(1324)] = 119835, + [SMALL_STATE(1325)] = 119882, + [SMALL_STATE(1326)] = 119929, + [SMALL_STATE(1327)] = 119976, + [SMALL_STATE(1328)] = 120023, + [SMALL_STATE(1329)] = 120070, + [SMALL_STATE(1330)] = 120117, + [SMALL_STATE(1331)] = 120164, + [SMALL_STATE(1332)] = 120211, + [SMALL_STATE(1333)] = 120258, + [SMALL_STATE(1334)] = 120305, + [SMALL_STATE(1335)] = 120352, + [SMALL_STATE(1336)] = 120399, + [SMALL_STATE(1337)] = 120446, + [SMALL_STATE(1338)] = 120493, + [SMALL_STATE(1339)] = 120540, + [SMALL_STATE(1340)] = 120587, + [SMALL_STATE(1341)] = 120634, + [SMALL_STATE(1342)] = 120681, + [SMALL_STATE(1343)] = 120728, + [SMALL_STATE(1344)] = 120775, + [SMALL_STATE(1345)] = 120822, + [SMALL_STATE(1346)] = 120869, + [SMALL_STATE(1347)] = 120916, + [SMALL_STATE(1348)] = 120963, + [SMALL_STATE(1349)] = 121010, + [SMALL_STATE(1350)] = 121057, + [SMALL_STATE(1351)] = 121104, + [SMALL_STATE(1352)] = 121151, + [SMALL_STATE(1353)] = 121198, + [SMALL_STATE(1354)] = 121245, + [SMALL_STATE(1355)] = 121292, + [SMALL_STATE(1356)] = 121339, + [SMALL_STATE(1357)] = 121386, + [SMALL_STATE(1358)] = 121433, + [SMALL_STATE(1359)] = 121480, + [SMALL_STATE(1360)] = 121527, + [SMALL_STATE(1361)] = 121574, + [SMALL_STATE(1362)] = 121621, + [SMALL_STATE(1363)] = 121668, + [SMALL_STATE(1364)] = 121715, + [SMALL_STATE(1365)] = 121762, + [SMALL_STATE(1366)] = 121809, + [SMALL_STATE(1367)] = 121856, + [SMALL_STATE(1368)] = 121903, + [SMALL_STATE(1369)] = 121950, + [SMALL_STATE(1370)] = 121997, + [SMALL_STATE(1371)] = 122044, + [SMALL_STATE(1372)] = 122091, + [SMALL_STATE(1373)] = 122138, + [SMALL_STATE(1374)] = 122185, + [SMALL_STATE(1375)] = 122232, + [SMALL_STATE(1376)] = 122279, + [SMALL_STATE(1377)] = 122326, + [SMALL_STATE(1378)] = 122373, + [SMALL_STATE(1379)] = 122420, + [SMALL_STATE(1380)] = 122467, + [SMALL_STATE(1381)] = 122514, + [SMALL_STATE(1382)] = 122561, + [SMALL_STATE(1383)] = 122608, + [SMALL_STATE(1384)] = 122655, + [SMALL_STATE(1385)] = 122702, + [SMALL_STATE(1386)] = 122749, + [SMALL_STATE(1387)] = 122796, + [SMALL_STATE(1388)] = 122843, + [SMALL_STATE(1389)] = 122890, + [SMALL_STATE(1390)] = 122937, + [SMALL_STATE(1391)] = 122984, + [SMALL_STATE(1392)] = 123031, + [SMALL_STATE(1393)] = 123078, + [SMALL_STATE(1394)] = 123125, + [SMALL_STATE(1395)] = 123176, + [SMALL_STATE(1396)] = 123223, + [SMALL_STATE(1397)] = 123270, + [SMALL_STATE(1398)] = 123317, + [SMALL_STATE(1399)] = 123364, + [SMALL_STATE(1400)] = 123411, + [SMALL_STATE(1401)] = 123458, + [SMALL_STATE(1402)] = 123505, + [SMALL_STATE(1403)] = 123556, + [SMALL_STATE(1404)] = 123603, + [SMALL_STATE(1405)] = 123650, + [SMALL_STATE(1406)] = 123697, + [SMALL_STATE(1407)] = 123744, + [SMALL_STATE(1408)] = 123791, + [SMALL_STATE(1409)] = 123838, + [SMALL_STATE(1410)] = 123885, + [SMALL_STATE(1411)] = 123932, + [SMALL_STATE(1412)] = 123979, + [SMALL_STATE(1413)] = 124026, + [SMALL_STATE(1414)] = 124073, + [SMALL_STATE(1415)] = 124120, + [SMALL_STATE(1416)] = 124167, + [SMALL_STATE(1417)] = 124214, + [SMALL_STATE(1418)] = 124261, + [SMALL_STATE(1419)] = 124308, + [SMALL_STATE(1420)] = 124355, + [SMALL_STATE(1421)] = 124427, + [SMALL_STATE(1422)] = 124499, + [SMALL_STATE(1423)] = 124571, + [SMALL_STATE(1424)] = 124643, + [SMALL_STATE(1425)] = 124715, + [SMALL_STATE(1426)] = 124787, + [SMALL_STATE(1427)] = 124859, + [SMALL_STATE(1428)] = 124931, + [SMALL_STATE(1429)] = 125003, + [SMALL_STATE(1430)] = 125075, + [SMALL_STATE(1431)] = 125147, + [SMALL_STATE(1432)] = 125219, + [SMALL_STATE(1433)] = 125291, + [SMALL_STATE(1434)] = 125363, + [SMALL_STATE(1435)] = 125435, + [SMALL_STATE(1436)] = 125507, + [SMALL_STATE(1437)] = 125579, + [SMALL_STATE(1438)] = 125651, + [SMALL_STATE(1439)] = 125723, + [SMALL_STATE(1440)] = 125795, + [SMALL_STATE(1441)] = 125864, + [SMALL_STATE(1442)] = 125908, + [SMALL_STATE(1443)] = 125952, + [SMALL_STATE(1444)] = 126002, + [SMALL_STATE(1445)] = 126046, + [SMALL_STATE(1446)] = 126090, + [SMALL_STATE(1447)] = 126134, + [SMALL_STATE(1448)] = 126178, + [SMALL_STATE(1449)] = 126222, + [SMALL_STATE(1450)] = 126266, + [SMALL_STATE(1451)] = 126310, + [SMALL_STATE(1452)] = 126354, + [SMALL_STATE(1453)] = 126398, + [SMALL_STATE(1454)] = 126442, + [SMALL_STATE(1455)] = 126486, + [SMALL_STATE(1456)] = 126530, + [SMALL_STATE(1457)] = 126574, + [SMALL_STATE(1458)] = 126618, + [SMALL_STATE(1459)] = 126662, + [SMALL_STATE(1460)] = 126706, + [SMALL_STATE(1461)] = 126750, + [SMALL_STATE(1462)] = 126794, + [SMALL_STATE(1463)] = 126838, + [SMALL_STATE(1464)] = 126882, + [SMALL_STATE(1465)] = 126926, + [SMALL_STATE(1466)] = 126970, + [SMALL_STATE(1467)] = 127014, + [SMALL_STATE(1468)] = 127058, + [SMALL_STATE(1469)] = 127102, + [SMALL_STATE(1470)] = 127146, + [SMALL_STATE(1471)] = 127190, + [SMALL_STATE(1472)] = 127234, + [SMALL_STATE(1473)] = 127278, + [SMALL_STATE(1474)] = 127322, + [SMALL_STATE(1475)] = 127366, + [SMALL_STATE(1476)] = 127410, + [SMALL_STATE(1477)] = 127454, + [SMALL_STATE(1478)] = 127498, + [SMALL_STATE(1479)] = 127542, + [SMALL_STATE(1480)] = 127586, + [SMALL_STATE(1481)] = 127630, + [SMALL_STATE(1482)] = 127674, + [SMALL_STATE(1483)] = 127718, + [SMALL_STATE(1484)] = 127762, + [SMALL_STATE(1485)] = 127806, + [SMALL_STATE(1486)] = 127850, + [SMALL_STATE(1487)] = 127894, + [SMALL_STATE(1488)] = 127938, + [SMALL_STATE(1489)] = 127982, + [SMALL_STATE(1490)] = 128026, + [SMALL_STATE(1491)] = 128070, + [SMALL_STATE(1492)] = 128114, + [SMALL_STATE(1493)] = 128158, + [SMALL_STATE(1494)] = 128202, + [SMALL_STATE(1495)] = 128246, + [SMALL_STATE(1496)] = 128290, + [SMALL_STATE(1497)] = 128334, + [SMALL_STATE(1498)] = 128378, + [SMALL_STATE(1499)] = 128422, + [SMALL_STATE(1500)] = 128466, + [SMALL_STATE(1501)] = 128510, + [SMALL_STATE(1502)] = 128554, + [SMALL_STATE(1503)] = 128598, + [SMALL_STATE(1504)] = 128642, + [SMALL_STATE(1505)] = 128686, + [SMALL_STATE(1506)] = 128730, + [SMALL_STATE(1507)] = 128774, + [SMALL_STATE(1508)] = 128818, + [SMALL_STATE(1509)] = 128862, + [SMALL_STATE(1510)] = 128906, + [SMALL_STATE(1511)] = 128950, + [SMALL_STATE(1512)] = 128994, + [SMALL_STATE(1513)] = 129038, + [SMALL_STATE(1514)] = 129082, + [SMALL_STATE(1515)] = 129126, + [SMALL_STATE(1516)] = 129170, + [SMALL_STATE(1517)] = 129214, + [SMALL_STATE(1518)] = 129258, + [SMALL_STATE(1519)] = 129302, + [SMALL_STATE(1520)] = 129346, + [SMALL_STATE(1521)] = 129390, + [SMALL_STATE(1522)] = 129434, + [SMALL_STATE(1523)] = 129478, + [SMALL_STATE(1524)] = 129522, + [SMALL_STATE(1525)] = 129566, + [SMALL_STATE(1526)] = 129610, + [SMALL_STATE(1527)] = 129654, + [SMALL_STATE(1528)] = 129698, + [SMALL_STATE(1529)] = 129742, + [SMALL_STATE(1530)] = 129786, + [SMALL_STATE(1531)] = 129830, + [SMALL_STATE(1532)] = 129874, + [SMALL_STATE(1533)] = 129918, + [SMALL_STATE(1534)] = 129964, + [SMALL_STATE(1535)] = 130008, + [SMALL_STATE(1536)] = 130052, + [SMALL_STATE(1537)] = 130096, + [SMALL_STATE(1538)] = 130140, + [SMALL_STATE(1539)] = 130184, + [SMALL_STATE(1540)] = 130228, + [SMALL_STATE(1541)] = 130272, + [SMALL_STATE(1542)] = 130316, + [SMALL_STATE(1543)] = 130360, + [SMALL_STATE(1544)] = 130404, + [SMALL_STATE(1545)] = 130448, + [SMALL_STATE(1546)] = 130492, + [SMALL_STATE(1547)] = 130536, + [SMALL_STATE(1548)] = 130580, + [SMALL_STATE(1549)] = 130624, + [SMALL_STATE(1550)] = 130668, + [SMALL_STATE(1551)] = 130712, + [SMALL_STATE(1552)] = 130756, + [SMALL_STATE(1553)] = 130800, + [SMALL_STATE(1554)] = 130844, + [SMALL_STATE(1555)] = 130888, + [SMALL_STATE(1556)] = 130932, + [SMALL_STATE(1557)] = 130976, + [SMALL_STATE(1558)] = 131024, + [SMALL_STATE(1559)] = 131068, + [SMALL_STATE(1560)] = 131112, + [SMALL_STATE(1561)] = 131156, + [SMALL_STATE(1562)] = 131200, + [SMALL_STATE(1563)] = 131244, + [SMALL_STATE(1564)] = 131292, + [SMALL_STATE(1565)] = 131341, + [SMALL_STATE(1566)] = 131385, + [SMALL_STATE(1567)] = 131427, + [SMALL_STATE(1568)] = 131468, + [SMALL_STATE(1569)] = 131509, + [SMALL_STATE(1570)] = 131550, + [SMALL_STATE(1571)] = 131591, + [SMALL_STATE(1572)] = 131632, + [SMALL_STATE(1573)] = 131673, + [SMALL_STATE(1574)] = 131714, + [SMALL_STATE(1575)] = 131755, + [SMALL_STATE(1576)] = 131796, + [SMALL_STATE(1577)] = 131837, + [SMALL_STATE(1578)] = 131878, + [SMALL_STATE(1579)] = 131919, + [SMALL_STATE(1580)] = 131960, + [SMALL_STATE(1581)] = 132001, + [SMALL_STATE(1582)] = 132042, + [SMALL_STATE(1583)] = 132083, + [SMALL_STATE(1584)] = 132124, + [SMALL_STATE(1585)] = 132165, + [SMALL_STATE(1586)] = 132206, + [SMALL_STATE(1587)] = 132247, + [SMALL_STATE(1588)] = 132288, + [SMALL_STATE(1589)] = 132329, + [SMALL_STATE(1590)] = 132370, + [SMALL_STATE(1591)] = 132411, + [SMALL_STATE(1592)] = 132452, + [SMALL_STATE(1593)] = 132493, + [SMALL_STATE(1594)] = 132534, + [SMALL_STATE(1595)] = 132575, + [SMALL_STATE(1596)] = 132616, + [SMALL_STATE(1597)] = 132657, + [SMALL_STATE(1598)] = 132698, + [SMALL_STATE(1599)] = 132739, + [SMALL_STATE(1600)] = 132780, + [SMALL_STATE(1601)] = 132821, + [SMALL_STATE(1602)] = 132862, + [SMALL_STATE(1603)] = 132903, + [SMALL_STATE(1604)] = 132944, + [SMALL_STATE(1605)] = 132985, + [SMALL_STATE(1606)] = 133026, + [SMALL_STATE(1607)] = 133067, + [SMALL_STATE(1608)] = 133108, + [SMALL_STATE(1609)] = 133149, + [SMALL_STATE(1610)] = 133190, + [SMALL_STATE(1611)] = 133231, + [SMALL_STATE(1612)] = 133272, + [SMALL_STATE(1613)] = 133313, + [SMALL_STATE(1614)] = 133354, + [SMALL_STATE(1615)] = 133395, + [SMALL_STATE(1616)] = 133436, + [SMALL_STATE(1617)] = 133477, + [SMALL_STATE(1618)] = 133518, + [SMALL_STATE(1619)] = 133559, + [SMALL_STATE(1620)] = 133600, + [SMALL_STATE(1621)] = 133641, + [SMALL_STATE(1622)] = 133682, + [SMALL_STATE(1623)] = 133723, + [SMALL_STATE(1624)] = 133764, + [SMALL_STATE(1625)] = 133805, + [SMALL_STATE(1626)] = 133846, + [SMALL_STATE(1627)] = 133887, + [SMALL_STATE(1628)] = 133928, + [SMALL_STATE(1629)] = 133969, + [SMALL_STATE(1630)] = 134010, + [SMALL_STATE(1631)] = 134051, + [SMALL_STATE(1632)] = 134092, + [SMALL_STATE(1633)] = 134133, + [SMALL_STATE(1634)] = 134174, + [SMALL_STATE(1635)] = 134215, + [SMALL_STATE(1636)] = 134256, + [SMALL_STATE(1637)] = 134297, + [SMALL_STATE(1638)] = 134338, + [SMALL_STATE(1639)] = 134379, + [SMALL_STATE(1640)] = 134420, + [SMALL_STATE(1641)] = 134461, + [SMALL_STATE(1642)] = 134502, + [SMALL_STATE(1643)] = 134543, + [SMALL_STATE(1644)] = 134584, + [SMALL_STATE(1645)] = 134625, + [SMALL_STATE(1646)] = 134666, + [SMALL_STATE(1647)] = 134707, + [SMALL_STATE(1648)] = 134748, + [SMALL_STATE(1649)] = 134789, + [SMALL_STATE(1650)] = 134830, + [SMALL_STATE(1651)] = 134871, + [SMALL_STATE(1652)] = 134912, + [SMALL_STATE(1653)] = 134953, + [SMALL_STATE(1654)] = 134994, + [SMALL_STATE(1655)] = 135035, + [SMALL_STATE(1656)] = 135076, + [SMALL_STATE(1657)] = 135117, + [SMALL_STATE(1658)] = 135158, + [SMALL_STATE(1659)] = 135199, + [SMALL_STATE(1660)] = 135240, + [SMALL_STATE(1661)] = 135281, + [SMALL_STATE(1662)] = 135322, + [SMALL_STATE(1663)] = 135363, + [SMALL_STATE(1664)] = 135404, + [SMALL_STATE(1665)] = 135445, + [SMALL_STATE(1666)] = 135486, + [SMALL_STATE(1667)] = 135527, + [SMALL_STATE(1668)] = 135568, + [SMALL_STATE(1669)] = 135609, + [SMALL_STATE(1670)] = 135650, + [SMALL_STATE(1671)] = 135691, + [SMALL_STATE(1672)] = 135732, + [SMALL_STATE(1673)] = 135773, + [SMALL_STATE(1674)] = 135814, + [SMALL_STATE(1675)] = 135855, + [SMALL_STATE(1676)] = 135896, + [SMALL_STATE(1677)] = 135937, + [SMALL_STATE(1678)] = 135978, + [SMALL_STATE(1679)] = 136019, + [SMALL_STATE(1680)] = 136060, + [SMALL_STATE(1681)] = 136101, + [SMALL_STATE(1682)] = 136142, + [SMALL_STATE(1683)] = 136183, + [SMALL_STATE(1684)] = 136224, + [SMALL_STATE(1685)] = 136265, + [SMALL_STATE(1686)] = 136306, + [SMALL_STATE(1687)] = 136347, + [SMALL_STATE(1688)] = 136388, + [SMALL_STATE(1689)] = 136429, + [SMALL_STATE(1690)] = 136470, + [SMALL_STATE(1691)] = 136511, + [SMALL_STATE(1692)] = 136552, + [SMALL_STATE(1693)] = 136593, + [SMALL_STATE(1694)] = 136634, + [SMALL_STATE(1695)] = 136675, + [SMALL_STATE(1696)] = 136716, + [SMALL_STATE(1697)] = 136757, + [SMALL_STATE(1698)] = 136798, + [SMALL_STATE(1699)] = 136839, + [SMALL_STATE(1700)] = 136880, + [SMALL_STATE(1701)] = 136921, + [SMALL_STATE(1702)] = 136962, + [SMALL_STATE(1703)] = 137003, + [SMALL_STATE(1704)] = 137044, + [SMALL_STATE(1705)] = 137085, + [SMALL_STATE(1706)] = 137126, + [SMALL_STATE(1707)] = 137167, + [SMALL_STATE(1708)] = 137208, + [SMALL_STATE(1709)] = 137249, + [SMALL_STATE(1710)] = 137290, + [SMALL_STATE(1711)] = 137331, + [SMALL_STATE(1712)] = 137372, + [SMALL_STATE(1713)] = 137431, + [SMALL_STATE(1714)] = 137472, + [SMALL_STATE(1715)] = 137513, + [SMALL_STATE(1716)] = 137554, + [SMALL_STATE(1717)] = 137595, + [SMALL_STATE(1718)] = 137636, + [SMALL_STATE(1719)] = 137677, + [SMALL_STATE(1720)] = 137718, + [SMALL_STATE(1721)] = 137759, + [SMALL_STATE(1722)] = 137800, + [SMALL_STATE(1723)] = 137841, + [SMALL_STATE(1724)] = 137882, + [SMALL_STATE(1725)] = 137923, + [SMALL_STATE(1726)] = 137964, + [SMALL_STATE(1727)] = 138005, + [SMALL_STATE(1728)] = 138046, + [SMALL_STATE(1729)] = 138087, + [SMALL_STATE(1730)] = 138128, + [SMALL_STATE(1731)] = 138169, + [SMALL_STATE(1732)] = 138210, + [SMALL_STATE(1733)] = 138251, + [SMALL_STATE(1734)] = 138292, + [SMALL_STATE(1735)] = 138333, + [SMALL_STATE(1736)] = 138374, + [SMALL_STATE(1737)] = 138415, + [SMALL_STATE(1738)] = 138456, + [SMALL_STATE(1739)] = 138497, + [SMALL_STATE(1740)] = 138538, + [SMALL_STATE(1741)] = 138579, + [SMALL_STATE(1742)] = 138620, + [SMALL_STATE(1743)] = 138661, + [SMALL_STATE(1744)] = 138702, + [SMALL_STATE(1745)] = 138743, + [SMALL_STATE(1746)] = 138784, + [SMALL_STATE(1747)] = 138825, + [SMALL_STATE(1748)] = 138866, + [SMALL_STATE(1749)] = 138907, + [SMALL_STATE(1750)] = 138948, + [SMALL_STATE(1751)] = 138989, + [SMALL_STATE(1752)] = 139030, + [SMALL_STATE(1753)] = 139071, + [SMALL_STATE(1754)] = 139112, + [SMALL_STATE(1755)] = 139153, + [SMALL_STATE(1756)] = 139194, + [SMALL_STATE(1757)] = 139235, + [SMALL_STATE(1758)] = 139276, + [SMALL_STATE(1759)] = 139317, + [SMALL_STATE(1760)] = 139358, + [SMALL_STATE(1761)] = 139399, + [SMALL_STATE(1762)] = 139440, + [SMALL_STATE(1763)] = 139481, + [SMALL_STATE(1764)] = 139522, + [SMALL_STATE(1765)] = 139567, + [SMALL_STATE(1766)] = 139608, + [SMALL_STATE(1767)] = 139649, + [SMALL_STATE(1768)] = 139690, + [SMALL_STATE(1769)] = 139731, + [SMALL_STATE(1770)] = 139772, + [SMALL_STATE(1771)] = 139813, + [SMALL_STATE(1772)] = 139854, + [SMALL_STATE(1773)] = 139895, + [SMALL_STATE(1774)] = 139936, + [SMALL_STATE(1775)] = 139977, + [SMALL_STATE(1776)] = 140018, + [SMALL_STATE(1777)] = 140059, + [SMALL_STATE(1778)] = 140100, + [SMALL_STATE(1779)] = 140141, + [SMALL_STATE(1780)] = 140182, + [SMALL_STATE(1781)] = 140223, + [SMALL_STATE(1782)] = 140264, + [SMALL_STATE(1783)] = 140305, + [SMALL_STATE(1784)] = 140350, + [SMALL_STATE(1785)] = 140391, + [SMALL_STATE(1786)] = 140432, + [SMALL_STATE(1787)] = 140473, + [SMALL_STATE(1788)] = 140514, + [SMALL_STATE(1789)] = 140555, + [SMALL_STATE(1790)] = 140596, + [SMALL_STATE(1791)] = 140637, + [SMALL_STATE(1792)] = 140678, + [SMALL_STATE(1793)] = 140719, + [SMALL_STATE(1794)] = 140760, + [SMALL_STATE(1795)] = 140801, + [SMALL_STATE(1796)] = 140842, + [SMALL_STATE(1797)] = 140883, + [SMALL_STATE(1798)] = 140924, + [SMALL_STATE(1799)] = 140965, + [SMALL_STATE(1800)] = 141006, + [SMALL_STATE(1801)] = 141047, + [SMALL_STATE(1802)] = 141088, + [SMALL_STATE(1803)] = 141129, + [SMALL_STATE(1804)] = 141170, + [SMALL_STATE(1805)] = 141211, + [SMALL_STATE(1806)] = 141252, + [SMALL_STATE(1807)] = 141293, + [SMALL_STATE(1808)] = 141334, + [SMALL_STATE(1809)] = 141375, + [SMALL_STATE(1810)] = 141416, + [SMALL_STATE(1811)] = 141457, + [SMALL_STATE(1812)] = 141498, + [SMALL_STATE(1813)] = 141539, + [SMALL_STATE(1814)] = 141580, + [SMALL_STATE(1815)] = 141621, + [SMALL_STATE(1816)] = 141662, + [SMALL_STATE(1817)] = 141703, + [SMALL_STATE(1818)] = 141744, + [SMALL_STATE(1819)] = 141785, + [SMALL_STATE(1820)] = 141826, + [SMALL_STATE(1821)] = 141867, + [SMALL_STATE(1822)] = 141908, + [SMALL_STATE(1823)] = 141949, + [SMALL_STATE(1824)] = 141990, + [SMALL_STATE(1825)] = 142031, + [SMALL_STATE(1826)] = 142071, + [SMALL_STATE(1827)] = 142111, + [SMALL_STATE(1828)] = 142151, + [SMALL_STATE(1829)] = 142193, + [SMALL_STATE(1830)] = 142233, + [SMALL_STATE(1831)] = 142273, + [SMALL_STATE(1832)] = 142313, + [SMALL_STATE(1833)] = 142353, + [SMALL_STATE(1834)] = 142395, + [SMALL_STATE(1835)] = 142432, + [SMALL_STATE(1836)] = 142469, + [SMALL_STATE(1837)] = 142506, + [SMALL_STATE(1838)] = 142543, + [SMALL_STATE(1839)] = 142580, + [SMALL_STATE(1840)] = 142617, + [SMALL_STATE(1841)] = 142654, + [SMALL_STATE(1842)] = 142691, + [SMALL_STATE(1843)] = 142728, + [SMALL_STATE(1844)] = 142765, + [SMALL_STATE(1845)] = 142812, + [SMALL_STATE(1846)] = 142849, + [SMALL_STATE(1847)] = 142886, + [SMALL_STATE(1848)] = 142933, + [SMALL_STATE(1849)] = 142970, + [SMALL_STATE(1850)] = 143007, + [SMALL_STATE(1851)] = 143044, + [SMALL_STATE(1852)] = 143081, + [SMALL_STATE(1853)] = 143117, + [SMALL_STATE(1854)] = 143153, + [SMALL_STATE(1855)] = 143189, + [SMALL_STATE(1856)] = 143225, + [SMALL_STATE(1857)] = 143261, + [SMALL_STATE(1858)] = 143297, + [SMALL_STATE(1859)] = 143333, + [SMALL_STATE(1860)] = 143369, + [SMALL_STATE(1861)] = 143405, + [SMALL_STATE(1862)] = 143441, + [SMALL_STATE(1863)] = 143477, + [SMALL_STATE(1864)] = 143513, + [SMALL_STATE(1865)] = 143549, + [SMALL_STATE(1866)] = 143585, + [SMALL_STATE(1867)] = 143621, + [SMALL_STATE(1868)] = 143657, + [SMALL_STATE(1869)] = 143693, + [SMALL_STATE(1870)] = 143729, + [SMALL_STATE(1871)] = 143765, + [SMALL_STATE(1872)] = 143801, + [SMALL_STATE(1873)] = 143837, + [SMALL_STATE(1874)] = 143873, + [SMALL_STATE(1875)] = 143909, + [SMALL_STATE(1876)] = 143945, + [SMALL_STATE(1877)] = 143981, + [SMALL_STATE(1878)] = 144017, + [SMALL_STATE(1879)] = 144053, + [SMALL_STATE(1880)] = 144089, + [SMALL_STATE(1881)] = 144125, + [SMALL_STATE(1882)] = 144161, + [SMALL_STATE(1883)] = 144197, + [SMALL_STATE(1884)] = 144233, + [SMALL_STATE(1885)] = 144269, + [SMALL_STATE(1886)] = 144305, + [SMALL_STATE(1887)] = 144341, + [SMALL_STATE(1888)] = 144377, + [SMALL_STATE(1889)] = 144413, + [SMALL_STATE(1890)] = 144449, + [SMALL_STATE(1891)] = 144485, + [SMALL_STATE(1892)] = 144521, + [SMALL_STATE(1893)] = 144557, + [SMALL_STATE(1894)] = 144593, + [SMALL_STATE(1895)] = 144629, + [SMALL_STATE(1896)] = 144665, + [SMALL_STATE(1897)] = 144701, + [SMALL_STATE(1898)] = 144737, + [SMALL_STATE(1899)] = 144773, + [SMALL_STATE(1900)] = 144809, + [SMALL_STATE(1901)] = 144845, + [SMALL_STATE(1902)] = 144881, + [SMALL_STATE(1903)] = 144917, + [SMALL_STATE(1904)] = 144953, + [SMALL_STATE(1905)] = 144989, + [SMALL_STATE(1906)] = 145025, + [SMALL_STATE(1907)] = 145061, + [SMALL_STATE(1908)] = 145097, + [SMALL_STATE(1909)] = 145133, + [SMALL_STATE(1910)] = 145169, + [SMALL_STATE(1911)] = 145205, + [SMALL_STATE(1912)] = 145241, + [SMALL_STATE(1913)] = 145277, + [SMALL_STATE(1914)] = 145313, + [SMALL_STATE(1915)] = 145349, + [SMALL_STATE(1916)] = 145385, + [SMALL_STATE(1917)] = 145421, + [SMALL_STATE(1918)] = 145457, + [SMALL_STATE(1919)] = 145493, + [SMALL_STATE(1920)] = 145529, + [SMALL_STATE(1921)] = 145565, + [SMALL_STATE(1922)] = 145601, + [SMALL_STATE(1923)] = 145637, + [SMALL_STATE(1924)] = 145673, + [SMALL_STATE(1925)] = 145709, + [SMALL_STATE(1926)] = 145745, + [SMALL_STATE(1927)] = 145781, + [SMALL_STATE(1928)] = 145817, + [SMALL_STATE(1929)] = 145853, + [SMALL_STATE(1930)] = 145889, + [SMALL_STATE(1931)] = 145925, + [SMALL_STATE(1932)] = 145961, + [SMALL_STATE(1933)] = 145997, + [SMALL_STATE(1934)] = 146033, + [SMALL_STATE(1935)] = 146069, + [SMALL_STATE(1936)] = 146105, + [SMALL_STATE(1937)] = 146141, + [SMALL_STATE(1938)] = 146177, + [SMALL_STATE(1939)] = 146213, + [SMALL_STATE(1940)] = 146249, + [SMALL_STATE(1941)] = 146285, + [SMALL_STATE(1942)] = 146321, + [SMALL_STATE(1943)] = 146357, + [SMALL_STATE(1944)] = 146393, + [SMALL_STATE(1945)] = 146429, + [SMALL_STATE(1946)] = 146465, + [SMALL_STATE(1947)] = 146501, + [SMALL_STATE(1948)] = 146537, + [SMALL_STATE(1949)] = 146573, + [SMALL_STATE(1950)] = 146609, + [SMALL_STATE(1951)] = 146645, + [SMALL_STATE(1952)] = 146681, + [SMALL_STATE(1953)] = 146717, + [SMALL_STATE(1954)] = 146753, + [SMALL_STATE(1955)] = 146790, + [SMALL_STATE(1956)] = 146827, + [SMALL_STATE(1957)] = 146875, + [SMALL_STATE(1958)] = 146923, + [SMALL_STATE(1959)] = 146956, + [SMALL_STATE(1960)] = 146989, + [SMALL_STATE(1961)] = 147022, + [SMALL_STATE(1962)] = 147055, + [SMALL_STATE(1963)] = 147088, + [SMALL_STATE(1964)] = 147121, + [SMALL_STATE(1965)] = 147154, + [SMALL_STATE(1966)] = 147187, + [SMALL_STATE(1967)] = 147220, + [SMALL_STATE(1968)] = 147253, + [SMALL_STATE(1969)] = 147286, + [SMALL_STATE(1970)] = 147319, + [SMALL_STATE(1971)] = 147352, + [SMALL_STATE(1972)] = 147385, + [SMALL_STATE(1973)] = 147418, + [SMALL_STATE(1974)] = 147451, + [SMALL_STATE(1975)] = 147484, + [SMALL_STATE(1976)] = 147517, + [SMALL_STATE(1977)] = 147550, + [SMALL_STATE(1978)] = 147583, + [SMALL_STATE(1979)] = 147616, + [SMALL_STATE(1980)] = 147649, + [SMALL_STATE(1981)] = 147682, + [SMALL_STATE(1982)] = 147715, + [SMALL_STATE(1983)] = 147748, + [SMALL_STATE(1984)] = 147781, + [SMALL_STATE(1985)] = 147814, + [SMALL_STATE(1986)] = 147847, + [SMALL_STATE(1987)] = 147880, + [SMALL_STATE(1988)] = 147913, + [SMALL_STATE(1989)] = 147946, + [SMALL_STATE(1990)] = 147979, + [SMALL_STATE(1991)] = 148012, + [SMALL_STATE(1992)] = 148045, + [SMALL_STATE(1993)] = 148078, + [SMALL_STATE(1994)] = 148111, + [SMALL_STATE(1995)] = 148144, + [SMALL_STATE(1996)] = 148177, + [SMALL_STATE(1997)] = 148210, + [SMALL_STATE(1998)] = 148243, + [SMALL_STATE(1999)] = 148276, + [SMALL_STATE(2000)] = 148309, + [SMALL_STATE(2001)] = 148342, + [SMALL_STATE(2002)] = 148375, + [SMALL_STATE(2003)] = 148408, + [SMALL_STATE(2004)] = 148441, + [SMALL_STATE(2005)] = 148474, + [SMALL_STATE(2006)] = 148507, + [SMALL_STATE(2007)] = 148540, + [SMALL_STATE(2008)] = 148573, + [SMALL_STATE(2009)] = 148606, + [SMALL_STATE(2010)] = 148639, + [SMALL_STATE(2011)] = 148672, + [SMALL_STATE(2012)] = 148705, + [SMALL_STATE(2013)] = 148738, + [SMALL_STATE(2014)] = 148771, + [SMALL_STATE(2015)] = 148804, + [SMALL_STATE(2016)] = 148837, + [SMALL_STATE(2017)] = 148870, + [SMALL_STATE(2018)] = 148903, + [SMALL_STATE(2019)] = 148936, + [SMALL_STATE(2020)] = 148969, + [SMALL_STATE(2021)] = 149002, + [SMALL_STATE(2022)] = 149035, + [SMALL_STATE(2023)] = 149068, + [SMALL_STATE(2024)] = 149101, + [SMALL_STATE(2025)] = 149134, + [SMALL_STATE(2026)] = 149167, + [SMALL_STATE(2027)] = 149200, + [SMALL_STATE(2028)] = 149233, + [SMALL_STATE(2029)] = 149266, + [SMALL_STATE(2030)] = 149299, + [SMALL_STATE(2031)] = 149332, + [SMALL_STATE(2032)] = 149365, + [SMALL_STATE(2033)] = 149398, + [SMALL_STATE(2034)] = 149431, + [SMALL_STATE(2035)] = 149464, + [SMALL_STATE(2036)] = 149497, + [SMALL_STATE(2037)] = 149530, + [SMALL_STATE(2038)] = 149563, + [SMALL_STATE(2039)] = 149596, + [SMALL_STATE(2040)] = 149629, + [SMALL_STATE(2041)] = 149662, + [SMALL_STATE(2042)] = 149695, + [SMALL_STATE(2043)] = 149728, + [SMALL_STATE(2044)] = 149761, + [SMALL_STATE(2045)] = 149794, + [SMALL_STATE(2046)] = 149827, + [SMALL_STATE(2047)] = 149860, + [SMALL_STATE(2048)] = 149893, + [SMALL_STATE(2049)] = 149926, + [SMALL_STATE(2050)] = 149959, + [SMALL_STATE(2051)] = 149992, + [SMALL_STATE(2052)] = 150025, + [SMALL_STATE(2053)] = 150058, + [SMALL_STATE(2054)] = 150091, + [SMALL_STATE(2055)] = 150124, + [SMALL_STATE(2056)] = 150157, + [SMALL_STATE(2057)] = 150190, + [SMALL_STATE(2058)] = 150223, + [SMALL_STATE(2059)] = 150256, + [SMALL_STATE(2060)] = 150289, + [SMALL_STATE(2061)] = 150322, + [SMALL_STATE(2062)] = 150355, + [SMALL_STATE(2063)] = 150388, + [SMALL_STATE(2064)] = 150421, + [SMALL_STATE(2065)] = 150454, + [SMALL_STATE(2066)] = 150487, + [SMALL_STATE(2067)] = 150520, + [SMALL_STATE(2068)] = 150553, + [SMALL_STATE(2069)] = 150586, + [SMALL_STATE(2070)] = 150619, + [SMALL_STATE(2071)] = 150652, + [SMALL_STATE(2072)] = 150685, + [SMALL_STATE(2073)] = 150718, + [SMALL_STATE(2074)] = 150751, + [SMALL_STATE(2075)] = 150784, + [SMALL_STATE(2076)] = 150817, + [SMALL_STATE(2077)] = 150850, + [SMALL_STATE(2078)] = 150883, + [SMALL_STATE(2079)] = 150916, + [SMALL_STATE(2080)] = 150949, + [SMALL_STATE(2081)] = 150982, + [SMALL_STATE(2082)] = 151015, + [SMALL_STATE(2083)] = 151048, + [SMALL_STATE(2084)] = 151081, + [SMALL_STATE(2085)] = 151114, + [SMALL_STATE(2086)] = 151147, + [SMALL_STATE(2087)] = 151180, + [SMALL_STATE(2088)] = 151213, + [SMALL_STATE(2089)] = 151246, + [SMALL_STATE(2090)] = 151294, + [SMALL_STATE(2091)] = 151342, + [SMALL_STATE(2092)] = 151390, + [SMALL_STATE(2093)] = 151438, + [SMALL_STATE(2094)] = 151486, + [SMALL_STATE(2095)] = 151534, + [SMALL_STATE(2096)] = 151582, + [SMALL_STATE(2097)] = 151630, + [SMALL_STATE(2098)] = 151678, + [SMALL_STATE(2099)] = 151726, + [SMALL_STATE(2100)] = 151774, + [SMALL_STATE(2101)] = 151822, + [SMALL_STATE(2102)] = 151853, + [SMALL_STATE(2103)] = 151884, + [SMALL_STATE(2104)] = 151950, + [SMALL_STATE(2105)] = 152012, + [SMALL_STATE(2106)] = 152054, + [SMALL_STATE(2107)] = 152116, + [SMALL_STATE(2108)] = 152182, + [SMALL_STATE(2109)] = 152248, + [SMALL_STATE(2110)] = 152314, + [SMALL_STATE(2111)] = 152376, + [SMALL_STATE(2112)] = 152438, + [SMALL_STATE(2113)] = 152500, + [SMALL_STATE(2114)] = 152562, + [SMALL_STATE(2115)] = 152624, + [SMALL_STATE(2116)] = 152686, + [SMALL_STATE(2117)] = 152723, + [SMALL_STATE(2118)] = 152757, + [SMALL_STATE(2119)] = 152787, + [SMALL_STATE(2120)] = 152821, + [SMALL_STATE(2121)] = 152850, + [SMALL_STATE(2122)] = 152913, + [SMALL_STATE(2123)] = 152942, + [SMALL_STATE(2124)] = 152971, + [SMALL_STATE(2125)] = 153000, + [SMALL_STATE(2126)] = 153029, + [SMALL_STATE(2127)] = 153058, + [SMALL_STATE(2128)] = 153087, + [SMALL_STATE(2129)] = 153116, + [SMALL_STATE(2130)] = 153145, + [SMALL_STATE(2131)] = 153174, + [SMALL_STATE(2132)] = 153203, + [SMALL_STATE(2133)] = 153232, + [SMALL_STATE(2134)] = 153295, + [SMALL_STATE(2135)] = 153358, + [SMALL_STATE(2136)] = 153387, + [SMALL_STATE(2137)] = 153450, + [SMALL_STATE(2138)] = 153513, + [SMALL_STATE(2139)] = 153576, + [SMALL_STATE(2140)] = 153605, + [SMALL_STATE(2141)] = 153634, + [SMALL_STATE(2142)] = 153663, + [SMALL_STATE(2143)] = 153692, + [SMALL_STATE(2144)] = 153721, + [SMALL_STATE(2145)] = 153750, + [SMALL_STATE(2146)] = 153779, + [SMALL_STATE(2147)] = 153842, + [SMALL_STATE(2148)] = 153871, + [SMALL_STATE(2149)] = 153900, + [SMALL_STATE(2150)] = 153929, + [SMALL_STATE(2151)] = 153992, + [SMALL_STATE(2152)] = 154055, + [SMALL_STATE(2153)] = 154118, + [SMALL_STATE(2154)] = 154181, + [SMALL_STATE(2155)] = 154244, + [SMALL_STATE(2156)] = 154307, + [SMALL_STATE(2157)] = 154370, + [SMALL_STATE(2158)] = 154399, + [SMALL_STATE(2159)] = 154428, + [SMALL_STATE(2160)] = 154457, + [SMALL_STATE(2161)] = 154488, + [SMALL_STATE(2162)] = 154540, + [SMALL_STATE(2163)] = 154592, + [SMALL_STATE(2164)] = 154620, + [SMALL_STATE(2165)] = 154648, + [SMALL_STATE(2166)] = 154676, + [SMALL_STATE(2167)] = 154704, + [SMALL_STATE(2168)] = 154732, + [SMALL_STATE(2169)] = 154760, + [SMALL_STATE(2170)] = 154788, + [SMALL_STATE(2171)] = 154816, + [SMALL_STATE(2172)] = 154844, + [SMALL_STATE(2173)] = 154872, + [SMALL_STATE(2174)] = 154924, + [SMALL_STATE(2175)] = 154976, + [SMALL_STATE(2176)] = 155028, + [SMALL_STATE(2177)] = 155080, + [SMALL_STATE(2178)] = 155132, + [SMALL_STATE(2179)] = 155160, + [SMALL_STATE(2180)] = 155188, + [SMALL_STATE(2181)] = 155216, + [SMALL_STATE(2182)] = 155244, + [SMALL_STATE(2183)] = 155272, + [SMALL_STATE(2184)] = 155300, + [SMALL_STATE(2185)] = 155328, + [SMALL_STATE(2186)] = 155380, + [SMALL_STATE(2187)] = 155408, + [SMALL_STATE(2188)] = 155436, + [SMALL_STATE(2189)] = 155488, + [SMALL_STATE(2190)] = 155516, + [SMALL_STATE(2191)] = 155568, + [SMALL_STATE(2192)] = 155596, + [SMALL_STATE(2193)] = 155624, + [SMALL_STATE(2194)] = 155676, + [SMALL_STATE(2195)] = 155704, + [SMALL_STATE(2196)] = 155732, + [SMALL_STATE(2197)] = 155760, + [SMALL_STATE(2198)] = 155812, + [SMALL_STATE(2199)] = 155863, + [SMALL_STATE(2200)] = 155914, + [SMALL_STATE(2201)] = 155965, + [SMALL_STATE(2202)] = 156016, + [SMALL_STATE(2203)] = 156049, + [SMALL_STATE(2204)] = 156098, + [SMALL_STATE(2205)] = 156131, + [SMALL_STATE(2206)] = 156164, + [SMALL_STATE(2207)] = 156197, + [SMALL_STATE(2208)] = 156248, + [SMALL_STATE(2209)] = 156281, + [SMALL_STATE(2210)] = 156332, + [SMALL_STATE(2211)] = 156383, + [SMALL_STATE(2212)] = 156434, + [SMALL_STATE(2213)] = 156485, + [SMALL_STATE(2214)] = 156528, + [SMALL_STATE(2215)] = 156579, + [SMALL_STATE(2216)] = 156630, + [SMALL_STATE(2217)] = 156681, + [SMALL_STATE(2218)] = 156732, + [SMALL_STATE(2219)] = 156783, + [SMALL_STATE(2220)] = 156834, + [SMALL_STATE(2221)] = 156885, + [SMALL_STATE(2222)] = 156934, + [SMALL_STATE(2223)] = 156964, + [SMALL_STATE(2224)] = 156994, + [SMALL_STATE(2225)] = 157024, + [SMALL_STATE(2226)] = 157049, + [SMALL_STATE(2227)] = 157074, + [SMALL_STATE(2228)] = 157099, + [SMALL_STATE(2229)] = 157136, + [SMALL_STATE(2230)] = 157161, + [SMALL_STATE(2231)] = 157186, + [SMALL_STATE(2232)] = 157213, + [SMALL_STATE(2233)] = 157238, + [SMALL_STATE(2234)] = 157263, + [SMALL_STATE(2235)] = 157288, + [SMALL_STATE(2236)] = 157312, + [SMALL_STATE(2237)] = 157340, + [SMALL_STATE(2238)] = 157362, + [SMALL_STATE(2239)] = 157386, + [SMALL_STATE(2240)] = 157407, + [SMALL_STATE(2241)] = 157428, + [SMALL_STATE(2242)] = 157449, + [SMALL_STATE(2243)] = 157470, + [SMALL_STATE(2244)] = 157491, + [SMALL_STATE(2245)] = 157512, + [SMALL_STATE(2246)] = 157533, + [SMALL_STATE(2247)] = 157554, + [SMALL_STATE(2248)] = 157575, + [SMALL_STATE(2249)] = 157596, + [SMALL_STATE(2250)] = 157617, + [SMALL_STATE(2251)] = 157638, + [SMALL_STATE(2252)] = 157659, + [SMALL_STATE(2253)] = 157680, + [SMALL_STATE(2254)] = 157701, + [SMALL_STATE(2255)] = 157722, + [SMALL_STATE(2256)] = 157743, + [SMALL_STATE(2257)] = 157764, + [SMALL_STATE(2258)] = 157785, + [SMALL_STATE(2259)] = 157806, + [SMALL_STATE(2260)] = 157827, + [SMALL_STATE(2261)] = 157848, + [SMALL_STATE(2262)] = 157869, + [SMALL_STATE(2263)] = 157890, + [SMALL_STATE(2264)] = 157911, + [SMALL_STATE(2265)] = 157932, + [SMALL_STATE(2266)] = 157953, + [SMALL_STATE(2267)] = 157974, + [SMALL_STATE(2268)] = 157995, + [SMALL_STATE(2269)] = 158016, + [SMALL_STATE(2270)] = 158037, + [SMALL_STATE(2271)] = 158058, + [SMALL_STATE(2272)] = 158079, + [SMALL_STATE(2273)] = 158100, + [SMALL_STATE(2274)] = 158121, + [SMALL_STATE(2275)] = 158142, + [SMALL_STATE(2276)] = 158169, + [SMALL_STATE(2277)] = 158190, + [SMALL_STATE(2278)] = 158211, + [SMALL_STATE(2279)] = 158232, + [SMALL_STATE(2280)] = 158253, + [SMALL_STATE(2281)] = 158274, + [SMALL_STATE(2282)] = 158295, + [SMALL_STATE(2283)] = 158316, + [SMALL_STATE(2284)] = 158337, + [SMALL_STATE(2285)] = 158358, + [SMALL_STATE(2286)] = 158379, + [SMALL_STATE(2287)] = 158400, + [SMALL_STATE(2288)] = 158421, + [SMALL_STATE(2289)] = 158442, + [SMALL_STATE(2290)] = 158463, + [SMALL_STATE(2291)] = 158484, + [SMALL_STATE(2292)] = 158509, + [SMALL_STATE(2293)] = 158530, + [SMALL_STATE(2294)] = 158551, + [SMALL_STATE(2295)] = 158572, + [SMALL_STATE(2296)] = 158593, + [SMALL_STATE(2297)] = 158614, + [SMALL_STATE(2298)] = 158635, + [SMALL_STATE(2299)] = 158656, + [SMALL_STATE(2300)] = 158677, + [SMALL_STATE(2301)] = 158698, + [SMALL_STATE(2302)] = 158719, + [SMALL_STATE(2303)] = 158740, + [SMALL_STATE(2304)] = 158761, + [SMALL_STATE(2305)] = 158782, + [SMALL_STATE(2306)] = 158803, + [SMALL_STATE(2307)] = 158824, + [SMALL_STATE(2308)] = 158845, + [SMALL_STATE(2309)] = 158866, + [SMALL_STATE(2310)] = 158887, + [SMALL_STATE(2311)] = 158908, + [SMALL_STATE(2312)] = 158929, + [SMALL_STATE(2313)] = 158950, + [SMALL_STATE(2314)] = 158971, + [SMALL_STATE(2315)] = 158992, + [SMALL_STATE(2316)] = 159013, + [SMALL_STATE(2317)] = 159034, + [SMALL_STATE(2318)] = 159055, + [SMALL_STATE(2319)] = 159076, + [SMALL_STATE(2320)] = 159097, + [SMALL_STATE(2321)] = 159118, + [SMALL_STATE(2322)] = 159139, + [SMALL_STATE(2323)] = 159160, + [SMALL_STATE(2324)] = 159181, + [SMALL_STATE(2325)] = 159202, + [SMALL_STATE(2326)] = 159223, + [SMALL_STATE(2327)] = 159244, + [SMALL_STATE(2328)] = 159265, + [SMALL_STATE(2329)] = 159286, + [SMALL_STATE(2330)] = 159307, + [SMALL_STATE(2331)] = 159328, + [SMALL_STATE(2332)] = 159349, + [SMALL_STATE(2333)] = 159370, + [SMALL_STATE(2334)] = 159391, + [SMALL_STATE(2335)] = 159412, + [SMALL_STATE(2336)] = 159433, + [SMALL_STATE(2337)] = 159457, + [SMALL_STATE(2338)] = 159490, + [SMALL_STATE(2339)] = 159519, + [SMALL_STATE(2340)] = 159552, + [SMALL_STATE(2341)] = 159585, + [SMALL_STATE(2342)] = 159614, + [SMALL_STATE(2343)] = 159643, + [SMALL_STATE(2344)] = 159664, + [SMALL_STATE(2345)] = 159697, + [SMALL_STATE(2346)] = 159730, + [SMALL_STATE(2347)] = 159759, + [SMALL_STATE(2348)] = 159782, + [SMALL_STATE(2349)] = 159811, + [SMALL_STATE(2350)] = 159840, + [SMALL_STATE(2351)] = 159869, + [SMALL_STATE(2352)] = 159890, + [SMALL_STATE(2353)] = 159913, + [SMALL_STATE(2354)] = 159936, + [SMALL_STATE(2355)] = 159965, + [SMALL_STATE(2356)] = 159994, + [SMALL_STATE(2357)] = 160023, + [SMALL_STATE(2358)] = 160052, + [SMALL_STATE(2359)] = 160081, + [SMALL_STATE(2360)] = 160114, + [SMALL_STATE(2361)] = 160143, + [SMALL_STATE(2362)] = 160166, + [SMALL_STATE(2363)] = 160195, + [SMALL_STATE(2364)] = 160224, + [SMALL_STATE(2365)] = 160253, + [SMALL_STATE(2366)] = 160286, + [SMALL_STATE(2367)] = 160315, + [SMALL_STATE(2368)] = 160344, + [SMALL_STATE(2369)] = 160373, + [SMALL_STATE(2370)] = 160406, + [SMALL_STATE(2371)] = 160435, + [SMALL_STATE(2372)] = 160464, + [SMALL_STATE(2373)] = 160493, + [SMALL_STATE(2374)] = 160522, + [SMALL_STATE(2375)] = 160555, + [SMALL_STATE(2376)] = 160588, + [SMALL_STATE(2377)] = 160617, + [SMALL_STATE(2378)] = 160650, + [SMALL_STATE(2379)] = 160683, + [SMALL_STATE(2380)] = 160705, + [SMALL_STATE(2381)] = 160723, + [SMALL_STATE(2382)] = 160741, + [SMALL_STATE(2383)] = 160759, + [SMALL_STATE(2384)] = 160777, + [SMALL_STATE(2385)] = 160795, + [SMALL_STATE(2386)] = 160813, + [SMALL_STATE(2387)] = 160831, + [SMALL_STATE(2388)] = 160849, + [SMALL_STATE(2389)] = 160879, + [SMALL_STATE(2390)] = 160897, + [SMALL_STATE(2391)] = 160927, + [SMALL_STATE(2392)] = 160945, + [SMALL_STATE(2393)] = 160963, + [SMALL_STATE(2394)] = 160981, + [SMALL_STATE(2395)] = 160999, + [SMALL_STATE(2396)] = 161017, + [SMALL_STATE(2397)] = 161035, + [SMALL_STATE(2398)] = 161053, + [SMALL_STATE(2399)] = 161083, + [SMALL_STATE(2400)] = 161101, + [SMALL_STATE(2401)] = 161121, + [SMALL_STATE(2402)] = 161141, + [SMALL_STATE(2403)] = 161171, + [SMALL_STATE(2404)] = 161189, + [SMALL_STATE(2405)] = 161207, + [SMALL_STATE(2406)] = 161225, + [SMALL_STATE(2407)] = 161243, + [SMALL_STATE(2408)] = 161273, + [SMALL_STATE(2409)] = 161291, + [SMALL_STATE(2410)] = 161309, + [SMALL_STATE(2411)] = 161327, + [SMALL_STATE(2412)] = 161345, + [SMALL_STATE(2413)] = 161371, + [SMALL_STATE(2414)] = 161389, + [SMALL_STATE(2415)] = 161419, + [SMALL_STATE(2416)] = 161441, + [SMALL_STATE(2417)] = 161459, + [SMALL_STATE(2418)] = 161489, + [SMALL_STATE(2419)] = 161519, + [SMALL_STATE(2420)] = 161549, + [SMALL_STATE(2421)] = 161577, + [SMALL_STATE(2422)] = 161607, + [SMALL_STATE(2423)] = 161637, + [SMALL_STATE(2424)] = 161667, + [SMALL_STATE(2425)] = 161698, + [SMALL_STATE(2426)] = 161729, + [SMALL_STATE(2427)] = 161756, + [SMALL_STATE(2428)] = 161778, + [SMALL_STATE(2429)] = 161800, + [SMALL_STATE(2430)] = 161822, + [SMALL_STATE(2431)] = 161844, + [SMALL_STATE(2432)] = 161866, + [SMALL_STATE(2433)] = 161888, + [SMALL_STATE(2434)] = 161910, + [SMALL_STATE(2435)] = 161932, + [SMALL_STATE(2436)] = 161954, + [SMALL_STATE(2437)] = 161976, + [SMALL_STATE(2438)] = 161998, + [SMALL_STATE(2439)] = 162020, + [SMALL_STATE(2440)] = 162042, + [SMALL_STATE(2441)] = 162064, + [SMALL_STATE(2442)] = 162086, + [SMALL_STATE(2443)] = 162108, + [SMALL_STATE(2444)] = 162130, + [SMALL_STATE(2445)] = 162152, + [SMALL_STATE(2446)] = 162174, + [SMALL_STATE(2447)] = 162196, + [SMALL_STATE(2448)] = 162218, + [SMALL_STATE(2449)] = 162240, + [SMALL_STATE(2450)] = 162262, + [SMALL_STATE(2451)] = 162284, + [SMALL_STATE(2452)] = 162306, + [SMALL_STATE(2453)] = 162328, + [SMALL_STATE(2454)] = 162350, + [SMALL_STATE(2455)] = 162372, + [SMALL_STATE(2456)] = 162394, + [SMALL_STATE(2457)] = 162416, + [SMALL_STATE(2458)] = 162438, + [SMALL_STATE(2459)] = 162460, + [SMALL_STATE(2460)] = 162482, + [SMALL_STATE(2461)] = 162504, + [SMALL_STATE(2462)] = 162526, + [SMALL_STATE(2463)] = 162548, + [SMALL_STATE(2464)] = 162570, + [SMALL_STATE(2465)] = 162592, + [SMALL_STATE(2466)] = 162614, + [SMALL_STATE(2467)] = 162636, + [SMALL_STATE(2468)] = 162658, + [SMALL_STATE(2469)] = 162680, + [SMALL_STATE(2470)] = 162702, + [SMALL_STATE(2471)] = 162724, + [SMALL_STATE(2472)] = 162746, + [SMALL_STATE(2473)] = 162768, + [SMALL_STATE(2474)] = 162790, + [SMALL_STATE(2475)] = 162812, + [SMALL_STATE(2476)] = 162834, + [SMALL_STATE(2477)] = 162856, + [SMALL_STATE(2478)] = 162878, + [SMALL_STATE(2479)] = 162900, + [SMALL_STATE(2480)] = 162922, + [SMALL_STATE(2481)] = 162944, + [SMALL_STATE(2482)] = 162966, + [SMALL_STATE(2483)] = 162988, + [SMALL_STATE(2484)] = 163010, + [SMALL_STATE(2485)] = 163032, + [SMALL_STATE(2486)] = 163054, + [SMALL_STATE(2487)] = 163076, + [SMALL_STATE(2488)] = 163098, + [SMALL_STATE(2489)] = 163120, + [SMALL_STATE(2490)] = 163142, + [SMALL_STATE(2491)] = 163164, + [SMALL_STATE(2492)] = 163186, + [SMALL_STATE(2493)] = 163208, + [SMALL_STATE(2494)] = 163230, + [SMALL_STATE(2495)] = 163252, + [SMALL_STATE(2496)] = 163274, + [SMALL_STATE(2497)] = 163296, + [SMALL_STATE(2498)] = 163318, + [SMALL_STATE(2499)] = 163340, + [SMALL_STATE(2500)] = 163362, + [SMALL_STATE(2501)] = 163384, + [SMALL_STATE(2502)] = 163406, + [SMALL_STATE(2503)] = 163428, + [SMALL_STATE(2504)] = 163450, + [SMALL_STATE(2505)] = 163472, + [SMALL_STATE(2506)] = 163494, + [SMALL_STATE(2507)] = 163516, + [SMALL_STATE(2508)] = 163538, + [SMALL_STATE(2509)] = 163560, + [SMALL_STATE(2510)] = 163582, + [SMALL_STATE(2511)] = 163604, + [SMALL_STATE(2512)] = 163626, + [SMALL_STATE(2513)] = 163648, + [SMALL_STATE(2514)] = 163670, + [SMALL_STATE(2515)] = 163692, + [SMALL_STATE(2516)] = 163714, + [SMALL_STATE(2517)] = 163736, + [SMALL_STATE(2518)] = 163758, + [SMALL_STATE(2519)] = 163780, + [SMALL_STATE(2520)] = 163802, + [SMALL_STATE(2521)] = 163824, + [SMALL_STATE(2522)] = 163846, + [SMALL_STATE(2523)] = 163868, + [SMALL_STATE(2524)] = 163890, + [SMALL_STATE(2525)] = 163912, + [SMALL_STATE(2526)] = 163934, + [SMALL_STATE(2527)] = 163956, + [SMALL_STATE(2528)] = 163978, + [SMALL_STATE(2529)] = 164000, + [SMALL_STATE(2530)] = 164022, + [SMALL_STATE(2531)] = 164044, + [SMALL_STATE(2532)] = 164066, + [SMALL_STATE(2533)] = 164088, + [SMALL_STATE(2534)] = 164110, + [SMALL_STATE(2535)] = 164132, + [SMALL_STATE(2536)] = 164154, + [SMALL_STATE(2537)] = 164176, + [SMALL_STATE(2538)] = 164198, + [SMALL_STATE(2539)] = 164220, + [SMALL_STATE(2540)] = 164242, + [SMALL_STATE(2541)] = 164264, + [SMALL_STATE(2542)] = 164286, + [SMALL_STATE(2543)] = 164308, + [SMALL_STATE(2544)] = 164330, + [SMALL_STATE(2545)] = 164352, + [SMALL_STATE(2546)] = 164374, + [SMALL_STATE(2547)] = 164396, + [SMALL_STATE(2548)] = 164418, + [SMALL_STATE(2549)] = 164440, + [SMALL_STATE(2550)] = 164462, + [SMALL_STATE(2551)] = 164484, + [SMALL_STATE(2552)] = 164506, + [SMALL_STATE(2553)] = 164528, + [SMALL_STATE(2554)] = 164550, + [SMALL_STATE(2555)] = 164572, + [SMALL_STATE(2556)] = 164594, + [SMALL_STATE(2557)] = 164616, + [SMALL_STATE(2558)] = 164638, + [SMALL_STATE(2559)] = 164660, + [SMALL_STATE(2560)] = 164682, + [SMALL_STATE(2561)] = 164704, + [SMALL_STATE(2562)] = 164726, + [SMALL_STATE(2563)] = 164748, + [SMALL_STATE(2564)] = 164770, + [SMALL_STATE(2565)] = 164792, + [SMALL_STATE(2566)] = 164814, + [SMALL_STATE(2567)] = 164836, + [SMALL_STATE(2568)] = 164858, + [SMALL_STATE(2569)] = 164880, + [SMALL_STATE(2570)] = 164902, + [SMALL_STATE(2571)] = 164924, + [SMALL_STATE(2572)] = 164946, + [SMALL_STATE(2573)] = 164968, + [SMALL_STATE(2574)] = 164990, + [SMALL_STATE(2575)] = 165012, + [SMALL_STATE(2576)] = 165034, + [SMALL_STATE(2577)] = 165056, + [SMALL_STATE(2578)] = 165078, + [SMALL_STATE(2579)] = 165100, + [SMALL_STATE(2580)] = 165122, + [SMALL_STATE(2581)] = 165144, + [SMALL_STATE(2582)] = 165166, + [SMALL_STATE(2583)] = 165188, + [SMALL_STATE(2584)] = 165210, + [SMALL_STATE(2585)] = 165232, + [SMALL_STATE(2586)] = 165254, + [SMALL_STATE(2587)] = 165276, + [SMALL_STATE(2588)] = 165298, + [SMALL_STATE(2589)] = 165320, + [SMALL_STATE(2590)] = 165342, + [SMALL_STATE(2591)] = 165364, + [SMALL_STATE(2592)] = 165386, + [SMALL_STATE(2593)] = 165408, + [SMALL_STATE(2594)] = 165430, + [SMALL_STATE(2595)] = 165452, + [SMALL_STATE(2596)] = 165474, + [SMALL_STATE(2597)] = 165496, + [SMALL_STATE(2598)] = 165518, + [SMALL_STATE(2599)] = 165540, + [SMALL_STATE(2600)] = 165562, + [SMALL_STATE(2601)] = 165584, + [SMALL_STATE(2602)] = 165606, + [SMALL_STATE(2603)] = 165628, + [SMALL_STATE(2604)] = 165650, + [SMALL_STATE(2605)] = 165672, + [SMALL_STATE(2606)] = 165694, + [SMALL_STATE(2607)] = 165716, + [SMALL_STATE(2608)] = 165738, + [SMALL_STATE(2609)] = 165760, + [SMALL_STATE(2610)] = 165782, + [SMALL_STATE(2611)] = 165804, + [SMALL_STATE(2612)] = 165826, + [SMALL_STATE(2613)] = 165848, + [SMALL_STATE(2614)] = 165870, + [SMALL_STATE(2615)] = 165892, + [SMALL_STATE(2616)] = 165914, + [SMALL_STATE(2617)] = 165936, + [SMALL_STATE(2618)] = 165958, + [SMALL_STATE(2619)] = 165980, + [SMALL_STATE(2620)] = 166002, + [SMALL_STATE(2621)] = 166024, + [SMALL_STATE(2622)] = 166046, + [SMALL_STATE(2623)] = 166068, + [SMALL_STATE(2624)] = 166090, + [SMALL_STATE(2625)] = 166112, + [SMALL_STATE(2626)] = 166134, + [SMALL_STATE(2627)] = 166156, + [SMALL_STATE(2628)] = 166178, + [SMALL_STATE(2629)] = 166200, + [SMALL_STATE(2630)] = 166222, + [SMALL_STATE(2631)] = 166244, + [SMALL_STATE(2632)] = 166266, + [SMALL_STATE(2633)] = 166288, + [SMALL_STATE(2634)] = 166310, + [SMALL_STATE(2635)] = 166332, + [SMALL_STATE(2636)] = 166354, + [SMALL_STATE(2637)] = 166376, + [SMALL_STATE(2638)] = 166398, + [SMALL_STATE(2639)] = 166420, + [SMALL_STATE(2640)] = 166442, + [SMALL_STATE(2641)] = 166464, + [SMALL_STATE(2642)] = 166486, + [SMALL_STATE(2643)] = 166508, + [SMALL_STATE(2644)] = 166530, + [SMALL_STATE(2645)] = 166552, + [SMALL_STATE(2646)] = 166574, + [SMALL_STATE(2647)] = 166596, + [SMALL_STATE(2648)] = 166618, + [SMALL_STATE(2649)] = 166640, + [SMALL_STATE(2650)] = 166662, + [SMALL_STATE(2651)] = 166684, + [SMALL_STATE(2652)] = 166706, + [SMALL_STATE(2653)] = 166728, + [SMALL_STATE(2654)] = 166750, + [SMALL_STATE(2655)] = 166772, + [SMALL_STATE(2656)] = 166794, + [SMALL_STATE(2657)] = 166816, + [SMALL_STATE(2658)] = 166838, + [SMALL_STATE(2659)] = 166860, + [SMALL_STATE(2660)] = 166882, + [SMALL_STATE(2661)] = 166904, + [SMALL_STATE(2662)] = 166926, + [SMALL_STATE(2663)] = 166948, + [SMALL_STATE(2664)] = 166970, + [SMALL_STATE(2665)] = 166992, + [SMALL_STATE(2666)] = 167014, + [SMALL_STATE(2667)] = 167036, + [SMALL_STATE(2668)] = 167058, + [SMALL_STATE(2669)] = 167080, + [SMALL_STATE(2670)] = 167102, + [SMALL_STATE(2671)] = 167124, + [SMALL_STATE(2672)] = 167146, + [SMALL_STATE(2673)] = 167168, + [SMALL_STATE(2674)] = 167190, + [SMALL_STATE(2675)] = 167212, + [SMALL_STATE(2676)] = 167234, + [SMALL_STATE(2677)] = 167256, + [SMALL_STATE(2678)] = 167278, + [SMALL_STATE(2679)] = 167300, + [SMALL_STATE(2680)] = 167322, + [SMALL_STATE(2681)] = 167344, + [SMALL_STATE(2682)] = 167366, + [SMALL_STATE(2683)] = 167388, + [SMALL_STATE(2684)] = 167410, + [SMALL_STATE(2685)] = 167432, + [SMALL_STATE(2686)] = 167454, + [SMALL_STATE(2687)] = 167476, + [SMALL_STATE(2688)] = 167498, + [SMALL_STATE(2689)] = 167520, + [SMALL_STATE(2690)] = 167542, + [SMALL_STATE(2691)] = 167564, + [SMALL_STATE(2692)] = 167586, + [SMALL_STATE(2693)] = 167608, + [SMALL_STATE(2694)] = 167630, + [SMALL_STATE(2695)] = 167652, + [SMALL_STATE(2696)] = 167674, + [SMALL_STATE(2697)] = 167696, + [SMALL_STATE(2698)] = 167718, + [SMALL_STATE(2699)] = 167740, + [SMALL_STATE(2700)] = 167762, + [SMALL_STATE(2701)] = 167784, + [SMALL_STATE(2702)] = 167806, + [SMALL_STATE(2703)] = 167828, + [SMALL_STATE(2704)] = 167850, + [SMALL_STATE(2705)] = 167872, + [SMALL_STATE(2706)] = 167894, + [SMALL_STATE(2707)] = 167916, + [SMALL_STATE(2708)] = 167938, + [SMALL_STATE(2709)] = 167960, + [SMALL_STATE(2710)] = 167982, + [SMALL_STATE(2711)] = 168004, + [SMALL_STATE(2712)] = 168026, + [SMALL_STATE(2713)] = 168048, + [SMALL_STATE(2714)] = 168064, + [SMALL_STATE(2715)] = 168086, + [SMALL_STATE(2716)] = 168108, + [SMALL_STATE(2717)] = 168130, + [SMALL_STATE(2718)] = 168152, + [SMALL_STATE(2719)] = 168174, + [SMALL_STATE(2720)] = 168196, + [SMALL_STATE(2721)] = 168218, + [SMALL_STATE(2722)] = 168240, + [SMALL_STATE(2723)] = 168262, + [SMALL_STATE(2724)] = 168284, + [SMALL_STATE(2725)] = 168306, + [SMALL_STATE(2726)] = 168328, + [SMALL_STATE(2727)] = 168350, + [SMALL_STATE(2728)] = 168372, + [SMALL_STATE(2729)] = 168388, + [SMALL_STATE(2730)] = 168410, + [SMALL_STATE(2731)] = 168432, + [SMALL_STATE(2732)] = 168454, + [SMALL_STATE(2733)] = 168476, + [SMALL_STATE(2734)] = 168498, + [SMALL_STATE(2735)] = 168520, + [SMALL_STATE(2736)] = 168542, + [SMALL_STATE(2737)] = 168564, + [SMALL_STATE(2738)] = 168586, + [SMALL_STATE(2739)] = 168608, + [SMALL_STATE(2740)] = 168630, + [SMALL_STATE(2741)] = 168652, + [SMALL_STATE(2742)] = 168674, + [SMALL_STATE(2743)] = 168696, + [SMALL_STATE(2744)] = 168718, + [SMALL_STATE(2745)] = 168740, + [SMALL_STATE(2746)] = 168762, + [SMALL_STATE(2747)] = 168784, + [SMALL_STATE(2748)] = 168806, + [SMALL_STATE(2749)] = 168828, + [SMALL_STATE(2750)] = 168850, + [SMALL_STATE(2751)] = 168872, + [SMALL_STATE(2752)] = 168894, + [SMALL_STATE(2753)] = 168916, + [SMALL_STATE(2754)] = 168935, + [SMALL_STATE(2755)] = 168954, + [SMALL_STATE(2756)] = 168973, + [SMALL_STATE(2757)] = 168992, + [SMALL_STATE(2758)] = 169011, + [SMALL_STATE(2759)] = 169030, + [SMALL_STATE(2760)] = 169049, + [SMALL_STATE(2761)] = 169068, + [SMALL_STATE(2762)] = 169087, + [SMALL_STATE(2763)] = 169106, + [SMALL_STATE(2764)] = 169125, + [SMALL_STATE(2765)] = 169144, + [SMALL_STATE(2766)] = 169163, + [SMALL_STATE(2767)] = 169182, + [SMALL_STATE(2768)] = 169201, + [SMALL_STATE(2769)] = 169220, + [SMALL_STATE(2770)] = 169239, + [SMALL_STATE(2771)] = 169258, + [SMALL_STATE(2772)] = 169277, + [SMALL_STATE(2773)] = 169296, + [SMALL_STATE(2774)] = 169315, + [SMALL_STATE(2775)] = 169334, + [SMALL_STATE(2776)] = 169353, + [SMALL_STATE(2777)] = 169372, + [SMALL_STATE(2778)] = 169391, + [SMALL_STATE(2779)] = 169410, + [SMALL_STATE(2780)] = 169429, + [SMALL_STATE(2781)] = 169448, + [SMALL_STATE(2782)] = 169467, + [SMALL_STATE(2783)] = 169486, + [SMALL_STATE(2784)] = 169505, + [SMALL_STATE(2785)] = 169524, + [SMALL_STATE(2786)] = 169543, + [SMALL_STATE(2787)] = 169562, + [SMALL_STATE(2788)] = 169581, + [SMALL_STATE(2789)] = 169600, + [SMALL_STATE(2790)] = 169619, + [SMALL_STATE(2791)] = 169638, + [SMALL_STATE(2792)] = 169657, + [SMALL_STATE(2793)] = 169676, + [SMALL_STATE(2794)] = 169695, + [SMALL_STATE(2795)] = 169714, + [SMALL_STATE(2796)] = 169733, + [SMALL_STATE(2797)] = 169752, + [SMALL_STATE(2798)] = 169771, + [SMALL_STATE(2799)] = 169790, + [SMALL_STATE(2800)] = 169809, + [SMALL_STATE(2801)] = 169828, + [SMALL_STATE(2802)] = 169847, + [SMALL_STATE(2803)] = 169866, + [SMALL_STATE(2804)] = 169885, + [SMALL_STATE(2805)] = 169904, + [SMALL_STATE(2806)] = 169923, + [SMALL_STATE(2807)] = 169942, + [SMALL_STATE(2808)] = 169961, + [SMALL_STATE(2809)] = 169980, + [SMALL_STATE(2810)] = 169999, + [SMALL_STATE(2811)] = 170018, + [SMALL_STATE(2812)] = 170037, + [SMALL_STATE(2813)] = 170056, + [SMALL_STATE(2814)] = 170075, + [SMALL_STATE(2815)] = 170094, + [SMALL_STATE(2816)] = 170113, + [SMALL_STATE(2817)] = 170132, + [SMALL_STATE(2818)] = 170151, + [SMALL_STATE(2819)] = 170170, + [SMALL_STATE(2820)] = 170189, + [SMALL_STATE(2821)] = 170208, + [SMALL_STATE(2822)] = 170227, + [SMALL_STATE(2823)] = 170246, + [SMALL_STATE(2824)] = 170265, + [SMALL_STATE(2825)] = 170284, + [SMALL_STATE(2826)] = 170303, + [SMALL_STATE(2827)] = 170322, + [SMALL_STATE(2828)] = 170341, + [SMALL_STATE(2829)] = 170360, + [SMALL_STATE(2830)] = 170379, + [SMALL_STATE(2831)] = 170398, + [SMALL_STATE(2832)] = 170417, + [SMALL_STATE(2833)] = 170436, + [SMALL_STATE(2834)] = 170455, + [SMALL_STATE(2835)] = 170474, + [SMALL_STATE(2836)] = 170493, + [SMALL_STATE(2837)] = 170512, + [SMALL_STATE(2838)] = 170531, + [SMALL_STATE(2839)] = 170550, + [SMALL_STATE(2840)] = 170569, + [SMALL_STATE(2841)] = 170588, + [SMALL_STATE(2842)] = 170607, + [SMALL_STATE(2843)] = 170626, + [SMALL_STATE(2844)] = 170645, + [SMALL_STATE(2845)] = 170664, + [SMALL_STATE(2846)] = 170683, + [SMALL_STATE(2847)] = 170702, + [SMALL_STATE(2848)] = 170721, + [SMALL_STATE(2849)] = 170740, + [SMALL_STATE(2850)] = 170759, + [SMALL_STATE(2851)] = 170778, + [SMALL_STATE(2852)] = 170797, + [SMALL_STATE(2853)] = 170816, + [SMALL_STATE(2854)] = 170835, + [SMALL_STATE(2855)] = 170854, + [SMALL_STATE(2856)] = 170873, + [SMALL_STATE(2857)] = 170892, + [SMALL_STATE(2858)] = 170911, + [SMALL_STATE(2859)] = 170930, + [SMALL_STATE(2860)] = 170949, + [SMALL_STATE(2861)] = 170968, + [SMALL_STATE(2862)] = 170987, + [SMALL_STATE(2863)] = 171006, + [SMALL_STATE(2864)] = 171025, + [SMALL_STATE(2865)] = 171044, + [SMALL_STATE(2866)] = 171063, + [SMALL_STATE(2867)] = 171082, + [SMALL_STATE(2868)] = 171101, + [SMALL_STATE(2869)] = 171120, + [SMALL_STATE(2870)] = 171139, + [SMALL_STATE(2871)] = 171158, + [SMALL_STATE(2872)] = 171177, + [SMALL_STATE(2873)] = 171196, + [SMALL_STATE(2874)] = 171215, + [SMALL_STATE(2875)] = 171234, + [SMALL_STATE(2876)] = 171253, + [SMALL_STATE(2877)] = 171272, + [SMALL_STATE(2878)] = 171291, + [SMALL_STATE(2879)] = 171310, + [SMALL_STATE(2880)] = 171329, + [SMALL_STATE(2881)] = 171348, + [SMALL_STATE(2882)] = 171367, + [SMALL_STATE(2883)] = 171386, + [SMALL_STATE(2884)] = 171405, + [SMALL_STATE(2885)] = 171424, + [SMALL_STATE(2886)] = 171443, + [SMALL_STATE(2887)] = 171462, + [SMALL_STATE(2888)] = 171481, + [SMALL_STATE(2889)] = 171500, + [SMALL_STATE(2890)] = 171519, + [SMALL_STATE(2891)] = 171538, + [SMALL_STATE(2892)] = 171557, + [SMALL_STATE(2893)] = 171576, + [SMALL_STATE(2894)] = 171595, + [SMALL_STATE(2895)] = 171614, + [SMALL_STATE(2896)] = 171633, + [SMALL_STATE(2897)] = 171652, + [SMALL_STATE(2898)] = 171671, + [SMALL_STATE(2899)] = 171690, + [SMALL_STATE(2900)] = 171709, + [SMALL_STATE(2901)] = 171728, + [SMALL_STATE(2902)] = 171747, + [SMALL_STATE(2903)] = 171766, + [SMALL_STATE(2904)] = 171785, + [SMALL_STATE(2905)] = 171804, + [SMALL_STATE(2906)] = 171823, + [SMALL_STATE(2907)] = 171842, + [SMALL_STATE(2908)] = 171861, + [SMALL_STATE(2909)] = 171880, + [SMALL_STATE(2910)] = 171899, + [SMALL_STATE(2911)] = 171918, + [SMALL_STATE(2912)] = 171937, + [SMALL_STATE(2913)] = 171956, + [SMALL_STATE(2914)] = 171975, + [SMALL_STATE(2915)] = 171994, + [SMALL_STATE(2916)] = 172013, + [SMALL_STATE(2917)] = 172032, + [SMALL_STATE(2918)] = 172051, + [SMALL_STATE(2919)] = 172070, + [SMALL_STATE(2920)] = 172089, + [SMALL_STATE(2921)] = 172108, + [SMALL_STATE(2922)] = 172127, + [SMALL_STATE(2923)] = 172146, + [SMALL_STATE(2924)] = 172165, + [SMALL_STATE(2925)] = 172184, + [SMALL_STATE(2926)] = 172203, + [SMALL_STATE(2927)] = 172222, + [SMALL_STATE(2928)] = 172241, + [SMALL_STATE(2929)] = 172260, + [SMALL_STATE(2930)] = 172279, + [SMALL_STATE(2931)] = 172298, + [SMALL_STATE(2932)] = 172317, + [SMALL_STATE(2933)] = 172336, + [SMALL_STATE(2934)] = 172355, + [SMALL_STATE(2935)] = 172374, + [SMALL_STATE(2936)] = 172393, + [SMALL_STATE(2937)] = 172412, + [SMALL_STATE(2938)] = 172431, + [SMALL_STATE(2939)] = 172450, + [SMALL_STATE(2940)] = 172469, + [SMALL_STATE(2941)] = 172488, + [SMALL_STATE(2942)] = 172507, + [SMALL_STATE(2943)] = 172526, + [SMALL_STATE(2944)] = 172545, + [SMALL_STATE(2945)] = 172564, + [SMALL_STATE(2946)] = 172583, + [SMALL_STATE(2947)] = 172602, + [SMALL_STATE(2948)] = 172621, + [SMALL_STATE(2949)] = 172640, + [SMALL_STATE(2950)] = 172659, + [SMALL_STATE(2951)] = 172678, + [SMALL_STATE(2952)] = 172697, + [SMALL_STATE(2953)] = 172716, + [SMALL_STATE(2954)] = 172735, + [SMALL_STATE(2955)] = 172754, + [SMALL_STATE(2956)] = 172773, + [SMALL_STATE(2957)] = 172792, + [SMALL_STATE(2958)] = 172811, + [SMALL_STATE(2959)] = 172830, + [SMALL_STATE(2960)] = 172849, + [SMALL_STATE(2961)] = 172868, + [SMALL_STATE(2962)] = 172887, + [SMALL_STATE(2963)] = 172906, + [SMALL_STATE(2964)] = 172925, + [SMALL_STATE(2965)] = 172944, + [SMALL_STATE(2966)] = 172963, + [SMALL_STATE(2967)] = 172982, + [SMALL_STATE(2968)] = 173001, + [SMALL_STATE(2969)] = 173020, + [SMALL_STATE(2970)] = 173039, + [SMALL_STATE(2971)] = 173058, + [SMALL_STATE(2972)] = 173077, + [SMALL_STATE(2973)] = 173096, + [SMALL_STATE(2974)] = 173115, + [SMALL_STATE(2975)] = 173134, + [SMALL_STATE(2976)] = 173153, + [SMALL_STATE(2977)] = 173172, + [SMALL_STATE(2978)] = 173191, + [SMALL_STATE(2979)] = 173210, + [SMALL_STATE(2980)] = 173229, + [SMALL_STATE(2981)] = 173248, + [SMALL_STATE(2982)] = 173267, + [SMALL_STATE(2983)] = 173286, + [SMALL_STATE(2984)] = 173305, + [SMALL_STATE(2985)] = 173324, + [SMALL_STATE(2986)] = 173343, + [SMALL_STATE(2987)] = 173362, + [SMALL_STATE(2988)] = 173381, + [SMALL_STATE(2989)] = 173400, + [SMALL_STATE(2990)] = 173419, + [SMALL_STATE(2991)] = 173438, + [SMALL_STATE(2992)] = 173457, + [SMALL_STATE(2993)] = 173476, + [SMALL_STATE(2994)] = 173495, + [SMALL_STATE(2995)] = 173514, + [SMALL_STATE(2996)] = 173533, + [SMALL_STATE(2997)] = 173552, + [SMALL_STATE(2998)] = 173571, + [SMALL_STATE(2999)] = 173590, + [SMALL_STATE(3000)] = 173609, + [SMALL_STATE(3001)] = 173628, + [SMALL_STATE(3002)] = 173647, + [SMALL_STATE(3003)] = 173666, + [SMALL_STATE(3004)] = 173685, + [SMALL_STATE(3005)] = 173704, + [SMALL_STATE(3006)] = 173723, + [SMALL_STATE(3007)] = 173742, + [SMALL_STATE(3008)] = 173761, + [SMALL_STATE(3009)] = 173780, + [SMALL_STATE(3010)] = 173799, + [SMALL_STATE(3011)] = 173818, + [SMALL_STATE(3012)] = 173837, + [SMALL_STATE(3013)] = 173856, + [SMALL_STATE(3014)] = 173875, + [SMALL_STATE(3015)] = 173894, + [SMALL_STATE(3016)] = 173913, + [SMALL_STATE(3017)] = 173932, + [SMALL_STATE(3018)] = 173951, + [SMALL_STATE(3019)] = 173970, + [SMALL_STATE(3020)] = 173989, + [SMALL_STATE(3021)] = 174008, + [SMALL_STATE(3022)] = 174027, + [SMALL_STATE(3023)] = 174046, + [SMALL_STATE(3024)] = 174065, + [SMALL_STATE(3025)] = 174084, + [SMALL_STATE(3026)] = 174103, + [SMALL_STATE(3027)] = 174122, + [SMALL_STATE(3028)] = 174141, + [SMALL_STATE(3029)] = 174160, + [SMALL_STATE(3030)] = 174179, + [SMALL_STATE(3031)] = 174198, + [SMALL_STATE(3032)] = 174217, + [SMALL_STATE(3033)] = 174236, + [SMALL_STATE(3034)] = 174255, + [SMALL_STATE(3035)] = 174274, + [SMALL_STATE(3036)] = 174293, + [SMALL_STATE(3037)] = 174312, + [SMALL_STATE(3038)] = 174331, + [SMALL_STATE(3039)] = 174350, + [SMALL_STATE(3040)] = 174369, + [SMALL_STATE(3041)] = 174388, + [SMALL_STATE(3042)] = 174407, + [SMALL_STATE(3043)] = 174426, + [SMALL_STATE(3044)] = 174445, + [SMALL_STATE(3045)] = 174464, + [SMALL_STATE(3046)] = 174483, + [SMALL_STATE(3047)] = 174502, + [SMALL_STATE(3048)] = 174521, + [SMALL_STATE(3049)] = 174540, + [SMALL_STATE(3050)] = 174559, + [SMALL_STATE(3051)] = 174578, + [SMALL_STATE(3052)] = 174597, + [SMALL_STATE(3053)] = 174616, + [SMALL_STATE(3054)] = 174635, + [SMALL_STATE(3055)] = 174654, + [SMALL_STATE(3056)] = 174673, + [SMALL_STATE(3057)] = 174692, + [SMALL_STATE(3058)] = 174711, + [SMALL_STATE(3059)] = 174730, + [SMALL_STATE(3060)] = 174749, + [SMALL_STATE(3061)] = 174768, + [SMALL_STATE(3062)] = 174787, + [SMALL_STATE(3063)] = 174806, + [SMALL_STATE(3064)] = 174825, + [SMALL_STATE(3065)] = 174844, + [SMALL_STATE(3066)] = 174863, + [SMALL_STATE(3067)] = 174882, + [SMALL_STATE(3068)] = 174901, + [SMALL_STATE(3069)] = 174920, + [SMALL_STATE(3070)] = 174939, + [SMALL_STATE(3071)] = 174958, + [SMALL_STATE(3072)] = 174977, + [SMALL_STATE(3073)] = 174996, + [SMALL_STATE(3074)] = 175015, + [SMALL_STATE(3075)] = 175034, + [SMALL_STATE(3076)] = 175053, + [SMALL_STATE(3077)] = 175072, + [SMALL_STATE(3078)] = 175091, + [SMALL_STATE(3079)] = 175110, + [SMALL_STATE(3080)] = 175129, + [SMALL_STATE(3081)] = 175148, + [SMALL_STATE(3082)] = 175167, + [SMALL_STATE(3083)] = 175186, + [SMALL_STATE(3084)] = 175205, + [SMALL_STATE(3085)] = 175224, + [SMALL_STATE(3086)] = 175243, + [SMALL_STATE(3087)] = 175262, + [SMALL_STATE(3088)] = 175281, + [SMALL_STATE(3089)] = 175300, + [SMALL_STATE(3090)] = 175319, + [SMALL_STATE(3091)] = 175338, + [SMALL_STATE(3092)] = 175357, + [SMALL_STATE(3093)] = 175376, + [SMALL_STATE(3094)] = 175395, + [SMALL_STATE(3095)] = 175414, + [SMALL_STATE(3096)] = 175433, + [SMALL_STATE(3097)] = 175452, + [SMALL_STATE(3098)] = 175471, + [SMALL_STATE(3099)] = 175490, + [SMALL_STATE(3100)] = 175509, + [SMALL_STATE(3101)] = 175528, + [SMALL_STATE(3102)] = 175547, + [SMALL_STATE(3103)] = 175566, + [SMALL_STATE(3104)] = 175585, + [SMALL_STATE(3105)] = 175604, + [SMALL_STATE(3106)] = 175623, + [SMALL_STATE(3107)] = 175642, + [SMALL_STATE(3108)] = 175661, + [SMALL_STATE(3109)] = 175680, + [SMALL_STATE(3110)] = 175699, + [SMALL_STATE(3111)] = 175718, + [SMALL_STATE(3112)] = 175737, + [SMALL_STATE(3113)] = 175756, + [SMALL_STATE(3114)] = 175775, + [SMALL_STATE(3115)] = 175794, + [SMALL_STATE(3116)] = 175813, + [SMALL_STATE(3117)] = 175832, + [SMALL_STATE(3118)] = 175851, + [SMALL_STATE(3119)] = 175870, + [SMALL_STATE(3120)] = 175889, + [SMALL_STATE(3121)] = 175908, + [SMALL_STATE(3122)] = 175927, + [SMALL_STATE(3123)] = 175946, + [SMALL_STATE(3124)] = 175965, + [SMALL_STATE(3125)] = 175984, + [SMALL_STATE(3126)] = 176003, + [SMALL_STATE(3127)] = 176022, + [SMALL_STATE(3128)] = 176041, + [SMALL_STATE(3129)] = 176060, + [SMALL_STATE(3130)] = 176079, + [SMALL_STATE(3131)] = 176098, + [SMALL_STATE(3132)] = 176117, + [SMALL_STATE(3133)] = 176136, + [SMALL_STATE(3134)] = 176155, + [SMALL_STATE(3135)] = 176174, + [SMALL_STATE(3136)] = 176193, + [SMALL_STATE(3137)] = 176212, + [SMALL_STATE(3138)] = 176231, + [SMALL_STATE(3139)] = 176250, + [SMALL_STATE(3140)] = 176269, + [SMALL_STATE(3141)] = 176288, + [SMALL_STATE(3142)] = 176307, + [SMALL_STATE(3143)] = 176326, + [SMALL_STATE(3144)] = 176345, + [SMALL_STATE(3145)] = 176364, + [SMALL_STATE(3146)] = 176383, + [SMALL_STATE(3147)] = 176402, + [SMALL_STATE(3148)] = 176421, + [SMALL_STATE(3149)] = 176440, + [SMALL_STATE(3150)] = 176459, + [SMALL_STATE(3151)] = 176478, + [SMALL_STATE(3152)] = 176497, + [SMALL_STATE(3153)] = 176516, + [SMALL_STATE(3154)] = 176535, + [SMALL_STATE(3155)] = 176554, + [SMALL_STATE(3156)] = 176573, + [SMALL_STATE(3157)] = 176592, + [SMALL_STATE(3158)] = 176611, + [SMALL_STATE(3159)] = 176630, + [SMALL_STATE(3160)] = 176649, + [SMALL_STATE(3161)] = 176668, + [SMALL_STATE(3162)] = 176687, + [SMALL_STATE(3163)] = 176706, + [SMALL_STATE(3164)] = 176725, + [SMALL_STATE(3165)] = 176744, + [SMALL_STATE(3166)] = 176763, + [SMALL_STATE(3167)] = 176782, + [SMALL_STATE(3168)] = 176801, + [SMALL_STATE(3169)] = 176820, + [SMALL_STATE(3170)] = 176839, + [SMALL_STATE(3171)] = 176858, + [SMALL_STATE(3172)] = 176877, + [SMALL_STATE(3173)] = 176896, + [SMALL_STATE(3174)] = 176915, + [SMALL_STATE(3175)] = 176934, + [SMALL_STATE(3176)] = 176953, + [SMALL_STATE(3177)] = 176972, + [SMALL_STATE(3178)] = 176991, + [SMALL_STATE(3179)] = 177010, + [SMALL_STATE(3180)] = 177029, + [SMALL_STATE(3181)] = 177048, + [SMALL_STATE(3182)] = 177067, + [SMALL_STATE(3183)] = 177086, + [SMALL_STATE(3184)] = 177105, + [SMALL_STATE(3185)] = 177124, + [SMALL_STATE(3186)] = 177143, + [SMALL_STATE(3187)] = 177162, + [SMALL_STATE(3188)] = 177181, + [SMALL_STATE(3189)] = 177200, + [SMALL_STATE(3190)] = 177219, + [SMALL_STATE(3191)] = 177238, + [SMALL_STATE(3192)] = 177257, + [SMALL_STATE(3193)] = 177276, + [SMALL_STATE(3194)] = 177295, + [SMALL_STATE(3195)] = 177314, + [SMALL_STATE(3196)] = 177333, + [SMALL_STATE(3197)] = 177352, + [SMALL_STATE(3198)] = 177371, + [SMALL_STATE(3199)] = 177390, + [SMALL_STATE(3200)] = 177409, + [SMALL_STATE(3201)] = 177428, + [SMALL_STATE(3202)] = 177447, + [SMALL_STATE(3203)] = 177466, + [SMALL_STATE(3204)] = 177485, + [SMALL_STATE(3205)] = 177504, + [SMALL_STATE(3206)] = 177523, + [SMALL_STATE(3207)] = 177542, + [SMALL_STATE(3208)] = 177561, + [SMALL_STATE(3209)] = 177580, + [SMALL_STATE(3210)] = 177599, + [SMALL_STATE(3211)] = 177618, + [SMALL_STATE(3212)] = 177637, + [SMALL_STATE(3213)] = 177656, + [SMALL_STATE(3214)] = 177674, + [SMALL_STATE(3215)] = 177692, + [SMALL_STATE(3216)] = 177710, + [SMALL_STATE(3217)] = 177728, + [SMALL_STATE(3218)] = 177746, + [SMALL_STATE(3219)] = 177764, + [SMALL_STATE(3220)] = 177782, + [SMALL_STATE(3221)] = 177800, + [SMALL_STATE(3222)] = 177818, + [SMALL_STATE(3223)] = 177836, + [SMALL_STATE(3224)] = 177854, + [SMALL_STATE(3225)] = 177872, + [SMALL_STATE(3226)] = 177890, + [SMALL_STATE(3227)] = 177908, + [SMALL_STATE(3228)] = 177926, + [SMALL_STATE(3229)] = 177944, + [SMALL_STATE(3230)] = 177962, + [SMALL_STATE(3231)] = 177980, + [SMALL_STATE(3232)] = 177998, + [SMALL_STATE(3233)] = 178016, + [SMALL_STATE(3234)] = 178034, + [SMALL_STATE(3235)] = 178052, + [SMALL_STATE(3236)] = 178070, + [SMALL_STATE(3237)] = 178088, + [SMALL_STATE(3238)] = 178106, + [SMALL_STATE(3239)] = 178124, + [SMALL_STATE(3240)] = 178142, + [SMALL_STATE(3241)] = 178160, + [SMALL_STATE(3242)] = 178178, + [SMALL_STATE(3243)] = 178196, + [SMALL_STATE(3244)] = 178214, + [SMALL_STATE(3245)] = 178232, + [SMALL_STATE(3246)] = 178250, + [SMALL_STATE(3247)] = 178268, + [SMALL_STATE(3248)] = 178286, + [SMALL_STATE(3249)] = 178304, + [SMALL_STATE(3250)] = 178322, + [SMALL_STATE(3251)] = 178340, + [SMALL_STATE(3252)] = 178358, + [SMALL_STATE(3253)] = 178376, + [SMALL_STATE(3254)] = 178394, + [SMALL_STATE(3255)] = 178412, + [SMALL_STATE(3256)] = 178430, + [SMALL_STATE(3257)] = 178448, + [SMALL_STATE(3258)] = 178466, + [SMALL_STATE(3259)] = 178484, + [SMALL_STATE(3260)] = 178502, + [SMALL_STATE(3261)] = 178520, + [SMALL_STATE(3262)] = 178538, + [SMALL_STATE(3263)] = 178556, + [SMALL_STATE(3264)] = 178574, + [SMALL_STATE(3265)] = 178592, + [SMALL_STATE(3266)] = 178610, + [SMALL_STATE(3267)] = 178628, + [SMALL_STATE(3268)] = 178646, + [SMALL_STATE(3269)] = 178664, + [SMALL_STATE(3270)] = 178682, + [SMALL_STATE(3271)] = 178700, + [SMALL_STATE(3272)] = 178718, + [SMALL_STATE(3273)] = 178736, + [SMALL_STATE(3274)] = 178754, + [SMALL_STATE(3275)] = 178772, + [SMALL_STATE(3276)] = 178790, + [SMALL_STATE(3277)] = 178808, + [SMALL_STATE(3278)] = 178826, + [SMALL_STATE(3279)] = 178844, + [SMALL_STATE(3280)] = 178862, + [SMALL_STATE(3281)] = 178880, + [SMALL_STATE(3282)] = 178898, + [SMALL_STATE(3283)] = 178916, + [SMALL_STATE(3284)] = 178934, + [SMALL_STATE(3285)] = 178952, + [SMALL_STATE(3286)] = 178970, + [SMALL_STATE(3287)] = 178988, + [SMALL_STATE(3288)] = 179006, + [SMALL_STATE(3289)] = 179024, + [SMALL_STATE(3290)] = 179042, + [SMALL_STATE(3291)] = 179060, + [SMALL_STATE(3292)] = 179078, + [SMALL_STATE(3293)] = 179098, + [SMALL_STATE(3294)] = 179116, + [SMALL_STATE(3295)] = 179134, + [SMALL_STATE(3296)] = 179152, + [SMALL_STATE(3297)] = 179170, + [SMALL_STATE(3298)] = 179188, + [SMALL_STATE(3299)] = 179206, + [SMALL_STATE(3300)] = 179224, + [SMALL_STATE(3301)] = 179242, + [SMALL_STATE(3302)] = 179260, + [SMALL_STATE(3303)] = 179278, + [SMALL_STATE(3304)] = 179296, + [SMALL_STATE(3305)] = 179314, + [SMALL_STATE(3306)] = 179332, + [SMALL_STATE(3307)] = 179350, + [SMALL_STATE(3308)] = 179368, + [SMALL_STATE(3309)] = 179386, + [SMALL_STATE(3310)] = 179404, + [SMALL_STATE(3311)] = 179422, + [SMALL_STATE(3312)] = 179440, + [SMALL_STATE(3313)] = 179458, + [SMALL_STATE(3314)] = 179476, + [SMALL_STATE(3315)] = 179494, + [SMALL_STATE(3316)] = 179512, + [SMALL_STATE(3317)] = 179530, + [SMALL_STATE(3318)] = 179548, + [SMALL_STATE(3319)] = 179566, + [SMALL_STATE(3320)] = 179584, + [SMALL_STATE(3321)] = 179602, + [SMALL_STATE(3322)] = 179620, + [SMALL_STATE(3323)] = 179638, + [SMALL_STATE(3324)] = 179656, + [SMALL_STATE(3325)] = 179674, + [SMALL_STATE(3326)] = 179692, + [SMALL_STATE(3327)] = 179710, + [SMALL_STATE(3328)] = 179729, + [SMALL_STATE(3329)] = 179742, + [SMALL_STATE(3330)] = 179759, + [SMALL_STATE(3331)] = 179772, + [SMALL_STATE(3332)] = 179785, + [SMALL_STATE(3333)] = 179802, + [SMALL_STATE(3334)] = 179815, + [SMALL_STATE(3335)] = 179828, + [SMALL_STATE(3336)] = 179841, + [SMALL_STATE(3337)] = 179854, + [SMALL_STATE(3338)] = 179867, + [SMALL_STATE(3339)] = 179880, + [SMALL_STATE(3340)] = 179893, + [SMALL_STATE(3341)] = 179903, + [SMALL_STATE(3342)] = 179913, + [SMALL_STATE(3343)] = 179923, + [SMALL_STATE(3344)] = 179933, + [SMALL_STATE(3345)] = 179943, + [SMALL_STATE(3346)] = 179955, + [SMALL_STATE(3347)] = 179965, + [SMALL_STATE(3348)] = 179975, + [SMALL_STATE(3349)] = 179985, + [SMALL_STATE(3350)] = 179995, + [SMALL_STATE(3351)] = 180008, + [SMALL_STATE(3352)] = 180021, + [SMALL_STATE(3353)] = 180034, + [SMALL_STATE(3354)] = 180047, + [SMALL_STATE(3355)] = 180060, + [SMALL_STATE(3356)] = 180073, + [SMALL_STATE(3357)] = 180086, + [SMALL_STATE(3358)] = 180099, + [SMALL_STATE(3359)] = 180112, + [SMALL_STATE(3360)] = 180125, + [SMALL_STATE(3361)] = 180138, + [SMALL_STATE(3362)] = 180148, + [SMALL_STATE(3363)] = 180158, + [SMALL_STATE(3364)] = 180168, + [SMALL_STATE(3365)] = 180178, + [SMALL_STATE(3366)] = 180188, + [SMALL_STATE(3367)] = 180198, + [SMALL_STATE(3368)] = 180208, + [SMALL_STATE(3369)] = 180218, + [SMALL_STATE(3370)] = 180228, + [SMALL_STATE(3371)] = 180238, + [SMALL_STATE(3372)] = 180248, + [SMALL_STATE(3373)] = 180258, + [SMALL_STATE(3374)] = 180268, + [SMALL_STATE(3375)] = 180278, + [SMALL_STATE(3376)] = 180288, + [SMALL_STATE(3377)] = 180298, + [SMALL_STATE(3378)] = 180308, + [SMALL_STATE(3379)] = 180318, + [SMALL_STATE(3380)] = 180328, + [SMALL_STATE(3381)] = 180338, + [SMALL_STATE(3382)] = 180348, + [SMALL_STATE(3383)] = 180358, + [SMALL_STATE(3384)] = 180368, + [SMALL_STATE(3385)] = 180378, + [SMALL_STATE(3386)] = 180388, + [SMALL_STATE(3387)] = 180398, + [SMALL_STATE(3388)] = 180408, + [SMALL_STATE(3389)] = 180418, + [SMALL_STATE(3390)] = 180428, + [SMALL_STATE(3391)] = 180438, + [SMALL_STATE(3392)] = 180448, + [SMALL_STATE(3393)] = 180458, + [SMALL_STATE(3394)] = 180468, + [SMALL_STATE(3395)] = 180478, + [SMALL_STATE(3396)] = 180488, + [SMALL_STATE(3397)] = 180498, + [SMALL_STATE(3398)] = 180508, + [SMALL_STATE(3399)] = 180518, + [SMALL_STATE(3400)] = 180528, + [SMALL_STATE(3401)] = 180538, + [SMALL_STATE(3402)] = 180548, + [SMALL_STATE(3403)] = 180558, + [SMALL_STATE(3404)] = 180568, + [SMALL_STATE(3405)] = 180578, + [SMALL_STATE(3406)] = 180588, + [SMALL_STATE(3407)] = 180598, + [SMALL_STATE(3408)] = 180608, + [SMALL_STATE(3409)] = 180618, + [SMALL_STATE(3410)] = 180628, + [SMALL_STATE(3411)] = 180638, + [SMALL_STATE(3412)] = 180648, + [SMALL_STATE(3413)] = 180658, + [SMALL_STATE(3414)] = 180668, + [SMALL_STATE(3415)] = 180678, + [SMALL_STATE(3416)] = 180688, + [SMALL_STATE(3417)] = 180698, + [SMALL_STATE(3418)] = 180708, + [SMALL_STATE(3419)] = 180718, + [SMALL_STATE(3420)] = 180728, + [SMALL_STATE(3421)] = 180738, + [SMALL_STATE(3422)] = 180748, + [SMALL_STATE(3423)] = 180758, + [SMALL_STATE(3424)] = 180768, + [SMALL_STATE(3425)] = 180778, + [SMALL_STATE(3426)] = 180788, + [SMALL_STATE(3427)] = 180795, + [SMALL_STATE(3428)] = 180802, + [SMALL_STATE(3429)] = 180809, + [SMALL_STATE(3430)] = 180816, + [SMALL_STATE(3431)] = 180823, + [SMALL_STATE(3432)] = 180830, + [SMALL_STATE(3433)] = 180837, + [SMALL_STATE(3434)] = 180844, + [SMALL_STATE(3435)] = 180851, + [SMALL_STATE(3436)] = 180858, + [SMALL_STATE(3437)] = 180865, + [SMALL_STATE(3438)] = 180872, + [SMALL_STATE(3439)] = 180879, + [SMALL_STATE(3440)] = 180886, + [SMALL_STATE(3441)] = 180893, + [SMALL_STATE(3442)] = 180900, + [SMALL_STATE(3443)] = 180907, + [SMALL_STATE(3444)] = 180914, + [SMALL_STATE(3445)] = 180921, + [SMALL_STATE(3446)] = 180928, + [SMALL_STATE(3447)] = 180935, + [SMALL_STATE(3448)] = 180942, + [SMALL_STATE(3449)] = 180949, + [SMALL_STATE(3450)] = 180956, + [SMALL_STATE(3451)] = 180963, + [SMALL_STATE(3452)] = 180970, + [SMALL_STATE(3453)] = 180977, + [SMALL_STATE(3454)] = 180984, + [SMALL_STATE(3455)] = 180991, + [SMALL_STATE(3456)] = 180998, + [SMALL_STATE(3457)] = 181005, + [SMALL_STATE(3458)] = 181012, + [SMALL_STATE(3459)] = 181019, + [SMALL_STATE(3460)] = 181026, + [SMALL_STATE(3461)] = 181033, + [SMALL_STATE(3462)] = 181040, + [SMALL_STATE(3463)] = 181047, + [SMALL_STATE(3464)] = 181054, + [SMALL_STATE(3465)] = 181061, + [SMALL_STATE(3466)] = 181068, + [SMALL_STATE(3467)] = 181075, + [SMALL_STATE(3468)] = 181082, + [SMALL_STATE(3469)] = 181089, + [SMALL_STATE(3470)] = 181096, + [SMALL_STATE(3471)] = 181103, + [SMALL_STATE(3472)] = 181110, + [SMALL_STATE(3473)] = 181117, + [SMALL_STATE(3474)] = 181124, + [SMALL_STATE(3475)] = 181131, + [SMALL_STATE(3476)] = 181138, + [SMALL_STATE(3477)] = 181145, + [SMALL_STATE(3478)] = 181152, + [SMALL_STATE(3479)] = 181159, + [SMALL_STATE(3480)] = 181166, + [SMALL_STATE(3481)] = 181173, + [SMALL_STATE(3482)] = 181180, + [SMALL_STATE(3483)] = 181187, + [SMALL_STATE(3484)] = 181194, + [SMALL_STATE(3485)] = 181201, + [SMALL_STATE(3486)] = 181208, + [SMALL_STATE(3487)] = 181215, + [SMALL_STATE(3488)] = 181222, + [SMALL_STATE(3489)] = 181229, + [SMALL_STATE(3490)] = 181236, + [SMALL_STATE(3491)] = 181243, + [SMALL_STATE(3492)] = 181250, + [SMALL_STATE(3493)] = 181257, + [SMALL_STATE(3494)] = 181264, + [SMALL_STATE(3495)] = 181271, + [SMALL_STATE(3496)] = 181278, + [SMALL_STATE(3497)] = 181285, + [SMALL_STATE(3498)] = 181292, + [SMALL_STATE(3499)] = 181299, }; static TSParseActionEntry ts_parse_actions[] = { @@ -171766,3491 +169931,4031 @@ static TSParseActionEntry ts_parse_actions[] = { [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(99), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(33), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3401), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3283), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(34), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1677), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1533), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3387), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3285), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3409), - [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), - [57] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_clause, 2, .production_id = 39), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3377), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), - [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3227), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), - [89] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_clause, 2, .production_id = 39), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), - [97] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_clause, 4, .production_id = 62), - [99] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_clause, 4, .production_id = 62), - [101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(226), - [104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(530), - [107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(31), - [110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(815), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3394), + [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), + [59] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_clause, 4, .production_id = 62), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3393), + [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), + [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3234), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), + [91] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_clause, 4, .production_id = 62), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), + [101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(227), + [104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(778), + [107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(37), + [110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(817), [113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(818), - [116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3377), - [119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3377), - [122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3226), - [125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(914), - [128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(2014), - [131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(2011), + [116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3393), + [119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3393), + [122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3233), + [125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(849), + [128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(2114), + [131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(2113), [134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(28), [137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), - [139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3397), - [142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3227), - [145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3243), - [148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(244), - [151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(243), - [154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(242), - [157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(241), - [160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(240), - [163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3416), + [139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3378), + [142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3234), + [145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3251), + [148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(462), + [151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(469), + [154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(476), + [157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(497), + [160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(502), + [163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3407), [166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), - [168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3495), - [171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(275), - [174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(2773), - [177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 3), SHIFT(362), - [180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 3), SHIFT(530), - [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), - [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), - [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), - [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3407), - [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), - [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), - [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), - [197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 3), SHIFT(2014), - [200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 3), SHIFT(2011), - [203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 3), SHIFT(22), - [206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 3), - [208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), - [210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3230), - [212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), - [214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), - [224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_clause, 3), SHIFT(3362), - [227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 3), - [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), - [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), - [235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 1), SHIFT(223), - [238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 1), SHIFT(530), - [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8), - [243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 1), SHIFT(2014), - [246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 1), SHIFT(2011), - [249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 1), SHIFT(22), - [252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 1), - [254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_clause, 1), SHIFT(3362), - [257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 1), - [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), - [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2002), - [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2040), - [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3415), - [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3415), - [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), - [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), - [277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), - [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3266), - [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), - [285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), - [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3400), - [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), - [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), - [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), - [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), - [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), - [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), - [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), - [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2007), - [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), - [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), - [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), - [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), - [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), - [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), - [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), - [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), - [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3396), - [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), - [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), - [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), - [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3406), - [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), - [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3408), - [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), - [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3395), - [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), - [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), - [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3384), - [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), - [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3388), - [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), - [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), - [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3372), - [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), - [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), - [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3418), - [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), - [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3389), - [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), - [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3420), - [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), - [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), - [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2341), - [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), - [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2399), - [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), - [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), - [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), - [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(30), - [460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(530), - [463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(33), - [466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(1658), - [469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(1562), - [472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(3401), - [475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(3401), - [478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(3314), - [481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(1649), - [484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(2014), - [487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(2011), - [490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(24), - [493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), - [495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(3422), - [498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(3283), - [501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(3258), - [504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(402), - [507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(403), - [510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(412), - [513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(414), - [516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(415), - [519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(3409), - [522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(3446), - [525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(418), - [528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(3183), - [531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2107), - [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2364), - [535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), - [537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), - [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3416), - [547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2087), - [549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2354), - [551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), - [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), - [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3362), - [563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), - [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2367), - [567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), - [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), - [571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3402), - [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), - [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), - [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), - [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), - [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), - [589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3311), - [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), - [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), - [603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3369), - [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), - [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), - [611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), - [613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2373), - [615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2334), - [617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), - [619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3364), - [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), - [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), - [625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2335), - [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), - [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2030), - [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), - [637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3307), - [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), - [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), - [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3380), - [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464), - [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), - [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), - [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), - [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2121), - [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), - [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), - [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3398), - [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2191), - [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2337), - [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), - [679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), - [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3373), - [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), - [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), - [687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), - [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), - [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), - [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3278), - [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), - [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), - [713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3379), - [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), - [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), - [721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2075), - [723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2358), - [725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), - [727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), - [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3390), - [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), - [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), - [735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1808), - [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), - [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), - [747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3240), - [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), - [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), - [761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3383), - [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), - [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), - [769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), - [771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2345), - [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), - [775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1861), - [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3361), - [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), - [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), - [783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), - [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1786), - [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), - [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3295), - [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), - [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), - [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3382), - [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), - [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), - [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), - [819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), - [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3411), - [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), - [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), - [827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2392), - [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3260), - [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), - [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), - [845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3404), - [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), - [851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2372), - [853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2658), - [855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), - [857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3242), - [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), - [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), - [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), - [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), - [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), - [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), - [891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2348), - [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), - [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), - [905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3368), - [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), - [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), - [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), - [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), - [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), - [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), - [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), - [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), - [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), - [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), - [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), - [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), - [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), - [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), - [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), - [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), - [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), - [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), - [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), - [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), - [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [1009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), - [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [1015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), - [1017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2676), - [1019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3412), - [1021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), - [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [1025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), - [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), - [1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [1039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [1041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [1043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [1045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), - [1047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(89), - [1050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(530), - [1053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(33), - [1056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(1814), - [1059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(1562), - [1062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3401), - [1065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3401), - [1068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3314), - [1071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(1649), - [1074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(2014), - [1077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(2011), - [1080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(24), - [1083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3422), - [1086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3283), - [1089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3258), - [1092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(402), - [1095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(403), - [1098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(412), - [1101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(414), - [1104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(415), - [1107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3409), - [1110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3446), - [1113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(418), - [1116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3183), - [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), - [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), - [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), - [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [1141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2751), - [1143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3363), - [1145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), - [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2748), - [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3367), - [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), - [1153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source, 1, .production_id = 1), - [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), - [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), - [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), - [1195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2747), - [1197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3386), - [1199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), - [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), - [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), - [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2743), - [1219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3403), - [1221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), - [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), - [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), - [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), - [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), - [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), - [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), - [1251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), - [1253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), - [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [1261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2734), - [1263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3419), - [1265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), - [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), - [1269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2733), - [1271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3374), - [1273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), - [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [1281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), - [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), - [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [1307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), - [1311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), - [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), - [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), - [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [1341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [1345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2719), - [1347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3387), - [1349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), - [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [1355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), - [1357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), - [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [1361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), - [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [1365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), - [1367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2327), - [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [1371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2328), - [1373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), - [1375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), - [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [1379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2329), - [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [1383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2330), - [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [1387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(34), - [1389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), - [1391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), - [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [1395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), - [1397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), - [1399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), - [1401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), - [1403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), - [1405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), - [1407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), - [1409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), - [1411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), - [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [1415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), - [1417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), - [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [1421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), - [1423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [1425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), - [1427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [1429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), - [1431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), - [1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [1435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), - [1437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), - [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [1441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), - [1443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), - [1445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), - [1447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), - [1449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), - [1451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), - [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [1455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), - [1457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), - [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [1461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), - [1463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), - [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [1467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), - [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [1471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), - [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [1475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), - [1477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1810), - [1479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [1481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), - [1483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [1485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), - [1487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [1489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), - [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [1493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), - [1495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), - [1497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), - [1499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), - [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [1503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), - [1505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), - [1507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), - [1509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), - [1511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), - [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [1515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), - [1517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), - [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [1521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), - [1523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [1525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), - [1527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [1529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), - [1531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7), - [1533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), - [1535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), - [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), - [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), - [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), - [1547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), - [1549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), - [1551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1946), - [1553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), - [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), - [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), - [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1944), - [1561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), - [1563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), - [1565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), - [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), - [1569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(35), - [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2250), - [1573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), - [1577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), - [1581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [1583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), - [1585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [1587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), - [1589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [1591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), - [1593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), - [1595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [1597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), - [1599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), - [1601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), - [1603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [1605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), - [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), - [1609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), - [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), - [1615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), - [1617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), - [1619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [1621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), - [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [1625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1739), - [1627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), - [1629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), - [1631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), - [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [1635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), - [1637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), - [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [1641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), - [1643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1760), - [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), - [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [1649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), - [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [1653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), - [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), - [1659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), - [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [1663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), - [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), - [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [1669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), - [1671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), - [1675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [1677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1768), - [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [1681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), - [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), - [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2317), - [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [1691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), - [1693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), - [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), - [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12), - [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1840), - [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [1707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), - [1709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2313), - [1711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [1713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), - [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [1717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1973), - [1719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [1721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), - [1723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1776), - [1725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [1727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), - [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [1731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), - [1733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1777), - [1735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), - [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [1739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), - [1741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2407), - [1743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2305), - [1745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), - [1747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [1749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), - [1751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [1753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1794), - [1755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [1757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), - [1759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [1761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1795), - [1763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [1765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), - [1767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [1769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), - [1771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [1773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1796), - [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [1777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2295), - [1779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [1781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), - [1783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2252), - [1785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [1787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2310), - [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [1791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), - [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [1795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), - [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [1799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1798), - [1801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), - [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [1805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), - [1807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2304), - [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [1811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), - [1813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), - [1815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), - [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [1819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), - [1821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), - [1823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2298), - [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [1827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), - [1829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), - [1831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), - [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [1835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), - [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [1839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), - [1841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), - [1843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), - [1845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), - [1847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [1849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), - [1851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), - [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [1855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), - [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [1859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), - [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [1863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), - [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [1867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), - [1869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), - [1871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), - [1873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), - [1875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), - [1877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), - [1879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), - [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [1883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), - [1885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2248), - [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [1889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2292), - [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [1893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), - [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [1897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), - [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [1901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), - [1903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), - [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [1907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), - [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [1911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), - [1913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), - [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [1917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), - [1919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), - [1921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), - [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [1925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2291), - [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [1929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), - [1931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2287), - [1933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2194), - [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2247), - [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [1941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2246), - [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [1945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2241), - [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [1949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), - [1951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), - [1953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), - [1955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9), - [1957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), - [1959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), - [1961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), - [1963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2195), - [1965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), - [1967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), - [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [1971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), - [1973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1992), - [1975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1986), - [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [1979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), - [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [1983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), - [1985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), - [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [1989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), - [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [1993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), - [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [1997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), - [1999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), - [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [2003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), - [2005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), - [2007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), - [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), - [2011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), - [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [2015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), - [2017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), - [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [2021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), - [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [2025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), - [2027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), - [2029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2116), - [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [2033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), - [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [2037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2100), - [2039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), - [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [2043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), - [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [2047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), - [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [2053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1558), - [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [2057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), - [2059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), - [2061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1966), - [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [2065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), - [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [2069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), - [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), - [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), - [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [2083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), - [2085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), - [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [2089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), - [2091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2258), - [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [2095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1540), - [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [2099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), - [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [2103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), - [2105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2098), - [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [2109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), - [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [2113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(43), - [2115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), - [2117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2096), - [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [2125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), - [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [2129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), - [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [2133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), - [2135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), - [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [2139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2088), - [2141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), - [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [2145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2085), - [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [2149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2406), - [2151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), - [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [2155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), - [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [2159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), - [2161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), - [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [2165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), - [2167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), - [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [2173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), - [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [2177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), - [2179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), - [2181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), - [2183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), - [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [2189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), - [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [2193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), - [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [2197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), - [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [2201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), - [2203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), - [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [2207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), - [2209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), - [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [2213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1375), - [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [2217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), - [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [2221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), - [2223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), - [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [2227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), - [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [2231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), - [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [2235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), - [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [2239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), - [2241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), - [2243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), - [2245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), - [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [2249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), - [2251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), - [2253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2114), - [2255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), - [2257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), - [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [2261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), - [2263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), - [2265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), - [2267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), - [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [2271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), - [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [2275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), - [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [2279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), - [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [2283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), - [2285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), - [2287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), - [2289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), - [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [2293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), - [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [2297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), - [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [2301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), - [2303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), - [2305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), - [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [2309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), - [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [2313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), - [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [2317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), - [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [2321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), - [2323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), - [2325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), - [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [2329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2326), - [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [2333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), - [2335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), - [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [2339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), - [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [2343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1907), - [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [2347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), - [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [2351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), - [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [2357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), - [2359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), - [2361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), - [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [2365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), - [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [2369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), - [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [2375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), - [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [2381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), - [2383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), - [2385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), - [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [2389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), - [2391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), - [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [2395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), - [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [2399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2133), - [2401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1908), - [2403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), - [2405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), - [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [2409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), - [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [2415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), - [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [2419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), - [2421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), - [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [2425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), - [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [2429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), - [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [2433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), - [2435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), - [2437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), - [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [2441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), - [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [2445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), - [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [2449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), - [2451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), - [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [2455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), - [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [2459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), - [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [2463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), - [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [2467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), - [2469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), - [2471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), - [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [2475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), - [2477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), - [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [2481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), - [2483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), - [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [2487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), - [2489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), - [2491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), - [2493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), - [2495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), - [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [2501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), - [2503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), - [2505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), - [2507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), - [2509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), - [2511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), - [2513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), - [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [2517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), - [2519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), - [2521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), - [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [2525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), - [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [2529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), - [2531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), - [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [2535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), - [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [2539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1901), - [2541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), - [2543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), - [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [2547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), - [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [2551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), - [2553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), - [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [2557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), - [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [2561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), - [2563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1899), - [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [2567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1898), - [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [2571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), - [2573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1648), - [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [2577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), - [2579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1885), - [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [2583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), - [2585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1917), - [2587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), - [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [2591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), - [2593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), - [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [2597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1918), - [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [2601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1894), - [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [2605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1893), - [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [2609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), - [2611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), - [2613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), - [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [2617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1903), - [2619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), - [2621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), - [2623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), - [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [2629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), - [2631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), - [2633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), - [2635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1889), - [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [2639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1888), - [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [2645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1887), - [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [2651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), - [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [2659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), - [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [2663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), - [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [2673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), - [2675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), - [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [2679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), - [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [2689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), - [2691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), - [2693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), - [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [2697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1884), - [2699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1883), - [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [2705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), - [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [2709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1881), - [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [2715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), - [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [2723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), - [2725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), - [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [2729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), - [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [2733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), - [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [2737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), - [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [2741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), - [2743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), - [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [2747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), - [2749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1875), - [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [2753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1874), - [2755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), - [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [2759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1872), - [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [2765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), - [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [2769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), - [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [2773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), - [2775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), - [2777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [2779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), - [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [2783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [2785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), - [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [2789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), - [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [2793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), - [2795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), - [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [2799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1989), - [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [2805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [2813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), - [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [2819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), - [2821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [2823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), - [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [2831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), - [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [2835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), - [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [2839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), - [2841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1984), - [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [2847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), - [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [2851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), - [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [2855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1964), - [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [2861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1963), - [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [2865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), - [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [2869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1959), - [2871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), - [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [2875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), - [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [2879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), - [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [2883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), - [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [2887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1955), - [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [2891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1954), - [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [2895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951), - [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [2899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), - [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [2903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), - [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [2907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), - [2909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), - [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [2917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), - [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [2921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1942), - [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [2925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), - [2927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), - [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [2931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), - [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [2937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938), - [2939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), - [2941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1890), - [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [2945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), - [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [2949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), - [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [2953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), - [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [2957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), - [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [2963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), - [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [2969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1931), - [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [2975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), - [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [2979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), - [2981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), - [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [2985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), - [2987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1929), - [2989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), - [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [2993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), - [2995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), - [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [2999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1926), - [3001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), - [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [3005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), - [3007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), - [3009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), - [3011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1925), - [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [3015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), - [3017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 3, .production_id = 39), - [3019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 3, .production_id = 39), - [3021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(814), - [3024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(168), - [3027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_dis_expr_repeat1, 2), - [3029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), - [3031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 1, .production_id = 1), SHIFT_REPEAT(816), - [3034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 1, .production_id = 1), SHIFT_REPEAT(168), - [3037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 1, .production_id = 1), - [3039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 1, .production_id = 1), - [3041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 1), - [3043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 1), - [3045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 39), SHIFT_REPEAT(813), - [3048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 39), SHIFT_REPEAT(168), - [3051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 39), - [3053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 39), - [3055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_num_lit, 1), - [3057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_num_lit, 1), - [3059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), - [3061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_reader_macro, 4, .production_id = 48), - [3063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_reader_macro, 4, .production_id = 48), - [3065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_macro, 3, .production_id = 25), - [3067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_macro, 3, .production_id = 25), - [3069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_lit, 2), - [3071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_lit, 2), - [3073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__form, 2), - [3075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__form, 2), - [3077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3414), - [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), - [3081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_vec_lit, 2, .production_id = 9), - [3083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_vec_lit, 2, .production_id = 9), - [3085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_num_lit, 2), - [3087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_num_lit, 2), - [3089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun, 5, .production_id = 53), - [3091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun, 5, .production_id = 53), - [3093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_kwd_lit, 2), - [3095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_kwd_lit, 2), - [3097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_str_lit, 2), - [3099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_str_lit, 2), - [3101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_list_lit, 2, .production_id = 11), - [3103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_list_lit, 2, .production_id = 11), - [3105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_read_cond_lit, 2, .production_id = 13), - [3107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_read_cond_lit, 2, .production_id = 13), - [3109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splicing_read_cond_lit, 2, .production_id = 13), - [3111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splicing_read_cond_lit, 2, .production_id = 13), - [3113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_quoting_lit, 2, .production_id = 7), - [3115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_quoting_lit, 2, .production_id = 7), - [3117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoting_lit, 2, .production_id = 7), - [3119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoting_lit, 2, .production_id = 7), - [3121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_syn_quoting_lit, 2, .production_id = 7), - [3123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_syn_quoting_lit, 2, .production_id = 7), - [3125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquote_splicing_lit, 2, .production_id = 7), - [3127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquote_splicing_lit, 2, .production_id = 7), - [3129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoting_lit, 2, .production_id = 7), - [3131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoting_lit, 2, .production_id = 7), - [3133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path_lit, 2, .production_id = 14), - [3135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path_lit, 2, .production_id = 14), - [3137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_lit, 2, .production_id = 16), - [3139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_lit, 2, .production_id = 16), - [3141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_lit, 2, .production_id = 17), - [3143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_lit, 2, .production_id = 17), - [3145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dis_expr, 3, .production_id = 19), - [3147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dis_expr, 3, .production_id = 19), - [3149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__form, 3, .production_id = 21), - [3151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__form, 3, .production_id = 21), - [3153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_set_lit, 3, .production_id = 22), - [3155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_set_lit, 3, .production_id = 22), - [3157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_vec_lit, 3, .production_id = 9), - [3159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_vec_lit, 3, .production_id = 9), - [3161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_str_lit, 3), - [3163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_str_lit, 3), - [3165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun, 3, .production_id = 25), - [3167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun, 3, .production_id = 25), - [3169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_list_lit, 3, .production_id = 27), - [3171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_list_lit, 3, .production_id = 27), - [3173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_read_cond_lit, 3, .production_id = 29), - [3175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_read_cond_lit, 3, .production_id = 29), - [3177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splicing_read_cond_lit, 3, .production_id = 29), - [3179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splicing_read_cond_lit, 3, .production_id = 29), - [3181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_quoting_lit, 3, .production_id = 19), - [3183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_quoting_lit, 3, .production_id = 19), - [3185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoting_lit, 3, .production_id = 19), - [3187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoting_lit, 3, .production_id = 19), - [3189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_syn_quoting_lit, 3, .production_id = 19), - [3191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_syn_quoting_lit, 3, .production_id = 19), - [3193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquote_splicing_lit, 3, .production_id = 19), - [3195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquote_splicing_lit, 3, .production_id = 19), - [3197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoting_lit, 3, .production_id = 19), - [3199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoting_lit, 3, .production_id = 19), - [3201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_lit, 3, .production_id = 30), - [3203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_lit, 3, .production_id = 30), - [3205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_reader_macro, 3, .production_id = 31), - [3207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_reader_macro, 3, .production_id = 31), - [3209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_read_cond_lit, 3, .production_id = 32), - [3211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_read_cond_lit, 3, .production_id = 32), - [3213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splicing_read_cond_lit, 3, .production_id = 32), - [3215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splicing_read_cond_lit, 3, .production_id = 32), - [3217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_quoting_lit, 3, .production_id = 33), - [3219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_quoting_lit, 3, .production_id = 33), - [3221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoting_lit, 3, .production_id = 33), - [3223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoting_lit, 3, .production_id = 33), - [3225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquote_splicing_lit, 3, .production_id = 33), - [3227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquote_splicing_lit, 3, .production_id = 33), - [3229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__form, 4, .production_id = 34), - [3231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__form, 4, .production_id = 34), - [3233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_set_lit, 4, .production_id = 35), - [3235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_set_lit, 4, .production_id = 35), - [3237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_str_lit, 4), - [3239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_str_lit, 4), - [3241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_macro, 4, .production_id = 40), - [3243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_macro, 4, .production_id = 40), - [3245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun, 4, .production_id = 40), - [3247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun, 4, .production_id = 40), - [3249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun, 5, .production_id = 50), - [3251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun, 5, .production_id = 50), - [3253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_reader_macro, 4, .production_id = 44), - [3255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_reader_macro, 4, .production_id = 44), - [3257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_reader_macro, 4, .production_id = 45), - [3259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_reader_macro, 4, .production_id = 45), - [3261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_read_cond_lit, 4, .production_id = 46), - [3263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_read_cond_lit, 4, .production_id = 46), - [3265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splicing_read_cond_lit, 4, .production_id = 46), - [3267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splicing_read_cond_lit, 4, .production_id = 46), - [3269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_quoting_lit, 4, .production_id = 47), - [3271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_quoting_lit, 4, .production_id = 47), - [3273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoting_lit, 4, .production_id = 47), - [3275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoting_lit, 4, .production_id = 47), - [3277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquote_splicing_lit, 4, .production_id = 47), - [3279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquote_splicing_lit, 4, .production_id = 47), - [3281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__form, 1), - [3283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__form, 1), - [3285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_macro, 5, .production_id = 50), - [3287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_macro, 5, .production_id = 50), - [3289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun, 4, .production_id = 43), - [3291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun, 4, .production_id = 43), - [3293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_kwd_symbol, 1), - [3295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_kwd_symbol, 1), - [3297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_reader_macro, 5, .production_id = 57), - [3299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_reader_macro, 5, .production_id = 57), - [3301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 5, .production_id = 58), - [3303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 5, .production_id = 58), - [3305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_reader_macro, 5, .production_id = 59), - [3307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_reader_macro, 5, .production_id = 59), - [3309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_reader_macro, 5, .production_id = 60), - [3311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_reader_macro, 5, .production_id = 60), - [3313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_macro, 6, .production_id = 61), - [3315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_macro, 6, .production_id = 61), - [3317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun, 6, .production_id = 66), - [3319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun, 6, .production_id = 66), - [3321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 6, .production_id = 58), - [3323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 6, .production_id = 58), - [3325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 6, .production_id = 71), - [3327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 6, .production_id = 71), - [3329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 6, .production_id = 72), - [3331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 6, .production_id = 72), - [3333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_reader_macro, 6, .production_id = 73), - [3335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_reader_macro, 6, .production_id = 73), - [3337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 6, .production_id = 74), - [3339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 6, .production_id = 74), - [3341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_macro, 7, .production_id = 82), - [3343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_macro, 7, .production_id = 82), - [3345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 7, .production_id = 71), - [3347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 7, .production_id = 71), - [3349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 7, .production_id = 72), - [3351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 7, .production_id = 72), - [3353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 7, .production_id = 86), - [3355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 7, .production_id = 86), - [3357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 7, .production_id = 87), - [3359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 7, .production_id = 87), - [3361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 7, .production_id = 74), - [3363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 7, .production_id = 74), - [3365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 7, .production_id = 88), - [3367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 7, .production_id = 88), - [3369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 7, .production_id = 89), - [3371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 7, .production_id = 89), - [3373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 8, .production_id = 86), - [3375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 8, .production_id = 86), - [3377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 8, .production_id = 87), - [3379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 8, .production_id = 87), - [3381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 8, .production_id = 100), - [3383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 8, .production_id = 100), - [3385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 8, .production_id = 88), - [3387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 8, .production_id = 88), - [3389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sym_lit, 1), - [3391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sym_lit, 1), - [3393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 8, .production_id = 89), - [3395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 8, .production_id = 89), - [3397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 8, .production_id = 101), - [3399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 8, .production_id = 101), - [3401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 8, .production_id = 102), - [3403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 8, .production_id = 102), - [3405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 9, .production_id = 100), - [3407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 9, .production_id = 100), - [3409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 9, .production_id = 101), - [3411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 9, .production_id = 101), - [3413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 9, .production_id = 102), - [3415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 9, .production_id = 102), - [3417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 9, .production_id = 114), - [3419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 9, .production_id = 114), - [3421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 10, .production_id = 114), - [3423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 10, .production_id = 114), - [3425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dis_expr, 2, .production_id = 7), - [3427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dis_expr, 2, .production_id = 7), - [3429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_lit, 1, .production_id = 6), - [3431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_lit, 1, .production_id = 6), - [3433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_lit, 1, .production_id = 5), - [3435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_lit, 1, .production_id = 5), - [3437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(940), - [3440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(300), - [3443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 90), SHIFT(2013), - [3446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 90), SHIFT(410), - [3449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 90), - [3451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 90), SHIFT(3494), - [3454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 6, .production_id = 90), - [3456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 51), SHIFT(2013), - [3459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 51), SHIFT(410), - [3462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 51), - [3464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 51), SHIFT(3494), - [3467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 3, .production_id = 51), - [3469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 77), SHIFT(2013), - [3472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 77), SHIFT(410), - [3475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 77), - [3477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 77), SHIFT(3494), - [3480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 5, .production_id = 77), - [3482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 78), SHIFT(2013), - [3485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 78), SHIFT(410), - [3488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 78), - [3490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 78), SHIFT(3494), - [3493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 5, .production_id = 78), - [3495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 8, .production_id = 115), SHIFT(2013), - [3498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 8, .production_id = 115), SHIFT(410), - [3501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 8, .production_id = 115), - [3503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 8, .production_id = 115), SHIFT(3494), - [3506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 8, .production_id = 115), - [3508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 75), SHIFT(2013), - [3511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 75), SHIFT(410), - [3514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 75), - [3516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 75), SHIFT(3494), - [3519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 5, .production_id = 75), - [3521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 63), SHIFT(2013), - [3524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 63), SHIFT(410), - [3527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 63), - [3529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 63), SHIFT(3494), - [3532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 4, .production_id = 63), - [3534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 7, .production_id = 103), SHIFT(2013), - [3537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 7, .production_id = 103), SHIFT(410), - [3540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 7, .production_id = 103), - [3542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 7, .production_id = 103), SHIFT(3494), - [3545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 7, .production_id = 103), - [3547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 64), SHIFT(2013), - [3550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 64), SHIFT(410), - [3553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 64), - [3555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 64), SHIFT(3494), - [3558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 4, .production_id = 64), - [3560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(2013), - [3563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(410), - [3566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_clause_repeat1, 2, .production_id = 15), - [3568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3494), - [3571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(1832), - [3574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(1832), - [3577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_for_clause_repeat1, 2, .production_id = 15), - [3579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 91), SHIFT(2013), - [3582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 91), SHIFT(410), - [3585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 91), - [3587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 91), SHIFT(3494), - [3590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 6, .production_id = 91), - [3592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 7, .production_id = 104), SHIFT(2013), - [3595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 7, .production_id = 104), SHIFT(410), - [3598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 7, .production_id = 104), - [3600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 7, .production_id = 104), SHIFT(3494), - [3603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 7, .production_id = 104), - [3605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 93), SHIFT(2013), - [3608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 93), SHIFT(410), - [3611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 93), - [3613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 93), SHIFT(3494), - [3616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 6, .production_id = 93), - [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), - [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), - [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), - [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), - [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), - [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), - [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), - [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [3658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [3660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), - [3662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), - [3664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), - [3666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [3668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [3672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [3678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), - [3682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [3684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [3686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [3688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [3694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), - [3696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [3700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), - [3702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(981), - [3705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(736), - [3708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(2010), - [3711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(2022), - [3714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(25), - [3717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), - [3719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(3450), - [3722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(1834), - [3725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(307), - [3728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(6), - [3731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(304), - [3734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(138), - [3737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(269), - [3740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(298), - [3743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(296), - [3746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(1922), - [3749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(289), - [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), - [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), - [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), - [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), - [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), - [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), - [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), - [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), - [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), - [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), - [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), - [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), - [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), - [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), - [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), - [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), - [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), - [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [3880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3376), - [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), - [3884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3399), - [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), - [3888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), - [3890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_clause_repeat1, 1, .production_id = 1), - [3892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_for_clause_repeat1, 1, .production_id = 1), - [3894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_part, 4, .production_id = 62), - [3896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_part, 4, .production_id = 62), - [3898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_part, 2, .production_id = 39), - [3900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_part, 2, .production_id = 39), - [3902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_part, 3, .production_id = 52), - [3904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_part, 3, .production_id = 52), - [3906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 1), - [3908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 1), - [3910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3462), - [3912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), - [3914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3424), - [3916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1036), - [3918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3432), - [3920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), - [3922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3488), - [3924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(985), - [3926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3425), - [3928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), - [3930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3467), - [3932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), - [3934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3458), - [3936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), - [3938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3448), - [3940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), - [3942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3431), - [3944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), - [3946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3436), - [3948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), - [3950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), - [3952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1862), - [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), - [3956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), - [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), - [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), - [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), - [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), - [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), - [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), - [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), - [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), - [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), - [3984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [3986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), - [3988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [3990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), - [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [3998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3417), - [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), - [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), - [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), - [4008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [4010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [4014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), - [4016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3385), - [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), - [4020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(1656), - [4023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(205), - [4026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(1657), - [4029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(530), - [4032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 1, .production_id = 12), - [4034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 1, .production_id = 12), - [4036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), - [4038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 7, .production_id = 99), - [4040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 7, .production_id = 99), - [4042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 6, .production_id = 85), - [4044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 6, .production_id = 85), - [4046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 6, .production_id = 84), - [4048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 6, .production_id = 84), - [4050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 6, .production_id = 83), - [4052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 6, .production_id = 83), - [4054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 2, .production_id = 26), - [4056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 2, .production_id = 26), - [4058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 5, .production_id = 70), - [4060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 5, .production_id = 70), - [4062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 5, .production_id = 69), - [4064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 5, .production_id = 69), - [4066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 5, .production_id = 68), - [4068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 5, .production_id = 68), - [4070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 5, .production_id = 67), - [4072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 5, .production_id = 67), - [4074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 3, .production_id = 42), - [4076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 3, .production_id = 42), - [4078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3371), - [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), - [4082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 1, .production_id = 1), - [4084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 1, .production_id = 1), - [4086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 4, .production_id = 55), - [4088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 4, .production_id = 55), - [4090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3365), - [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), - [4094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 3, .production_id = 41), - [4096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 3, .production_id = 41), - [4098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 4, .production_id = 54), - [4100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 4, .production_id = 54), - [4102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 4, .production_id = 56), - [4104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 4, .production_id = 56), - [4106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_keyword, 1), - [4108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_keyword, 1), - [4110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_accumulation_clause, 3, .production_id = 52), SHIFT(2735), - [4113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_accumulation_clause, 3, .production_id = 52), SHIFT(511), - [4116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 3, .production_id = 52), - [4118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_accumulation_clause, 3, .production_id = 52), SHIFT(3440), - [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [4123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause_word, 1), - [4125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause_word, 1), - [4127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_verb, 3), - [4129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accumulation_verb, 3), - [4131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_verb, 1), - [4133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accumulation_verb, 1), - [4135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause_word, 3), - [4137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause_word, 3), - [4139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_keyword, 3), - [4141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_keyword, 3), - [4143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_accumulation_clause, 2, .production_id = 39), SHIFT(2720), - [4146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_accumulation_clause, 2, .production_id = 39), SHIFT(511), - [4149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 2, .production_id = 39), - [4151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_accumulation_clause, 2, .production_id = 39), SHIFT(3442), - [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [4156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), - [4158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_prefix_parameters, 1), - [4160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_prefix_parameters, 1), - [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), - [4164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 9, .production_id = 136), - [4166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 129), - [4168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 124), - [4170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 125), - [4172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 123), - [4174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 122), - [4176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 121), - [4178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 119), - [4180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 120), - [4182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 65), - [4184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 118), - [4186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 116), - [4188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 126), - [4190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 117), - [4192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 109), - [4194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 7, .production_id = 111), - [4196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 7, .production_id = 108), - [4198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 141), - [4200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 105), - [4202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 112), - [4204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 111), - [4206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 110), - [4208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 108), - [4210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 107), - [4212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 106), - [4214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 6, .production_id = 97), - [4216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 6, .production_id = 94), - [4218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 97), - [4220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 13, .production_id = 156), - [4222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 155), - [4224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 154), - [4226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 153), - [4228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 152), - [4230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 151), - [4232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 98), - [4234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 150), - [4236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 149), - [4238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 148), - [4240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 1), - [4242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_clause, 1), - [4244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 147), - [4246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 146), - [4248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 96), - [4250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 145), - [4252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 144), - [4254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 143), - [4256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 94), - [4258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 95), - [4260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 142), - [4262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 128), - [4264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 140), - [4266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 139), - [4268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 138), - [4270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_termination_clause, 3, .production_id = 52), - [4272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 3, .production_id = 52), - [4274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_clause, 3, .production_id = 52), - [4276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_clause, 3, .production_id = 52), - [4278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 137), - [4280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 136), - [4282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 92), - [4284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 113), - [4286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 135), - [4288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 134), - [4290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 133), - [4292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 132), - [4294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 5, .production_id = 81), - [4296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 130), - [4298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 5, .production_id = 79), - [4300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 131), - [4302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 81), - [4304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_clause, 2, .production_id = 39), - [4306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 79), - [4308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 3), - [4310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_clause, 4, .production_id = 62), - [4312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_clause, 4, .production_id = 62), - [4314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 4, .production_id = 62), - [4316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_termination_clause, 4, .production_id = 62), - [4318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 80), - [4320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 2, .production_id = 39), - [4322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_clause, 2, .production_id = 39), - [4324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_termination_clause, 2, .production_id = 39), - [4326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 127), - [4328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_termination_clause, 5, .production_id = 76), - [4330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 4, .production_id = 65), - [4332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 8, .production_id = 124), - [4334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 8, .production_id = 122), - [4336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 5, .production_id = 76), - [4338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_clause, 5, .production_id = 76), - [4340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_clause, 5, .production_id = 76), - [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), - [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), - [4348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_modifiers, 2), - [4350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_modifiers, 1), - [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), - [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), - [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), - [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), - [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3307), - [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), - [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), - [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), - [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), - [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), - [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), - [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), - [4388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(2023), - [4391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(410), - [4394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3366), - [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), - [4398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3427), - [4400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3324), - [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), - [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), - [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), - [4418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3456), - [4420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3296), - [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), - [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), - [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), - [4438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3469), - [4440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3280), - [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), - [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), - [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), - [4458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3497), - [4460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3221), - [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), - [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), - [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), - [4478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3449), - [4480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3273), - [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), - [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), - [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), - [4498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), - [4500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3470), - [4502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3284), - [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), - [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), - [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), - [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [4530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3213), - [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), - [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [4544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3496), - [4546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3248), - [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), - [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), - [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), - [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [4576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3274), - [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), - [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [4590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3463), - [4592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3214), - [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), - [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), - [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), - [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3299), - [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [4622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3484), - [4624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3236), - [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), - [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), - [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), - [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), - [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), - [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), - [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), - [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), - [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), - [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), - [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), - [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), - [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), - [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), - [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), - [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), - [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), - [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), - [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [4676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__metadata_lit, 2, .production_id = 4), - [4678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__metadata_lit, 2, .production_id = 4), - [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), - [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), - [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), - [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), - [4688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__metadata_lit, 2, .production_id = 3), - [4690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__metadata_lit, 2, .production_id = 3), - [4692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(2213), - [4695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(419), - [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), - [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), - [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), - [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), - [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), - [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), - [4728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__metadata_lit, 1, .production_id = 4), - [4730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__metadata_lit, 1, .production_id = 4), - [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), - [4734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__metadata_lit, 1, .production_id = 3), - [4736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__metadata_lit, 1, .production_id = 3), - [4738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3370), - [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), - [4742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), - [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [4746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_map_lit, 3, .production_id = 27), - [4748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_map_lit, 3, .production_id = 27), - [4750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_old_meta_lit, 3, .production_id = 24), - [4752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_old_meta_lit, 3, .production_id = 24), - [4754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_lit, 2, .production_id = 16), - [4756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_lit, 2, .production_id = 16), - [4758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_lit, 3, .production_id = 24), - [4760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_lit, 3, .production_id = 24), - [4762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_map_lit, 2, .production_id = 11), - [4764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_map_lit, 2, .production_id = 11), - [4766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_lit, 2, .production_id = 10), - [4768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_lit, 2, .production_id = 10), - [4770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_lit, 1, .production_id = 5), - [4772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_lit, 1, .production_id = 5), - [4774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_lit_repeat1, 2, .production_id = 18), - [4776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_lit_repeat1, 2, .production_id = 18), SHIFT_REPEAT(2014), - [4779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_lit_repeat1, 2, .production_id = 18), SHIFT_REPEAT(2011), - [4782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_lit_repeat1, 2, .production_id = 18), - [4784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_old_meta_lit, 2, .production_id = 10), - [4786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_old_meta_lit, 2, .production_id = 10), - [4788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_lit_repeat1, 1, .production_id = 2), - [4790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_lit_repeat1, 1, .production_id = 2), - [4792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2294), - [4794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(2238), - [4797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(708), - [4800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(2261), - [4803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(435), - [4806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__format_token, 1, .production_id = 23), - [4808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__format_token, 1, .production_id = 23), - [4810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_format_modifiers_repeat1, 1), - [4812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_modifiers_repeat1, 1), - [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), - [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), - [4818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__format_token, 2), - [4820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__format_token, 2), - [4822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(2336), - [4825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(411), - [4828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_dimension, 1), - [4830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3381), - [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3381), - [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), - [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), - [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), - [4842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_modifiers_repeat1, 2), SHIFT_REPEAT(2265), - [4845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_modifiers_repeat1, 2), - [4847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_modifiers_repeat1, 2), SHIFT_REPEAT(3485), - [4850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_modifiers_repeat1, 2), SHIFT_REPEAT(2381), - [4853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_format_modifiers_repeat1, 2), - [4855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(2397), - [4858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(606), - [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [4863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), - [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), - [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), - [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), - [4871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3405), - [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), - [4875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(2405), - [4878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(511), - [4881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_lit_repeat1, 2, .production_id = 18), SHIFT_REPEAT(2010), - [4884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_lit_repeat1, 2, .production_id = 18), SHIFT_REPEAT(2022), - [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), - [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), - [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), - [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), - [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), - [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), - [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), - [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), - [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), - [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), - [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), - [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), - [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), - [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), - [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), - [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), - [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), - [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), - [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), - [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), - [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), - [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), - [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), - [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), - [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), - [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), - [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), - [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), - [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), - [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), - [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), - [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), - [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), - [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), - [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), - [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), - [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), - [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), - [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), - [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), - [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), - [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), - [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), - [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), - [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), - [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), - [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), - [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), - [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), - [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), - [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), - [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), - [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), - [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), - [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), - [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), - [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), - [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), - [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), - [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), - [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), - [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), - [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), - [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), - [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), - [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), - [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), - [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), - [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), - [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), - [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), - [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), - [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), - [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), - [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), - [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), - [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), - [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), - [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), - [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), - [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), - [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), - [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), - [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), - [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), - [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), - [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), - [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), - [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), - [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), - [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), - [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3434), - [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), - [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), - [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), - [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), - [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), - [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), - [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), - [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), - [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), - [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), - [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), - [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), - [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), - [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), - [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), - [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), - [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), - [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), - [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), - [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), - [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), - [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), - [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), - [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), - [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), - [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), - [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), - [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), - [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), - [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), - [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), - [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), - [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), - [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), - [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), - [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), - [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), - [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), - [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), - [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), - [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), - [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), - [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), - [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), - [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), - [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), - [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), - [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), - [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), - [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), - [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), - [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), - [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), - [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), - [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), - [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), - [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), - [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), - [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), - [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), - [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), - [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), - [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), - [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), - [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), - [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), - [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), - [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), - [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), - [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), - [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), - [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), - [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), - [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), - [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), - [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), - [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), - [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), - [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), - [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), - [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), - [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), - [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3481), - [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3483), - [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), - [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), - [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), - [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), - [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), - [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), - [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), - [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), - [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), - [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), - [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), - [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), - [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), - [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), - [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), - [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), - [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), - [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), - [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), - [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), - [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), - [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), - [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), - [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), - [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), - [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), - [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), - [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), - [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), - [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), - [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), - [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), - [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), - [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), - [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), - [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), - [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), - [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), - [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), - [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), - [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), - [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), - [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), - [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), - [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), - [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), - [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), - [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), - [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), - [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), - [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), - [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), - [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), - [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), - [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), - [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), - [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), - [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), - [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), - [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), - [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), - [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), - [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), - [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), - [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), - [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), - [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), - [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), - [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), - [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), - [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), - [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), - [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [5491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), - [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), - [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), - [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [5509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), - [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), - [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), - [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), - [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [5541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), - [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), - [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), - [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), - [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), - [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), - [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), - [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), - [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), - [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), - [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), - [5571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), - [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), - [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), - [5577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), - [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), - [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), - [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), - [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), - [5587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), - [5589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), - [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), - [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), - [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), - [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), - [5599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), - [5601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), - [5603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), - [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), - [5607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), - [5609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), - [5611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), - [5613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), - [5615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), - [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), - [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), - [5621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), - [5623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), - [5625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), - [5627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), - [5629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), - [5631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), - [5633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), - [5635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), - [5637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), - [5639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), - [5641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), - [5643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), - [5645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), - [5647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), - [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), - [5651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [5653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), - [5655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), - [5657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), - [5659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [5661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), - [5663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), - [5665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), - [5667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [5669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), - [5671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [5673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), - [5675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), - [5677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), - [5679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), - [5681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), - [5683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), - [5685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), - [5687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), - [5689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), - [5691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), - [5693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), - [5695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), - [5697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), - [5699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), - [5701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [5703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), - [5705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), - [5707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), - [5709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), - [5711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), - [5713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), - [5715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), - [5717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), - [5719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), - [5721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), - [5723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), - [5725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), - [5727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [5729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), - [5731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), - [5733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), - [5735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), - [5737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), - [5739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), - [5741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), - [5743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), - [5745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), - [5747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), - [5749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), - [5751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), - [5753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), - [5755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), - [5757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), - [5759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [5761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), - [5763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), - [5765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), - [5767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), - [5769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), - [5771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), - [5773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), - [5775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), - [5777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), - [5779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), - [5781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), - [5783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), - [5785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), - [5787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), - [5789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), - [5791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), - [5793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), - [5795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), - [5797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), - [5799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), - [5801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), - [5803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), - [5805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), - [5807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), - [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), - [5811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), - [5813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), - [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), - [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), - [5819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), - [5821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), - [5823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), - [5825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), - [5827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), - [5829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), - [5831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), - [5833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), - [5835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), - [5837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), - [5839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [5841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), - [5843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), - [5845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [5847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [5849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), - [5851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), - [5853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [5855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), - [5857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [5859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [5861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [5863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), - [5865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [5867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [5869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), - [5871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [5873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), - [5875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [5877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [5879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [5881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [5883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), - [5885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [5887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [5889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [5891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [5893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), - [5895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), - [5899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [5901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [5903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [5905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [5909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), - [5911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), - [5913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), - [5915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [5917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [5919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [5921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [5923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), - [5925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [5927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [5929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), - [5931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [5933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), - [5935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), - [5937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [5939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [5941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), - [5943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [5945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [5947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), - [5949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [5951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), - [5953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [5955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), - [5957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), - [5959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [5961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), - [5963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), - [5965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [5967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), - [5969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [5971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), - [5973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [5975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), - [5977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [5979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [5981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [5983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [5985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), - [5987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [5989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), - [5991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [5993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), - [5995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [5997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), - [5999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [6001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [6003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [6005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [6007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), - [6009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [6011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), - [6013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [6017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), - [6019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [6021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), - [6023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [6025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), - [6027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [6029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [6031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), - [6033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [6035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), - [6037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [6039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), - [6041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [6043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [6045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [6047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), - [6049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [6051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [6053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [6055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), - [6057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [6059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [6061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), - [6063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [6065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), - [6067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [6069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [6071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [6073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), - [6075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [6077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [6079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), - [6081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [6083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), - [6085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [6087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [6089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [6091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [6093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [6095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), - [6097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [6099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [6101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [6103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [6105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), - [6107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [6109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [6111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [6113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), - [6115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), - [6117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [6119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), - [6121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [6123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), - [6125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [6127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), - [6129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [6131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), - [6133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [6135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), - [6137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [6139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [6141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [6143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), - [6145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [6147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), - [6149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [6151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [6153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), - [6155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [6157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), - [6159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [6161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), - [6163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), - [6165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), - [6167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), - [6169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [6171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), - [6173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), - [6175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [6177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), - [6179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), - [6181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), - [6183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), - [6185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), - [6187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), - [6189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [6191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), - [6193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [6195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), - [6197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [6199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), - [6201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [6203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), - [6205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), - [6207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), - [6209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [6211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), - [6213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), - [6215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), - [6217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [6219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), - [6221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [6223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), - [6225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [6227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), - [6229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [6231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), - [6233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [6235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [6237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), - [6239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [6241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), - [6243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [6245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [6247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), - [6249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [6251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), - [6253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [6255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), - [6257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [6259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [6261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), - [6263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [6265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), - [6267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), - [6269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1839), - [6271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), - [6273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [6275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), - [6277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [6279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [6281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [6283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [6285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), - [6287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [6289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [6291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [6293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), - [6295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [6297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [6299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), - [6301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [6303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), - [6305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [6307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [6309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), - [6311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [6313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [6315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), - [6317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [6319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [6321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), - [6323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [6325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), - [6327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), - [6329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [6331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), - [6333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [6335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [6337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [6339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [6341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), - [6343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [6345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), - [6347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [6349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), - [6351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [6353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [6355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [6357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), - [6359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [6361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [6363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [6365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), - [6367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), - [6369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), - [6371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [6373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), - [6375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), - [6377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), - [6379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), - [6381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), - [6383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), - [6385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), - [6387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), - [6389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), - [6391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), - [6393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), - [6395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), - [6397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), - [6399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), - [6401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), - [6403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), - [6405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [6407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), - [6409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), - [6411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), - [6413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), - [6415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), - [6417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), - [6419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), - [6421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), - [6423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), - [6425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), - [6427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), - [6429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), - [6431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), - [6433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), - [6435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), - [6437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), - [6439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [6441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), - [6443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), - [6445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), - [6447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [6449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), - [6451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [6453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [6455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [6457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [6459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), - [6461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), - [6463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [6465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), - [6467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [6469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [6471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [6473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [6475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [6477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), - [6479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), - [6481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), - [6483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), - [6485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), - [6487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), - [6489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), - [6491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), - [6493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), - [6495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), - [6497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), - [6499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), - [6501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), - [6503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), - [6505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [6507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), - [6509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [6511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), - [6513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [6515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), - [6517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [6519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), - [6521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [6523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), - [6525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), - [6527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), - [6529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), - [6531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [6533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), - [6535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [6537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [6539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [6541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), - [6543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [6545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), - [6547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [6549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [6551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), - [6553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [6555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [6557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [6559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), - [6561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [6565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), - [6567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), - [6569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [6571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), - [6573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), - [6575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [6577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [6579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), - [6581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [6583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), - [6585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), - [6587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), - [6589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), - [6591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [6593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), - [6595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [6597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [6599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), - [6601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [6603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), - [6605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [6607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), - [6609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [6611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [6613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [6615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), - [6617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), - [6619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [6621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), - [6623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [6625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [6627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [6629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), - [6631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [6633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [6635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [6637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [6639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), - [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [6643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [6645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [6647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [6649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [6651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), - [6653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [6655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), - [6657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [6659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), - [6661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), - [6663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [6665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [6667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), - [6669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), - [6671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), - [6673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), - [6675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), - [6677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [6679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), - [6681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [6683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), - [6685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [6687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), - [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [6691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), - [6693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), - [6695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), - [6697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), - [6699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), - [6701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), - [6703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [6705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [6707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), - [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), - [6715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), - [6717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), - [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), - [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), - [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [6725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), - [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), - [6729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), - [6733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), - [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), - [6737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), - [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3279), - [6743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), - [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), - [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3271), - [6749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [6751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), - [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [6755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [6757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), - [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), - [6761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [6763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [6765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), - [6767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), - [6769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), - [6771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), - [6773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), - [6775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), - [6777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [6779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), - [6781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), - [6783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), - [6785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [6787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), - [6789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [6791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), - [6793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [6795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), - [6797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), - [6799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), - [6801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), - [6803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), - [6805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), - [6809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), - [6811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), - [6813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), - [6815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), - [6817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [6819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), - [6821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), - [6823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), - [6825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), - [6827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), - [6829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_str_lit_repeat1, 2), - [6831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_str_lit_repeat1, 2), SHIFT_REPEAT(3313), - [6834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_str_lit_repeat1, 2), SHIFT_REPEAT(1533), - [6837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [6839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), - [6841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [6843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), - [6845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [6847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), - [6849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), - [6851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [6853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [6855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [6857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [6859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), - [6861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3340), - [6863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [6865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [6867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__sym_lit_without_slash_repeat1, 2), - [6869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__sym_lit_without_slash_repeat1, 2), - [6871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sym_lit_without_slash_repeat1, 2), SHIFT_REPEAT(3340), - [6874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [6876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [6878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [6880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__sym_lit_without_slash, 1, .production_id = 36), - [6882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sym_lit_without_slash, 1, .production_id = 36), - [6884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), - [6886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [6888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [6890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_directive_type, 2, .production_id = 37), - [6892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__sym_lit_without_slash_repeat1, 1), - [6894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__sym_lit_without_slash_repeat1, 1), - [6896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_directive_type, 2, .production_id = 38), - [6898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 3), - [6900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 2), - [6902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_directive_type, 2), - [6904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_directive_type, 3), - [6906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_directive_type, 3, .production_id = 49), - [6908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 4), - [6910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_directive_type, 1), - [6912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), - [6914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), - [6916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_read_cond_lit_repeat1, 2), SHIFT_REPEAT(3351), - [6919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_read_cond_lit_repeat1, 2), - [6921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), - [6923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3355), - [6925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), - [6927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), - [6929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), - [6931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), - [6933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), - [6935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), - [6937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), - [6939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), - [6941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), - [6943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3349), - [6945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), - [6947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [6949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), - [6951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3352), - [6953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [6955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3184), - [6957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [6959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3356), - [6961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [6963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [6965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [6967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3209), - [6969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3357), - [6971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3354), - [6973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3099), - [6975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3159), - [6977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), - [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [6981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), - [6983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [6985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3193), - [6987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3132), - [6989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [6991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [6993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2225), - [6995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [6997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [6999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3359), - [7001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3154), - [7003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [7005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3074), - [7007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), - [7009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), - [7011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3350), - [7013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), - [7015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [7017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), - [7019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [7021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3102), - [7023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3358), - [7025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3119), - [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [7029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), - [7033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3330), - [7035] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [7037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), - [7039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [7041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), - [7045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), - [7047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__package_lit_without_slash, 3, .production_id = 30), - [7049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), - [7051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), - [7053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), - [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [7057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), - [7061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), - [7063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [7065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), - [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), - [7069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [7071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), - [7073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [7075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), - [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), - [7079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), - [7081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), - [7085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [7087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), - [7089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [7091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), - [7093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), - [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), - [7097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), - [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), - [7103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), - [7105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), - [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [7109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), - [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), - [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [7117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), - [7125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), - [7127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), - [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [7133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), - [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), - [7139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2286), - [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [7143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), - [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), - [7155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [7157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), - [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3472), + [171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(817), + [174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(210), + [177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(2780), + [180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_clause, 2, .production_id = 39), + [182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_clause, 2, .production_id = 39), + [184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 1), SHIFT(224), + [187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 1), SHIFT(778), + [190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), + [192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7), + [194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), + [196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3369), + [198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), + [200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), + [202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), + [204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 1), SHIFT(2114), + [207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 1), SHIFT(2113), + [210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 1), SHIFT(27), + [213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 1), + [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), + [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3320), + [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), + [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), + [231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_clause, 1), SHIFT(3377), + [234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 1), + [236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3442), + [238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), + [244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 3), SHIFT(362), + [247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 3), SHIFT(778), + [250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8), + [252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 3), SHIFT(2114), + [255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 3), SHIFT(2113), + [258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 3), SHIFT(27), + [261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 3), + [263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_clause, 3), SHIFT(3377), + [266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 3), + [268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), + [276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), + [278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2160), + [280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3404), + [282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), + [284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), + [286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), + [288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), + [292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3295), + [294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), + [296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), + [306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3405), + [308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), + [310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), + [314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), + [316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), + [320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), + [324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), + [326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), + [330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), + [332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), + [336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), + [338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), + [342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), + [344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2100), + [348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), + [350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2096), + [354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), + [356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), + [358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), + [360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2090), + [362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), + [364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), + [366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), + [368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2098), + [370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), + [372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), + [374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), + [376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), + [382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), + [384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3421), + [386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), + [388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1825), + [390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), + [392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3363), + [400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), + [402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3408), + [408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), + [410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), + [414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3390), + [416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), + [418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), + [422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3389), + [424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), + [426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3409), + [432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), + [434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3402), + [440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), + [442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3375), + [448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), + [450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3397), + [456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(985), + [458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3422), + [464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), + [466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2176), + [468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2373), + [470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), + [472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), + [474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3379), + [476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), + [478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), + [480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), + [482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), + [486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), + [492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3303), + [494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), + [496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), + [506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3372), + [508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), + [510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), + [516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), + [518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2370), + [520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), + [522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2713), + [524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3406), + [526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), + [528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), + [530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), + [532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1827), + [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), + [542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3218), + [544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), + [546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), + [556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3364), + [558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), + [560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), + [566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), + [568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2372), + [570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), + [572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), + [574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3377), + [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2188), + [586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2346), + [588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2312), + [590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), + [592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3400), + [594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), + [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), + [598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2311), + [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), + [602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2413), + [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), + [610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3289), + [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), + [614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), + [624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3401), + [626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), + [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), + [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), + [634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(33), + [637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(778), + [640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(34), + [643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(1566), + [646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(1533), + [649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(3387), + [652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(3387), + [655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(3247), + [658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(1504), + [661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(2114), + [664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(2113), + [667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(25), + [670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), + [672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(3370), + [675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(3285), + [678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(3260), + [681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(711), + [684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(712), + [687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(713), + [690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(720), + [693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(725), + [696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(3394), + [699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(3496), + [702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(1566), + [705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(744), + [708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 2, .production_id = 28), SHIFT_REPEAT(3185), + [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2197), + [713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2356), + [715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1559), + [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1558), + [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2185), + [727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2338), + [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2728), + [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), + [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3250), + [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), + [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), + [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2411), + [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3415), + [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), + [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2177), + [767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2364), + [769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), + [771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), + [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3407), + [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1954), + [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3381), + [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), + [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), + [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), + [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), + [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), + [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3366), + [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), + [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), + [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), + [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), + [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), + [825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3215), + [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), + [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), + [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3395), + [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), + [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), + [849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2190), + [851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2341), + [853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1796), + [855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), + [857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3419), + [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), + [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), + [863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), + [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), + [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), + [875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3254), + [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), + [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), + [889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3374), + [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), + [897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), + [899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3386), + [901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2193), + [903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2348), + [905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), + [907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), + [909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3392), + [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), + [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), + [915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), + [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), + [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), + [927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3316), + [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), + [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), + [941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3368), + [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), + [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), + [951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), + [953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2368), + [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), + [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), + [967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3420), + [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), + [981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2676), + [983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3412), + [985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), + [987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), + [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), + [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [1009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [1015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), + [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [1025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), + [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), + [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), + [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [1037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2493), + [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3423), + [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), + [1043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), + [1045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [1047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), + [1049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [1051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), + [1053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), + [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), + [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), + [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), + [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2587), + [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3398), + [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), + [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), + [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2589), + [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3399), + [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), + [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), + [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), + [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [1131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), + [1133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(89), + [1136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(778), + [1139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(34), + [1142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(1677), + [1145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(1533), + [1148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3387), + [1151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3387), + [1154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3247), + [1157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(1504), + [1160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(2114), + [1163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(2113), + [1166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(25), + [1169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3370), + [1172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3285), + [1175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3260), + [1178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(711), + [1181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(712), + [1184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(713), + [1187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(720), + [1190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(725), + [1193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3394), + [1196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3496), + [1199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(1677), + [1202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(744), + [1205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3185), + [1208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source, 1, .production_id = 1), + [1210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [1212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [1214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [1216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [1218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [1220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [1222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [1224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [1226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [1228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [1230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2682), + [1232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3396), + [1234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), + [1236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), + [1238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [1240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [1242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [1244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [1246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [1248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [1250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [1252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [1254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [1256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [1258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [1260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [1262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [1264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [1266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [1268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [1270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [1272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [1274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [1276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [1278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [1280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [1282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [1284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [1286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [1288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [1290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [1292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [1294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [1296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [1298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [1300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [1302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [1304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2750), + [1306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3383), + [1308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), + [1310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), + [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [1314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [1316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), + [1320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2751), + [1322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3410), + [1324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), + [1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), + [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [1334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [1338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), + [1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [1342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [1344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), + [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), + [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [1350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), + [1352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [1354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [1356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [1358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), + [1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), + [1362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [1364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), + [1366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), + [1368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), + [1370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [1372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [1374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [1376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [1378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [1380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), + [1386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [1388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [1390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [1392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2707), + [1394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3361), + [1396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), + [1398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), + [1400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [1402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), + [1404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [1406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [1408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [1410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [1412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [1414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [1416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [1418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [1420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), + [1422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), + [1424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), + [1426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), + [1428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [1430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [1432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), + [1434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [1436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), + [1438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [1442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), + [1444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), + [1446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), + [1448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), + [1450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), + [1452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [1454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [1456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1847), + [1458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), + [1460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), + [1462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [1464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [1466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), + [1468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [1470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), + [1472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [1474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [1476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), + [1478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [1480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), + [1482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), + [1484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), + [1486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), + [1488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [1490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), + [1492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [1494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [1496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), + [1498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [1500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [1502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), + [1504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [1506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), + [1508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [1510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), + [1512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [1514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), + [1516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [1518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [1520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), + [1522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [1524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), + [1526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [1528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [1530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), + [1532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [1534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [1536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), + [1538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [1540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [1542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), + [1544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [1546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [1548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [1550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), + [1552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [1554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(35), + [1556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), + [1558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), + [1560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [1562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), + [1564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [1566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), + [1568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [1570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [1572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), + [1574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [1576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), + [1578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [1580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), + [1582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [1584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), + [1586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [1588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), + [1590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [1592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), + [1594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [1596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [1598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), + [1600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [1602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [1604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), + [1606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [1608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), + [1610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2148), + [1612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), + [1614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [1616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), + [1618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [1620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [1622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), + [1624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [1626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [1628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), + [1630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [1632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [1634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), + [1636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [1638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [1640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), + [1642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [1644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [1646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), + [1648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [1650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [1652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), + [1654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [1658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2242), + [1660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), + [1662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2258), + [1664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), + [1666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [1668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), + [1670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), + [1672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), + [1674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), + [1676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [1678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1808), + [1680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [1682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [1684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1810), + [1686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [1688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [1690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1812), + [1692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [1694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [1696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), + [1698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [1700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [1702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), + [1704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), + [1706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), + [1708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [1710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12), + [1712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [1714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), + [1716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), + [1718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [1720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), + [1722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [1724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), + [1726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [1728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), + [1730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [1732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), + [1734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), + [1736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1806), + [1738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [1740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), + [1742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), + [1744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), + [1746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [1748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), + [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), + [1752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), + [1754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [1756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), + [1758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), + [1760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), + [1762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [1764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), + [1766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [1768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), + [1770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [1772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2259), + [1774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), + [1776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2247), + [1778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), + [1780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), + [1782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [1784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [1786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1795), + [1788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [1792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1788), + [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [1796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), + [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [1802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1786), + [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [1806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [1808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1784), + [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [1812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), + [1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [1816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [1818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1989), + [1820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [1822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749), + [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [1828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1747), + [1830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [1832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), + [1834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [1836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), + [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [1840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [1842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1739), + [1844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [1846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [1848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [1850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), + [1852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [1854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [1856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [1858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), + [1860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [1862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [1864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [1866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), + [1868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [1870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [1872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), + [1874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [1876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [1878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), + [1880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [1882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), + [1884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [1886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), + [1888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [1890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [1892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2046), + [1894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), + [1896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), + [1898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [1900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [1902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), + [1904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [1906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [1908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2047), + [1910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), + [1912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [1914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), + [1916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [1918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [1920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), + [1922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), + [1924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), + [1926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [1928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [1930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9), + [1932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [1934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [1936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), + [1938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [1940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [1942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), + [1944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [1946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [1948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), + [1950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [1952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [1954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), + [1956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), + [1958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [1960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), + [1962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), + [1964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [1966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), + [1968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [1970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [1972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), + [1974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [1976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [1978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), + [1980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), + [1982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), + [1984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [1986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), + [1988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [1990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [1992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), + [1994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [1996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [1998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), + [2000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), + [2002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [2004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), + [2006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [2008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), + [2010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [2012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), + [2014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [2016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), + [2018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [2020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [2022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), + [2024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [2026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [2028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [2032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2386), + [2034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), + [2036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [2038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), + [2040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), + [2042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [2044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), + [2046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), + [2048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [2050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2248), + [2052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), + [2054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [2056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2239), + [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), + [2060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), + [2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [2064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1899), + [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), + [2068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2250), + [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), + [2072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [2074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), + [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [2078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), + [2080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), + [2082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [2084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), + [2086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), + [2088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), + [2090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [2092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2252), + [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), + [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [2098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), + [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [2102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [2104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), + [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), + [2108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), + [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [2112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [2114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [2116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2255), + [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), + [2120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2256), + [2122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), + [2124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [2128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1929), + [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), + [2132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [2134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2265), + [2136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), + [2138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [2140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), + [2142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [2144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [2146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2270), + [2148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), + [2150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [2152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2274), + [2154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), + [2156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [2158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2279), + [2160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), + [2162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [2164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), + [2166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), + [2168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), + [2170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), + [2172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2287), + [2174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), + [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [2178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), + [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [2184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), + [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), + [2188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), + [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [2192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2288), + [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), + [2196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1681), + [2198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [2200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1931), + [2202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [2204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), + [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [2208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), + [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [2214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1779), + [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [2218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2292), + [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), + [2222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2293), + [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), + [2226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1682), + [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [2230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), + [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), + [2234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), + [2236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [2238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), + [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [2242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), + [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), + [2246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [2248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), + [2250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [2252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [2254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), + [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [2258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), + [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [2264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), + [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [2270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938), + [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), + [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [2276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), + [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [2282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), + [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), + [2286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [2288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), + [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [2292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), + [2294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [2296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), + [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [2302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), + [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [2308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), + [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [2312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), + [2314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [2316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1687), + [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [2320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), + [2322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), + [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [2326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2269), + [2328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), + [2330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), + [2332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), + [2334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [2336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2268), + [2338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), + [2340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), + [2342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [2344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [2346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2266), + [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), + [2350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2040), + [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [2356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2254), + [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), + [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [2362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), + [2364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [2368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2249), + [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), + [2372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), + [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [2376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [2378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [2380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), + [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [2384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), + [2386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), + [2388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [2390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), + [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [2396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), + [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [2400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), + [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [2406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), + [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [2410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), + [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [2416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), + [2418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [2420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), + [2422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [2424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), + [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [2428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [2430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), + [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [2436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), + [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), + [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [2442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), + [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), + [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [2448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), + [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [2452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [2454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), + [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), + [2458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [2460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), + [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [2464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), + [2466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [2470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), + [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [2474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), + [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [2480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), + [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [2484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), + [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), + [2488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), + [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [2494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), + [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [2498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), + [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), + [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [2504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), + [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [2508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [2510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), + [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), + [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [2516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), + [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [2522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1966), + [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), + [2526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), + [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [2532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), + [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [2536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), + [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [2544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), + [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [2548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), + [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [2554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), + [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [2560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1332), + [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [2566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), + [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [2572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), + [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [2576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), + [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [2580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), + [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [2584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), + [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [2588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), + [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [2592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), + [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [2598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), + [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), + [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [2604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), + [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [2608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), + [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [2618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), + [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [2624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), + [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [2628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), + [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [2632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), + [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [2636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), + [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [2642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), + [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [2648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1375), + [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [2654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), + [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [2658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), + [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [2664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), + [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [2668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), + [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [2674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), + [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [2678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714), + [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [2684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), + [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [2688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), + [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [2694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), + [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [2700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), + [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [2706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), + [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [2712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), + [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [2716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), + [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), + [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [2722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), + [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [2728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), + [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [2734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), + [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [2742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1885), + [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [2746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), + [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [2750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), + [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [2754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), + [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [2762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), + [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [2766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), + [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [2772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), + [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), + [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [2778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), + [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [2784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), + [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), + [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [2790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), + [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [2794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), + [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [2798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1890), + [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [2802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), + [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [2810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1881), + [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [2816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), + [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [2820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1874), + [2822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [2826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1872), + [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [2830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), + [2832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [2834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), + [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [2838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1862), + [2840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [2842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [2844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [2848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), + [2850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [2852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [2854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [2856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), + [2858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [2864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), + [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), + [2868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [2872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), + [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [2876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), + [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [2882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), + [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), + [2886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), + [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [2892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), + [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [2898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1984), + [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), + [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [2904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), + [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [2910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), + [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [2914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), + [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), + [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [2920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1986), + [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [2926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), + [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), + [2930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), + [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [2934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), + [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [2940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), + [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [2946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1992), + [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [2952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2397), + [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), + [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [2966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), + [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [2972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), + [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [2978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), + [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [2984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), + [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [2990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), + [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [2996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), + [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [3000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), + [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [3004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), + [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [3008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), + [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [3012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), + [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [3016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), + [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [3020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), + [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [3028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), + [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [3036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), + [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), + [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [3046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), + [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [3050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), + [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [3058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), + [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [3062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), + [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [3068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), + [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), + [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [3076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), + [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [3082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), + [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [3088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), + [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [3096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), + [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [3102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), + [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), + [3106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), + [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [3112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), + [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), + [3116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), + [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [3122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), + [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [3128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), + [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [3134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), + [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [3138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), + [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [3144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2007), + [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [3150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), + [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [3154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), + [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [3158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(43), + [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [3162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), + [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [3168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), + [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [3172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), + [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [3178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), + [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [3184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), + [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [3188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), + [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [3192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), + [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [3196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), + [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [3202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2011), + [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), + [3206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), + [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [3210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), + [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [3214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), + [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), + [3218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), + [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [3224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), + [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), + [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [3230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), + [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), + [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [3236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), + [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [3242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [3246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), + [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [3250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), + [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [3256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), + [3258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [3262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), + [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [3266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [3270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), + [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), + [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [3276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), + [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [3282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), + [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), + [3286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), + [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [3292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), + [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), + [3296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [3298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2027), + [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), + [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [3304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), + [3306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), + [3308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), + [3310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [3312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [3314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), + [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [3318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), + [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), + [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [3324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), + [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [3330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), + [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [3336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), + [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [3340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), + [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [3344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1036), + [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [3348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), + [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [3352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), + [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [3356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), + [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [3360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), + [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [3366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), + [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [3374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), + [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [3380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), + [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [3386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), + [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [3390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), + [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [3394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), + [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [3400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), + [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [3406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), + [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [3412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), + [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [3418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2158), + [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), + [3422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), + [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [3426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), + [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [3432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), + [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [3438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), + [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [3444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), + [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [3450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), + [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [3456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), + [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [3464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2030), + [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [3470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), + [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [3474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), + [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [3478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), + [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), + [3482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), + [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [3488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), + [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), + [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [3494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), + [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [3498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), + [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [3502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), + [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), + [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [3508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), + [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [3514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), + [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), + [3518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), + [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [3524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), + [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [3530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), + [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [3534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), + [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), + [3538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), + [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [3544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), + [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), + [3548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), + [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [3554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), + [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [3560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), + [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), + [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [3566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), + [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [3570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), + [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [3574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1959), + [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [3580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), + [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), + [3584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), + [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [3590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), + [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [3594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2042), + [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [3600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), + [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), + [3604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), + [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [3610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), + [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [3614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), + [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [3618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), + [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), + [3622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), + [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [3626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), + [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), + [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [3632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), + [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), + [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [3642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2052), + [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), + [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [3648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), + [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), + [3652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), + [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [3656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), + [3658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), + [3660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [3662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2055), + [3664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), + [3666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [3668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), + [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [3672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [3674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), + [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), + [3678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), + [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), + [3682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [3684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), + [3686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), + [3688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [3690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), + [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [3694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), + [3696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [3700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), + [3702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [3704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [3706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), + [3708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [3710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [3712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), + [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [3716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), + [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [3720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), + [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [3734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), + [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [3742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), + [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), + [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [3748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), + [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), + [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [3758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), + [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [3762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), + [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), + [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [3768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), + [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [3774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), + [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [3778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), + [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), + [3782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), + [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [3788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), + [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [3794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), + [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), + [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [3800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), + [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [3806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), + [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [3810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), + [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), + [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [3816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), + [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), + [3820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), + [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), + [3824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), + [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [3830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), + [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), + [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [3836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), + [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [3842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), + [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [3846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), + [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [3850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), + [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), + [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [3856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), + [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [3862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), + [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [3866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), + [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [3872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2075), + [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), + [3876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), + [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [3880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), + [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [3884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), + [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [3888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2076), + [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), + [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [3894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), + [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), + [3898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), + [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [3902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), + [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), + [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [3908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2079), + [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), + [3912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), + [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [3916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), + [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), + [3920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), + [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [3926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), + [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [3930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), + [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), + [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [3942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), + [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), + [3946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [3948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2084), + [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), + [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [3954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), + [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [3958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2085), + [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), + [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [3964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), + [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), + [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [3970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), + [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [3976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), + [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [3982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2087), + [3984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), + [3986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2088), + [3988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), + [3990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [3992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), + [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), + [3996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1963), + [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), + [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [4004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), + [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), + [4008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [4010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), + [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), + [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [4016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1964), + [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [4020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), + [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [4024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), + [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), + [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [4030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), + [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [4036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), + [4038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), + [4040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), + [4042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [4044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1973), + [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [4048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), + [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [4052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2037), + [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), + [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [4060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), + [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), + [4064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), + [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [4068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), + [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), + [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [4074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), + [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), + [4078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), + [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), + [4082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2002), + [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), + [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [4088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), + [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), + [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [4096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 3, .production_id = 39), + [4098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 3, .production_id = 39), + [4100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 39), SHIFT_REPEAT(813), + [4103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 39), SHIFT_REPEAT(446), + [4106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 39), + [4108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 39), + [4110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 1), + [4112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 2, .production_id = 1), + [4114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(816), + [4117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(446), + [4120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_dis_expr_repeat1, 2), + [4122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), + [4124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 1, .production_id = 1), SHIFT_REPEAT(815), + [4127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 1, .production_id = 1), SHIFT_REPEAT(446), + [4130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_do_clause_repeat1, 1, .production_id = 1), + [4132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_do_clause_repeat1, 1, .production_id = 1), + [4134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_num_lit, 1), + [4136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_num_lit, 1), + [4138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), + [4140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_read_cond_lit, 4, .production_id = 46), + [4142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_read_cond_lit, 4, .production_id = 46), + [4144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_list_lit, 2, .production_id = 11), + [4146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_list_lit, 2, .production_id = 11), + [4148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquote_splicing_lit, 3, .production_id = 33), + [4150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquote_splicing_lit, 3, .production_id = 33), + [4152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__form, 4, .production_id = 34), + [4154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__form, 4, .production_id = 34), + [4156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun, 4, .production_id = 43), + [4158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun, 4, .production_id = 43), + [4160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_str_lit, 4), + [4162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_str_lit, 4), + [4164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun, 4, .production_id = 40), + [4166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun, 4, .production_id = 40), + [4168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoting_lit, 3, .production_id = 33), + [4170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoting_lit, 3, .production_id = 33), + [4172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_set_lit, 4, .production_id = 35), + [4174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_set_lit, 4, .production_id = 35), + [4176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 8, .production_id = 86), + [4178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 8, .production_id = 86), + [4180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_quoting_lit, 3, .production_id = 33), + [4182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_quoting_lit, 3, .production_id = 33), + [4184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splicing_read_cond_lit, 3, .production_id = 32), + [4186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splicing_read_cond_lit, 3, .production_id = 32), + [4188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_read_cond_lit, 3, .production_id = 32), + [4190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_read_cond_lit, 3, .production_id = 32), + [4192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_reader_macro, 4, .production_id = 44), + [4194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_reader_macro, 4, .production_id = 44), + [4196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquote_splicing_lit, 4, .production_id = 47), + [4198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquote_splicing_lit, 4, .production_id = 47), + [4200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_reader_macro, 3, .production_id = 31), + [4202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_reader_macro, 3, .production_id = 31), + [4204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splicing_read_cond_lit, 4, .production_id = 46), + [4206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splicing_read_cond_lit, 4, .production_id = 46), + [4208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_lit, 3, .production_id = 30), + [4210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_lit, 3, .production_id = 30), + [4212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoting_lit, 3, .production_id = 19), + [4214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoting_lit, 3, .production_id = 19), + [4216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_quoting_lit, 4, .production_id = 47), + [4218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_quoting_lit, 4, .production_id = 47), + [4220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquote_splicing_lit, 3, .production_id = 19), + [4222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquote_splicing_lit, 3, .production_id = 19), + [4224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_syn_quoting_lit, 3, .production_id = 19), + [4226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_syn_quoting_lit, 3, .production_id = 19), + [4228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoting_lit, 4, .production_id = 47), + [4230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoting_lit, 4, .production_id = 47), + [4232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_reader_macro, 4, .production_id = 48), + [4234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_reader_macro, 4, .production_id = 48), + [4236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoting_lit, 3, .production_id = 19), + [4238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoting_lit, 3, .production_id = 19), + [4240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_quoting_lit, 3, .production_id = 19), + [4242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_quoting_lit, 3, .production_id = 19), + [4244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splicing_read_cond_lit, 3, .production_id = 29), + [4246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splicing_read_cond_lit, 3, .production_id = 29), + [4248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_read_cond_lit, 3, .production_id = 29), + [4250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_read_cond_lit, 3, .production_id = 29), + [4252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_list_lit, 3, .production_id = 27), + [4254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_list_lit, 3, .production_id = 27), + [4256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun, 3, .production_id = 25), + [4258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun, 3, .production_id = 25), + [4260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sym_lit, 1), + [4262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sym_lit, 1), + [4264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_macro, 3, .production_id = 25), + [4266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_macro, 3, .production_id = 25), + [4268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_str_lit, 3), + [4270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_str_lit, 3), + [4272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 10, .production_id = 114), + [4274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 10, .production_id = 114), + [4276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_vec_lit, 3, .production_id = 9), + [4278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_vec_lit, 3, .production_id = 9), + [4280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_macro, 5, .production_id = 50), + [4282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_macro, 5, .production_id = 50), + [4284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun, 5, .production_id = 50), + [4286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun, 5, .production_id = 50), + [4288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun, 5, .production_id = 53), + [4290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun, 5, .production_id = 53), + [4292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_reader_macro, 5, .production_id = 57), + [4294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_reader_macro, 5, .production_id = 57), + [4296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 5, .production_id = 58), + [4298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 5, .production_id = 58), + [4300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_reader_macro, 5, .production_id = 59), + [4302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_reader_macro, 5, .production_id = 59), + [4304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__form, 1), + [4306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__form, 1), + [4308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3391), + [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), + [4312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_lit, 1, .production_id = 5), + [4314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_lit, 1, .production_id = 5), + [4316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_reader_macro, 5, .production_id = 60), + [4318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_reader_macro, 5, .production_id = 60), + [4320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_macro, 6, .production_id = 61), + [4322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_macro, 6, .production_id = 61), + [4324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun, 6, .production_id = 66), + [4326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun, 6, .production_id = 66), + [4328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 6, .production_id = 58), + [4330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 6, .production_id = 58), + [4332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_lit, 1, .production_id = 6), + [4334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_lit, 1, .production_id = 6), + [4336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dis_expr, 2, .production_id = 7), + [4338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dis_expr, 2, .production_id = 7), + [4340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__form, 2), + [4342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__form, 2), + [4344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 6, .production_id = 71), + [4346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 6, .production_id = 71), + [4348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_lit, 2), + [4350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_lit, 2), + [4352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 6, .production_id = 72), + [4354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 6, .production_id = 72), + [4356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_set_lit, 3, .production_id = 22), + [4358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_set_lit, 3, .production_id = 22), + [4360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__form, 3, .production_id = 21), + [4362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__form, 3, .production_id = 21), + [4364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_reader_macro, 6, .production_id = 73), + [4366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_reader_macro, 6, .production_id = 73), + [4368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 6, .production_id = 74), + [4370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 6, .production_id = 74), + [4372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_vec_lit, 2, .production_id = 9), + [4374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_vec_lit, 2, .production_id = 9), + [4376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_num_lit, 2), + [4378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_num_lit, 2), + [4380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_macro, 7, .production_id = 82), + [4382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_macro, 7, .production_id = 82), + [4384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_kwd_symbol, 1), + [4386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_kwd_symbol, 1), + [4388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_kwd_lit, 2), + [4390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_kwd_lit, 2), + [4392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_str_lit, 2), + [4394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_str_lit, 2), + [4396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 7, .production_id = 71), + [4398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 7, .production_id = 71), + [4400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_macro, 4, .production_id = 40), + [4402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_macro, 4, .production_id = 40), + [4404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 7, .production_id = 72), + [4406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 7, .production_id = 72), + [4408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 7, .production_id = 86), + [4410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 7, .production_id = 86), + [4412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 7, .production_id = 87), + [4414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 7, .production_id = 87), + [4416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 7, .production_id = 74), + [4418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 7, .production_id = 74), + [4420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_read_cond_lit, 2, .production_id = 13), + [4422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_read_cond_lit, 2, .production_id = 13), + [4424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 7, .production_id = 88), + [4426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 7, .production_id = 88), + [4428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 7, .production_id = 89), + [4430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 7, .production_id = 89), + [4432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 9, .production_id = 114), + [4434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 9, .production_id = 114), + [4436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 9, .production_id = 102), + [4438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 9, .production_id = 102), + [4440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 9, .production_id = 101), + [4442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 9, .production_id = 101), + [4444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splicing_read_cond_lit, 2, .production_id = 13), + [4446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splicing_read_cond_lit, 2, .production_id = 13), + [4448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_quoting_lit, 2, .production_id = 7), + [4450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_quoting_lit, 2, .production_id = 7), + [4452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoting_lit, 2, .production_id = 7), + [4454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoting_lit, 2, .production_id = 7), + [4456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_syn_quoting_lit, 2, .production_id = 7), + [4458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_syn_quoting_lit, 2, .production_id = 7), + [4460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquote_splicing_lit, 2, .production_id = 7), + [4462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquote_splicing_lit, 2, .production_id = 7), + [4464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoting_lit, 2, .production_id = 7), + [4466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoting_lit, 2, .production_id = 7), + [4468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path_lit, 2, .production_id = 14), + [4470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path_lit, 2, .production_id = 14), + [4472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_lit, 2, .production_id = 16), + [4474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_lit, 2, .production_id = 16), + [4476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_lit, 2, .production_id = 17), + [4478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_lit, 2, .production_id = 17), + [4480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dis_expr, 3, .production_id = 19), + [4482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dis_expr, 3, .production_id = 19), + [4484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 8, .production_id = 102), + [4486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 8, .production_id = 102), + [4488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 8, .production_id = 87), + [4490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 8, .production_id = 87), + [4492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 8, .production_id = 100), + [4494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 8, .production_id = 100), + [4496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 8, .production_id = 88), + [4498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 8, .production_id = 88), + [4500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 8, .production_id = 89), + [4502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 8, .production_id = 89), + [4504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 8, .production_id = 101), + [4506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 8, .production_id = 101), + [4508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_reader_macro, 4, .production_id = 45), + [4510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_reader_macro, 4, .production_id = 45), + [4512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_num_lit, 9, .production_id = 100), + [4514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complex_num_lit, 9, .production_id = 100), + [4516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(940), + [4519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(211), + [4522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 64), SHIFT(2105), + [4525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 64), SHIFT(545), + [4528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 64), + [4530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 64), SHIFT(3470), + [4533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 4, .production_id = 64), + [4535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 75), SHIFT(2105), + [4538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 75), SHIFT(545), + [4541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 75), + [4543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 75), SHIFT(3470), + [4546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 5, .production_id = 75), + [4548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 63), SHIFT(2105), + [4551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 63), SHIFT(545), + [4554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 63), + [4556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 63), SHIFT(3470), + [4559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 4, .production_id = 63), + [4561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 77), SHIFT(2105), + [4564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 77), SHIFT(545), + [4567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 77), + [4569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 77), SHIFT(3470), + [4572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 5, .production_id = 77), + [4574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(2105), + [4577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(545), + [4580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_clause_repeat1, 2, .production_id = 15), + [4582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(3470), + [4585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(1832), + [4588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_clause_repeat1, 2, .production_id = 15), SHIFT_REPEAT(1832), + [4591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_for_clause_repeat1, 2, .production_id = 15), + [4593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 90), SHIFT(2105), + [4596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 90), SHIFT(545), + [4599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 90), + [4601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 90), SHIFT(3470), + [4604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 6, .production_id = 90), + [4606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 78), SHIFT(2105), + [4609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 78), SHIFT(545), + [4612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 78), + [4614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 78), SHIFT(3470), + [4617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 5, .production_id = 78), + [4619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 91), SHIFT(2105), + [4622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 91), SHIFT(545), + [4625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 91), + [4627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 91), SHIFT(3470), + [4630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 6, .production_id = 91), + [4632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 8, .production_id = 115), SHIFT(2105), + [4635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 8, .production_id = 115), SHIFT(545), + [4638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 8, .production_id = 115), + [4640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 8, .production_id = 115), SHIFT(3470), + [4643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 8, .production_id = 115), + [4645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 7, .production_id = 103), SHIFT(2105), + [4648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 7, .production_id = 103), SHIFT(545), + [4651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 7, .production_id = 103), + [4653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 7, .production_id = 103), SHIFT(3470), + [4656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 7, .production_id = 103), + [4658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 51), SHIFT(2105), + [4661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 51), SHIFT(545), + [4664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 51), + [4666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 51), SHIFT(3470), + [4669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 3, .production_id = 51), + [4671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 7, .production_id = 104), SHIFT(2105), + [4674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 7, .production_id = 104), SHIFT(545), + [4677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 7, .production_id = 104), + [4679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 7, .production_id = 104), SHIFT(3470), + [4682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 7, .production_id = 104), + [4684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), + [4686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 93), SHIFT(2105), + [4689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 93), SHIFT(545), + [4692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 93), + [4694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_clause, 6, .production_id = 93), SHIFT(3470), + [4697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause, 6, .production_id = 93), + [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), + [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), + [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), + [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), + [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), + [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), + [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), + [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), + [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), + [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [4811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3425), + [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), + [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), + [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), + [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), + [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [4839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(1128), + [4842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(547), + [4845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(2110), + [4848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(2111), + [4851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(26), + [4854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), + [4856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(3453), + [4859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(1831), + [4862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(283), + [4865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(5), + [4868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(281), + [4871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(138), + [4874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(276), + [4877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(274), + [4880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(271), + [4883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(2074), + [4886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_loop_macro_repeat1, 2), SHIFT_REPEAT(803), + [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), + [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), + [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), + [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), + [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), + [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [4963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3373), + [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), + [4967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), + [4969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_part, 3, .production_id = 52), + [4971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_part, 3, .production_id = 52), + [4973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_part, 2, .production_id = 39), + [4975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_part, 2, .production_id = 39), + [4977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_part, 4, .production_id = 62), + [4979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_part, 4, .production_id = 62), + [4981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_clause_repeat1, 1, .production_id = 1), + [4983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_for_clause_repeat1, 1, .production_id = 1), + [4985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 1), + [4987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 1), + [4989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3458), + [4991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), + [4993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3434), + [4995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), + [4997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3495), + [4999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), + [5001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3480), + [5003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), + [5005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3467), + [5007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), + [5009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3450), + [5011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), + [5013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3463), + [5015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), + [5017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3462), + [5019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), + [5021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3438), + [5023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), + [5025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3451), + [5027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), + [5029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), + [5031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3417), + [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), + [5035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1955), + [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), + [5039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), + [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), + [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), + [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), + [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), + [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), + [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), + [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), + [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), + [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), + [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), + [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), + [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), + [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [5093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(1443), + [5096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(340), + [5099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), + [5101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3424), + [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), + [5105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(1564), + [5108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(778), + [5111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), + [5113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__bare_list_lit_repeat1, 1, .production_id = 12), + [5115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__bare_list_lit_repeat1, 1, .production_id = 12), + [5117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 5, .production_id = 69), + [5119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 5, .production_id = 69), + [5121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 5, .production_id = 70), + [5123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 5, .production_id = 70), + [5125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 6, .production_id = 83), + [5127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 6, .production_id = 83), + [5129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 6, .production_id = 84), + [5131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 6, .production_id = 84), + [5133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 6, .production_id = 85), + [5135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 6, .production_id = 85), + [5137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 1, .production_id = 1), + [5139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 1, .production_id = 1), + [5141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 2, .production_id = 26), + [5143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 2, .production_id = 26), + [5145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 3, .production_id = 41), + [5147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 3, .production_id = 41), + [5149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 3, .production_id = 42), + [5151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 3, .production_id = 42), + [5153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 5, .production_id = 68), + [5155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 5, .production_id = 68), + [5157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3380), + [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), + [5161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 4, .production_id = 54), + [5163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 4, .production_id = 54), + [5165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 4, .production_id = 55), + [5167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 4, .production_id = 55), + [5169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 4, .production_id = 56), + [5171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 4, .production_id = 56), + [5173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 5, .production_id = 67), + [5175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 5, .production_id = 67), + [5177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_header, 7, .production_id = 99), + [5179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_header, 7, .production_id = 99), + [5181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_keyword, 1), + [5183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_keyword, 1), + [5185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause_word, 3), + [5187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause_word, 3), + [5189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3413), + [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), + [5193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defun_keyword, 3), + [5195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defun_keyword, 3), + [5197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_verb, 3), + [5199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accumulation_verb, 3), + [5201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_verb, 1), + [5203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accumulation_verb, 1), + [5205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause_word, 1), + [5207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_clause_word, 1), + [5209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_accumulation_clause, 3, .production_id = 52), SHIFT(2747), + [5212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_accumulation_clause, 3, .production_id = 52), SHIFT(394), + [5215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 3, .production_id = 52), + [5217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_accumulation_clause, 3, .production_id = 52), SHIFT(3484), + [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [5222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_accumulation_clause, 2, .production_id = 39), SHIFT(2708), + [5225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_accumulation_clause, 2, .production_id = 39), SHIFT(394), + [5228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 2, .production_id = 39), + [5230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_accumulation_clause, 2, .production_id = 39), SHIFT(3460), + [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [5235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1908), + [5237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_prefix_parameters, 1), + [5239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_prefix_parameters, 1), + [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), + [5243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 106), + [5245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 121), + [5247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 5, .production_id = 76), + [5249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_clause, 5, .production_id = 76), + [5251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_clause, 5, .production_id = 76), + [5253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 13, .production_id = 156), + [5255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 155), + [5257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 5, .production_id = 81), + [5259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 5, .production_id = 79), + [5261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 81), + [5263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 79), + [5265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 80), + [5267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 154), + [5269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 12, .production_id = 153), + [5271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 6, .production_id = 94), + [5273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 152), + [5275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 151), + [5277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 92), + [5279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 94), + [5281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 95), + [5283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 96), + [5285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 97), + [5287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 6, .production_id = 98), + [5289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 4, .production_id = 65), + [5291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 65), + [5293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 150), + [5295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 149), + [5297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 6, .production_id = 97), + [5299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_termination_clause, 4, .production_id = 62), + [5301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 4, .production_id = 62), + [5303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_clause, 4, .production_id = 62), + [5305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_clause, 4, .production_id = 62), + [5307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 128), + [5309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 148), + [5311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 11, .production_id = 147), + [5313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 105), + [5315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 146), + [5317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 107), + [5319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 108), + [5321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 109), + [5323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 110), + [5325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 111), + [5327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 112), + [5329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_termination_clause, 3, .production_id = 52), + [5331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 3, .production_id = 52), + [5333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_clause, 3, .production_id = 52), + [5335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_clause, 3, .production_id = 52), + [5337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 145), + [5339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 3), + [5341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 7, .production_id = 113), + [5343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 7, .production_id = 108), + [5345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 7, .production_id = 111), + [5347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 116), + [5349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 117), + [5351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 118), + [5353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 119), + [5355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 120), + [5357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 144), + [5359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 143), + [5361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_termination_clause, 5, .production_id = 76), + [5363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 122), + [5365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 123), + [5367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_termination_clause, 2, .production_id = 39), + [5369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 2, .production_id = 39), + [5371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_clause, 2, .production_id = 39), + [5373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_clause, 2, .production_id = 39), + [5375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 124), + [5377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 125), + [5379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 141), + [5381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 8, .production_id = 126), + [5383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 8, .production_id = 122), + [5385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 8, .production_id = 124), + [5387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 127), + [5389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 129), + [5391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 130), + [5393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 131), + [5395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 132), + [5397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 133), + [5399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 142), + [5401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 134), + [5403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_clause, 1), + [5405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 1), + [5407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 135), + [5409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 136), + [5411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 9, .production_id = 137), + [5413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulation_clause, 9, .production_id = 136), + [5415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 138), + [5417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 139), + [5419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 10, .production_id = 140), + [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), + [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), + [5427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_modifiers, 2), + [5429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_modifiers, 1), + [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), + [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), + [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), + [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), + [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), + [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), + [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), + [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), + [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), + [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), + [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), + [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), + [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), + [5467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(2116), + [5470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(545), + [5473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3367), + [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), + [5477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3489), + [5479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3227), + [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), + [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [5491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), + [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), + [5497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3431), + [5499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3264), + [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), + [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [5509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), + [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), + [5517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3498), + [5519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3314), + [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), + [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), + [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), + [5537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3488), + [5539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3229), + [5541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), + [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), + [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), + [5557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3471), + [5559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3325), + [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), + [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [5571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), + [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), + [5577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3443), + [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), + [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [5587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [5589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), + [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), + [5595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3231), + [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), + [5599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [5601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [5603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [5607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [5609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [5611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [5613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [5615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [5619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3238), + [5621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), + [5623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [5625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [5627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [5629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [5631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [5633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3448), + [5635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3305), + [5637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), + [5639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [5641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [5643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [5645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [5647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), + [5651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), + [5653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3445), + [5655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3299), + [5657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), + [5659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [5661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [5663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [5665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [5667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [5669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), + [5671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), + [5673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [5675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [5677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [5679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [5681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [5683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3272), + [5685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3271), + [5687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [5689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [5691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [5693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [5695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [5697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3465), + [5699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3242), + [5701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), + [5703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [5705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [5707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [5709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [5711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [5713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), + [5715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), + [5717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1800), + [5719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), + [5721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), + [5723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), + [5725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), + [5727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), + [5729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), + [5731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), + [5733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), + [5735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), + [5737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), + [5739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), + [5741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), + [5743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), + [5745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [5747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), + [5749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), + [5751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), + [5753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [5755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__metadata_lit, 1, .production_id = 4), + [5757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__metadata_lit, 1, .production_id = 4), + [5759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), + [5761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), + [5763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__metadata_lit, 2, .production_id = 3), + [5765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__metadata_lit, 2, .production_id = 3), + [5767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__metadata_lit, 2, .production_id = 4), + [5769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__metadata_lit, 2, .production_id = 4), + [5771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), + [5773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__metadata_lit, 1, .production_id = 3), + [5775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__metadata_lit, 1, .production_id = 3), + [5777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(2208), + [5780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(639), + [5783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), + [5785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), + [5787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [5789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [5791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [5793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [5795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [5797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [5799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [5801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [5803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), + [5805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [5807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), + [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), + [5811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), + [5813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), + [5815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), + [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [5819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3382), + [5821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), + [5823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_lit, 1, .production_id = 5), + [5825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_lit, 1, .production_id = 5), + [5827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_lit, 2, .production_id = 16), + [5829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_lit, 2, .production_id = 16), + [5831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_old_meta_lit, 3, .production_id = 24), + [5833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_old_meta_lit, 3, .production_id = 24), + [5835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_lit_repeat1, 2, .production_id = 18), + [5837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_lit_repeat1, 2, .production_id = 18), SHIFT_REPEAT(2114), + [5840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_lit_repeat1, 2, .production_id = 18), SHIFT_REPEAT(2113), + [5843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_lit_repeat1, 2, .production_id = 18), + [5845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_map_lit, 2, .production_id = 11), + [5847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_map_lit, 2, .production_id = 11), + [5849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_lit, 3, .production_id = 24), + [5851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_lit, 3, .production_id = 24), + [5853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [5855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_old_meta_lit, 2, .production_id = 10), + [5857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_old_meta_lit, 2, .production_id = 10), + [5859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_lit, 2, .production_id = 10), + [5861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_lit, 2, .production_id = 10), + [5863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_map_lit, 3, .production_id = 27), + [5865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_map_lit, 3, .production_id = 27), + [5867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(2236), + [5870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(687), + [5873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_lit_repeat1, 1, .production_id = 2), + [5875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_lit_repeat1, 1, .production_id = 2), + [5877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2289), + [5879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__format_token, 2), + [5881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__format_token, 2), + [5883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(2275), + [5886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(300), + [5889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_format_modifiers_repeat1, 1), + [5891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_modifiers_repeat1, 1), + [5893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), + [5895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), + [5897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__format_token, 1, .production_id = 23), + [5899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__format_token, 1, .production_id = 23), + [5901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(2336), + [5904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(786), + [5907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_dimension, 1), + [5909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3376), + [5911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), + [5913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), + [5915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [5917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), + [5919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), + [5921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(2379), + [5924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(394), + [5927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3416), + [5929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), + [5931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [5933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_modifiers_repeat1, 2), SHIFT_REPEAT(2299), + [5936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_modifiers_repeat1, 2), + [5938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_modifiers_repeat1, 2), SHIFT_REPEAT(3499), + [5941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_modifiers_repeat1, 2), SHIFT_REPEAT(2412), + [5944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_format_modifiers_repeat1, 2), + [5946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(2415), + [5949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dis_expr_repeat1, 2), SHIFT_REPEAT(455), + [5952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), + [5954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), + [5956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), + [5958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), + [5960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), + [5962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3299), + [5964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_lit_repeat1, 2, .production_id = 18), SHIFT_REPEAT(2110), + [5967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_lit_repeat1, 2, .production_id = 18), SHIFT_REPEAT(2111), + [5970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), + [5972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [5974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), + [5976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), + [5978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), + [5980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), + [5982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), + [5984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), + [5986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), + [5988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), + [5990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), + [5992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), + [5994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), + [5996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), + [5998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), + [6000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), + [6002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), + [6004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), + [6006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), + [6008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), + [6010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), + [6012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), + [6014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), + [6016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), + [6018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), + [6020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), + [6022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), + [6024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), + [6026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), + [6028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [6030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), + [6032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), + [6034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), + [6036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), + [6038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), + [6040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), + [6042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), + [6044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), + [6046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), + [6048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), + [6050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), + [6052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), + [6054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), + [6056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), + [6058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [6060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), + [6062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), + [6064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [6066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), + [6068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), + [6070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), + [6074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), + [6076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), + [6078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), + [6080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), + [6082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), + [6084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), + [6086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), + [6088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), + [6090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), + [6092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), + [6094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), + [6096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), + [6098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), + [6100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), + [6102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), + [6104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), + [6106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), + [6108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), + [6110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), + [6112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), + [6114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), + [6116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), + [6118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), + [6120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), + [6122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), + [6124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), + [6126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), + [6128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), + [6130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), + [6132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), + [6134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), + [6136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), + [6138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), + [6140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), + [6142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [6144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), + [6146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), + [6148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), + [6150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), + [6152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), + [6154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), + [6156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), + [6158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), + [6160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), + [6162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [6164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), + [6166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), + [6168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), + [6170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [6172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), + [6174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), + [6176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [6178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), + [6180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), + [6182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), + [6184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), + [6186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), + [6188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), + [6190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), + [6192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), + [6194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), + [6196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), + [6198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), + [6200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), + [6202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), + [6204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), + [6206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), + [6208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), + [6210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), + [6212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), + [6214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), + [6216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), + [6218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), + [6220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), + [6222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), + [6224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), + [6226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), + [6228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), + [6230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), + [6232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), + [6234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), + [6236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), + [6238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), + [6240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), + [6242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), + [6244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), + [6246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), + [6248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), + [6250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), + [6252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), + [6254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), + [6256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), + [6258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), + [6260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), + [6262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464), + [6264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [6266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), + [6268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), + [6270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), + [6272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), + [6274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), + [6276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [6278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), + [6280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [6282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), + [6284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), + [6286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), + [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), + [6292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), + [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), + [6296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), + [6298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), + [6300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), + [6302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), + [6304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), + [6306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), + [6308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), + [6310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [6312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3483), + [6314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [6316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), + [6318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), + [6320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [6322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), + [6324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), + [6326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), + [6328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), + [6330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), + [6332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), + [6334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), + [6336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), + [6338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), + [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), + [6342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), + [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), + [6348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), + [6350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), + [6352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), + [6354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), + [6356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), + [6358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [6360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), + [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), + [6364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), + [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [6368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), + [6370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), + [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [6374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), + [6376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), + [6378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [6380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [6384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), + [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [6390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [6392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [6394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), + [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [6400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [6402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), + [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), + [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), + [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), + [6412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), + [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), + [6416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), + [6420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), + [6422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), + [6424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), + [6426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), + [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), + [6430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), + [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [6434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [6436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), + [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), + [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), + [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), + [6446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), + [6448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), + [6450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), + [6452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), + [6456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), + [6458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), + [6460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), + [6462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), + [6464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [6466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [6468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), + [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [6472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), + [6474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [6476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [6478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [6480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), + [6482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), + [6484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), + [6486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), + [6488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), + [6490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), + [6492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), + [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), + [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), + [6500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), + [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), + [6506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [6508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), + [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [6512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), + [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), + [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [6520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), + [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), + [6530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [6534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), + [6536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), + [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), + [6544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [6546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [6548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [6550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), + [6552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [6554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), + [6556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [6558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [6560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [6562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), + [6564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [6566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [6568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [6570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), + [6572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [6574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [6576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), + [6578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [6580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), + [6582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [6588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), + [6590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [6592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [6594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), + [6596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), + [6600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [6602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [6604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [6606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [6608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [6610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), + [6612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [6614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [6616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [6618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [6620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), + [6622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [6624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [6626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [6628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), + [6630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), + [6632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), + [6634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), + [6636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [6638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), + [6640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), + [6642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), + [6644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), + [6646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), + [6648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), + [6650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), + [6652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), + [6654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), + [6656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), + [6658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), + [6660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), + [6662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [6664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), + [6666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [6668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), + [6670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [6672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), + [6674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), + [6676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [6678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), + [6680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [6682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), + [6684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), + [6686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [6690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), + [6692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), + [6694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), + [6696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), + [6698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), + [6700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [6702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), + [6704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), + [6706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), + [6708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), + [6710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), + [6712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [6714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), + [6716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [6718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [6720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), + [6722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [6724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [6726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [6728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), + [6730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [6732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [6734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), + [6736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [6738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [6740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), + [6742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [6744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), + [6746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), + [6748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), + [6750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), + [6752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [6754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), + [6756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [6758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [6760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), + [6762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [6764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), + [6766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [6768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [6770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), + [6772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [6774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), + [6776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [6778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), + [6780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [6782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), + [6784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [6786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [6788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [6790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), + [6792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [6794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), + [6796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [6798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), + [6800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [6802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), + [6804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [6806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), + [6808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), + [6810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [6812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [6814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), + [6816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [6818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), + [6820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [6822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [6824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), + [6826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [6828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), + [6830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), + [6834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [6836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [6838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), + [6840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [6842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), + [6844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [6846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), + [6848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [6850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [6852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [6854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), + [6856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [6858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [6860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [6862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), + [6864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [6866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [6868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), + [6870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [6872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), + [6874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [6876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [6878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [6880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), + [6882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [6884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [6886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), + [6888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [6890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), + [6892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [6894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [6896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [6898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [6900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [6902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), + [6904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [6906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [6908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [6910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [6912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), + [6914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [6916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [6918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [6920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), + [6922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), + [6924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [6926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), + [6928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), + [6930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), + [6932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), + [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), + [6936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), + [6938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), + [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), + [6942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), + [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), + [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), + [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), + [6950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), + [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), + [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), + [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), + [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), + [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), + [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), + [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), + [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), + [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), + [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), + [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), + [6980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), + [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), + [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), + [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), + [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), + [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), + [6996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), + [7000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), + [7002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), + [7004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), + [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), + [7008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [7010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), + [7012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), + [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), + [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), + [7018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), + [7020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [7022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), + [7024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), + [7026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), + [7028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), + [7030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), + [7032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), + [7034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), + [7036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), + [7038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), + [7040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), + [7044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), + [7046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), + [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), + [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), + [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), + [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), + [7056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), + [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), + [7060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), + [7062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), + [7064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), + [7066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), + [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), + [7070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), + [7072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [7074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), + [7076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), + [7078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), + [7080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), + [7082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), + [7084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [7086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), + [7088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [7090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), + [7092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [7094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), + [7096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [7098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), + [7100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [7102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), + [7104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), + [7106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [7108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [7110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), + [7112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [7114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), + [7116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [7118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [7120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), + [7122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [7124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), + [7126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [7128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), + [7130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [7132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [7134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), + [7136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [7138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), + [7140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [7142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), + [7144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [7146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [7148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [7150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), + [7152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [7154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [7156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [7158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), + [7160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [7162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [7164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), + [7166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [7168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), + [7170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [7172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [7174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [7176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), + [7178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [7180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [7182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), + [7184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [7186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), + [7188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [7190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [7192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [7194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [7196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [7198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), + [7200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [7202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [7204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [7206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), + [7210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [7212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [7216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), + [7218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), + [7220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), + [7222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), + [7224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), + [7226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), + [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), + [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), + [7232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), + [7234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), + [7236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), + [7238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), + [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), + [7242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [7244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), + [7246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [7248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [7250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), + [7252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [7254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), + [7256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), + [7258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [7260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), + [7262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), + [7264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [7266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), + [7268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [7270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [7274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [7276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), + [7278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [7280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), + [7282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1829), + [7284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), + [7286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [7288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [7290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [7292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), + [7294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [7296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [7298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), + [7300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [7302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), + [7304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [7306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [7308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), + [7310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [7312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), + [7314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [7316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [7318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), + [7320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), + [7322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [7324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), + [7326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [7328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [7330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [7332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), + [7334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [7336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), + [7338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [7340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [7342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), + [7344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [7346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [7348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), + [7350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [7352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), + [7354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [7356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [7358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [7360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), + [7362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [7364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), + [7366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [7368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [7370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), + [7372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), + [7374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [7376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), + [7378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [7380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), + [7382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [7384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [7386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [7388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [7390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [7392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), + [7394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [7396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [7398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [7400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), + [7402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), + [7404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [7406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [7408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), + [7410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), + [7412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), + [7414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), + [7416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [7418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), + [7420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [7422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [7424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [7426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), + [7428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [7430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), + [7432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), + [7434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), + [7436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), + [7438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [7440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [7442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), + [7444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [7446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), + [7448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [7450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [7452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [7454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), + [7456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [7458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [7460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), + [7462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), + [7464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [7466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), + [7468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [7470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [7472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [7474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), + [7476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [7478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [7480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), + [7482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), + [7484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [7486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [7488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), + [7490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), + [7492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [7494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), + [7496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [7498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [7500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [7502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), + [7504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), + [7506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [7508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [7510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), + [7512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), + [7514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), + [7516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), + [7518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), + [7520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), + [7522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [7524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), + [7526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), + [7528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [7530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), + [7532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [7534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), + [7536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [7538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), + [7540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [7542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [7544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), + [7546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [7548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), + [7550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), + [7552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), + [7554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), + [7556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [7558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), + [7560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [7562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), + [7564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [7566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), + [7568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [7570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), + [7572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), + [7574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [7576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [7578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), + [7580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [7582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [7584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), + [7586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [7588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), + [7590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [7592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), + [7594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [7596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), + [7598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [7600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), + [7602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [7604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), + [7606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), + [7608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [7610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [7612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [7614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [7616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), + [7618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [7620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), + [7622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [7624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [7626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), + [7628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), + [7630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [7632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), + [7634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [7636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), + [7638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), + [7640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [7642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), + [7644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), + [7646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), + [7648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [7650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), + [7652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [7654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [7656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [7658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), + [7660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [7662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), + [7664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [7666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [7668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [7670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [7672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), + [7674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), + [7676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), + [7678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), + [7680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [7682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [7684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), + [7686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [7688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), + [7690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [7692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), + [7694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), + [7696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [7698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), + [7700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), + [7702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), + [7704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [7706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [7708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [7710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [7712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [7714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [7716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), + [7718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [7720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [7722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [7724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [7726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), + [7728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [7730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [7732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [7734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [7736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [7738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), + [7740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [7742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), + [7744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), + [7746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [7748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), + [7750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), + [7752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), + [7754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [7756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), + [7758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [7760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), + [7762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), + [7764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), + [7766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [7768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [7770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), + [7772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), + [7774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), + [7776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), + [7778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3279), + [7780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [7782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), + [7784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [7786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), + [7788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), + [7790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [7792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), + [7794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), + [7796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), + [7798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [7800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), + [7802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [7804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [7806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), + [7808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), + [7810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [7812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), + [7814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), + [7816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), + [7818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), + [7820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [7822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), + [7824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), + [7826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [7828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), + [7830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), + [7832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), + [7834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), + [7836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [7838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), + [7840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), + [7842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [7844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [7846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), + [7848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [7850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), + [7852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [7854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), + [7856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), + [7858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), + [7860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), + [7862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), + [7864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), + [7866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [7868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [7870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [7872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), + [7874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [7876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), + [7878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), + [7880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [7882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), + [7884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [7886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), + [7888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), + [7890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), + [7892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), + [7894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), + [7896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), + [7898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), + [7900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [7902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), + [7904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [7906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), + [7908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3307), + [7910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), + [7912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), + [7914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), + [7916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), + [7918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_str_lit_repeat1, 2), + [7920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_str_lit_repeat1, 2), SHIFT_REPEAT(3323), + [7923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_str_lit_repeat1, 2), SHIFT_REPEAT(1440), + [7926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), + [7928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), + [7930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [7932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), + [7934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3345), + [7936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [7938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [7940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__sym_lit_without_slash, 1, .production_id = 36), + [7942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sym_lit_without_slash, 1, .production_id = 36), + [7944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), + [7946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [7948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [7950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__sym_lit_without_slash_repeat1, 2), + [7952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__sym_lit_without_slash_repeat1, 2), + [7954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sym_lit_without_slash_repeat1, 2), SHIFT_REPEAT(3345), + [7957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [7959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [7961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [7963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [7965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [7967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [7969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [7971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 4), + [7973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_directive_type, 2, .production_id = 37), + [7975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_directive_type, 3), + [7977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_directive_type, 3, .production_id = 49), + [7979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_directive_type, 2, .production_id = 38), + [7981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__sym_lit_without_slash_repeat1, 1), + [7983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__sym_lit_without_slash_repeat1, 1), + [7985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 3), + [7987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 2), + [7989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_directive_type, 2), + [7991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_directive_type, 1), + [7993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), + [7995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), + [7997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_read_cond_lit_repeat1, 2), SHIFT_REPEAT(3353), + [8000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_read_cond_lit_repeat1, 2), + [8002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), + [8004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), + [8006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), + [8008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), + [8010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), + [8012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3352), + [8014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), + [8016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), + [8018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), + [8020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3351), + [8022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), + [8024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3161), + [8026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), + [8028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [8030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), + [8032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [8034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [8036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [8038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [8040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3186), + [8042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [8044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [8046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [8048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [8050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3358), + [8052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), + [8054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [8056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [8058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3211), + [8060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3134), + [8062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [8064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [8066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [8068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3350), + [8070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3169), + [8072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3356), + [8074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3355), + [8076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), + [8078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3064), + [8080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [8082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), + [8084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2222), + [8086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [8088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3052), + [8090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3115), + [8092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3357), + [8094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3354), + [8096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [8098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), + [8100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [8102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [8104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), + [8106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3081), + [8108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3107), + [8110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3360), + [8112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [8114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [8116] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [8118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [8120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [8122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), + [8124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [8126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [8128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), + [8130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), + [8132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), + [8134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [8136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), + [8138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), + [8140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [8142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), + [8144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [8146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [8148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), + [8150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [8152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), + [8154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), + [8156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), + [8158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [8160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), + [8162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), + [8164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), + [8166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [8168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), + [8170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), + [8172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), + [8174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), + [8176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [8178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), + [8180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3330), + [8182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), + [8184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [8186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), + [8188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__package_lit_without_slash, 3, .production_id = 30), + [8190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [8192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), + [8194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [8196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), + [8198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [8200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [8202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), + [8204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), + [8206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [8208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), + [8210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), + [8212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [8214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [8216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3481), + [8218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), + [8220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [8222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), + [8224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), + [8226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), + [8228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [8230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [8232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [8234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [8236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), + [8238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [8240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [8242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2264), }; #ifdef __cplusplus diff --git a/test/corpus/basic.txt b/test/corpus/basic.txt index 736250195..1580e420f 100644 --- a/test/corpus/basic.txt +++ b/test/corpus/basic.txt @@ -811,7 +811,7 @@ Num Literals -------------------------------------------------------------------------------- (source - (num_lit) + (sym_lit) (list_lit (sym_lit) (sym_lit) @@ -994,4 +994,79 @@ Trailing sharps (sym_lit)) (list_lit (sym_lit) - (sym_lit))) + (self_referential_reader_macro))) + +================================================================================ +https://lisptips.com/post/44370032877/literal-syntax-for-integers +================================================================================ + +#2r11010101 ;Another way of writing 213 decimal +#b11010101 ;Ditto +#b+11010101 ;Ditto +#o325 ;Ditto, in octal radix +#xD5 ;Ditto, in hexadecimal radix +#16r+D5 ;Ditto +#o-300 ;Decimal -192, written in base 8 +#3r-21010 ;Same thing in base 3 +#25R-7H ;Same thing in base 25 +#xACCEDED ;181202413, in hexadecimal radix +-------------------------------------------------------------------------------- + +(source + (num_lit) + (comment) + (num_lit) + (comment) + (num_lit) + (comment) + (num_lit) + (comment) + (num_lit) + (comment) + (sym_lit) + (comment) + (num_lit) + (comment) + (sym_lit) + (comment) + (sym_lit) + (comment) + (num_lit) + (comment)) + +================================================================================ +Self-references +================================================================================ +(let ((position (mismatch #1="MemTotal:" line))) + (when (= position (length #1#)) + (return + (parse-size line :start position)))) +-------------------------------------------------------------------------------- + +(source + (list_lit + (sym_lit) + (list_lit + (list_lit + (sym_lit) + (list_lit + (sym_lit) + (self_referential_reader_macro) + (str_lit) + (sym_lit)))) + (list_lit + (sym_lit) + (list_lit + (sym_lit) + (sym_lit) + (list_lit + (sym_lit) + (self_referential_reader_macro))) + (list_lit + (sym_lit) + (list_lit + (sym_lit) + (sym_lit) + (kwd_lit + (kwd_symbol)) + (sym_lit))))))